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

POSTING_INTERFACE_CLEARING

Former Member
0 Likes
3,459

Hi all,

i use the FM POSTING_INTERFACE_CLEARING to clear open items, its works perfectly

if amounts are equals but i have a probleme whith clearing parially items : what parameters to use in this case ?

Any suggestions?

thinks

4 REPLIES 4
Read only

NoJo
Active Participant
0 Likes
1,974

same problem to me, just one item should be cleared, looking for parameters..

Read only

andrea_olivieri
Contributor
0 Likes
1,974

Hello,

Unfortunately I have encountered the same problem but the release was the Enterprise 4.7.

The function module POSTING_INTERFACE_CLEARING was not designed to clear partial amounts and, after losing a whole day, I opted for a new BDC custom program with CALL TRANSACTION technique on FB05.

I have not had a chance to test the behavior of the function module POSTING_INTERFACE_CLEARING in ECC, but in my opinion is identical.

Kind Regards.

Andrea

Read only

Former Member
0 Likes
1,974

Hi,

The POSTING_INTERFACE_CLEARING really does not process partial payments.

What I did is the following (to avoid a full BTC programming )

- call the function module with a dummy process code ('X' instead of 'B' or 'C')

- in a little enhancement, when the process code 'X' saved the FT table into memory

- in my Z program just extended the content of FT with handling the partial payment screen only

- and call FB05

this way the most of the work is done by the standard, you just handle 1 screen, which fortunately even has a positioning possibility.

Good luck

Read only

0 Likes
1,974

What do you mean u201Cin a little enhancementu201D? What enhancement are you using?