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

REGUV - Payment Proposal.

Former Member
0 Likes
1,982

Hello,

I need a BAPI or BADI to mark a payment proposal as concluded.

I now that these data is saved in REGUV Table. Also, payment information is saved in REGUP and REGUH tables.

Thanks and sorry for my english !!!!.

Hello,

I need a BAPI or BADI to mark a payment proposal as concluded.

I now that these data is saved in REGUV Table. Also, payment information is saved in REGUP and REGUH tables.

Thanks and sorry for my english !!!!.

5 REPLIES 5
Read only

Former Member
0 Likes
1,287

Hi Fernando,

see if you can use the fm: FM_PAYMENT_PROPOSAL_CHANGE

Regards,

Ravi

Read only

Former Member
0 Likes
1,287

Hi

try to use some BTE (like 2110, 1640). Trx FIBF

Max

Read only

Former Member
0 Likes
1,287

Hi,

Did you try this func.module:

CALL FUNCTION 'SCHEDULE_PAYMENT_PROPOSAL'

  • EXPORTING

  • i_laufd = p_run

  • i_laufi = p_runid

  • I_STRDT = sy-datum

    • I_STRZT =

  • I_XSTRF = 'X'

    • I_BHOST =

    • I_INKEY =

    • I_PTYPE = 1

    • I_CALLREP =

    • I_CALLVAR =

  • EXCEPTIONS

  • STARTDATE_WRONG = 1

  • PARAMETERS_MISSED = 2

  • LOCK_FAILED = 3

  • JOB_OPEN_FAILED = 4

  • JOB_CLOSE_FAILED = 5

  • OTHERS = 6 .

This will help you.

Regards

Subramanian

*

Read only

Former Member
0 Likes
1,287

How can I get data from payment proposal?

FM_PAYMENT_PROPOSAL_CHECK

FM_PAYMENT_PROPOSAL_CHANGE

SCHEDULE_PAYMENT_PROPOSAL

They all seem need to input detail for check or change.

What I need is get the detail of the payment proposal.

Anyone can help? Thanks.

Read only

Former Member
0 Likes
1,287

OK Thanks !!