Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

ISU Create Installment Plan

Former Member
0 Likes
2,351

Hi all,

I have a requirement where i get contract account, payment_date1 , payment_amount1, payment_date2 , payment_amount2 as an input and i have to creat an intsallment plan using this data.

I have a BAPI 'BAPI_INSTMNTPLN_CREATEFROMDATA'

i want to know what all parameters i have to pass, and which tables i have to fill in order to create an installment plan.

Thanks in Advance.

Divakar.

Good day Dilip,

thanks & much appreciated.

However the items on table IT_FKKOPKEY, I cannot item amount i.e. if doc. no.: 10, amount : 20, if the same document I want to create instalment on lesser amount : 15. there is no option on the BAPI table to change amount.

Regards,

Tumelo Modise

4 REPLIES 4
Read only

Former Member
0 Likes
1,699

Solved on my own

Read only

0 Likes
1,699

Good day Diwakar,

I know this is old. Is it possible you explain to us how you solved this issue?

My requirements is to create an instalment on partial amount  of the open items.

Regards,

Tumelo Modise

Read only

0 Likes
1,699

Hi Tumelo,

Use below FM to create installment plan:

CALL FUNCTION 'FKK_S_INSTPLAN_CREATEFROMDATA'

       EXPORTING

         I_WAERS             = xxx

         I_BLDAT             = 'xxx

         I_BUDAT             = 'xxx'

         I_GPART             = xxx

         I_VKONT             = xxx

         I_BLART             = ''

         I_STTDT             = xxx

         I_RBETR             = '0.00'

         I_ANZRT             = '006'

         I_ABSRT             = '02'

         I_KENNZ             = '3'

         I_DIVAM             = '1.00'

         I_RPTYP             = ''

         I_GEBUEHR           = '0.00'

         I_REMAINAMNT        = xxx

         I_GBBLART           = ''

         I_FIKEY             = ''

         I_STTIN             = '00000000'

         I_INKEY             = ''

         I_IBLAR             = ''

         I_FAEIN             = ''

         I_GZVER             = ''

         I_UPDATE_TASK       = 'X'

         I_SIMUL             = ''

         I_RPCAT             = 'Z3'

       IMPORTING

         E_OPBEL             = DOC_NO

       TABLES

         T_FKKOPKEY          = IT_FKKOPKEY

         T_INSTPLAN_FKKOP    = IT_INSTPLAN_FKKOP

       EXCEPTIONS

         NOT_CREATED         = 1

         CONCURRENT_CLEARING = 2

         WRONG_SELECTION     = 3

         ERROR_MESSAGE       = 4

         OTHERS              = 5.



Regards,

Dilip

Read only

0 Likes
1,699

Good day Dilip,

thanks & much appreciated.

However the items on table IT_FKKOPKEY, I cannot item amount i.e. if doc. no.: 10, amount : 20, if the same document I want to create instalment on lesser amount : 15. there is no option on the BAPI table to change amount.

Regards,

Tumelo Modise