cancel
Showing results for 
Search instead for 
Did you mean: 

How to change Due date in Cash flow (yet to post) lines in a contract.

Former Member
0 Kudos

Hello All,

I have a requirement where i want to change the due date of cash flow line items of a contract. I am able to do that in RECN transaction, by clicking on the date field and change the date. Here i am looking for a BAPI or function module using which i can update the date of cash flow items. Can anybody help me in doing this.

Thanks,

Bala.

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Hi Bala,

we had a similar requirement during the initial implementation project.

We have used BADI_RECD_CASHFLOW for this purpose. We have used both Methods - CHANGE_CASHFLOW_OBJ and CHANGE_CASHFLOW_PAY in such a way (for the last one):

LOOP AT ct_pay ASSIGNING <ls_cashflow_pa>

WHERE ( cfstatus = 'P' ) AND

( origflowtype IS NOT INITIAL ) .

IF <<condition>>.

<ls_cashflow_pa>-dfaell = ....

ENDIF.

ENDLOOP.

HTH,

Siarhei

Former Member
0 Kudos

Hi Siarhei,

Thanks a lot. You have given us the exact coding piece we are looking for.

Answers (0)