Application Development 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: 

BAdI ME_PROCESS_REQ_CUST : How to launch a custom process AFTER the LAST COMMIT

Former Member
0 Kudos

Hi experts,

I'm currently trying to figure how to launch a custom method after the LAST COMMIT, when the Purchase requisition is saved (ME52N).

In the POST method, I call a function that calls a method using a PERFORM ON COMMIT LEVEL 99.

It's too SOON, because in this method I do a SELECT on the STXH table (to get the timestamp of long texts), and I don't get the last changes I just made in the screen.

It's too SOON too if I call my method in the CLOSE method.

Any idea to resolve this the cleaniest way?

Thanks!

1 REPLY 1

raymond_giuseppi
Active Contributor

Try to wrap your code in a RFC enabled FM and CALL the FM IN BACKGROUND TASK so it will be executer after the update tasks.