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: 

Trigger Custom Program from CC11 on saving.

Former Member
0 Kudos

Hello Experts,

I have a requirement where a custom program needs to be called once I click on save button in CC11 Transaction.
Could anyone suggest an Exit so that i could use submit to call the program.

Thanks in Advance.

3 REPLIES 3

raymond_giuseppi
Active Contributor
0 Kudos

Could you check if ECM_UPDATE BAdI methods are triggered in CC11.

But don't use a SUBMIT in those AT SAVE BAdI, to prevent problems, better wrap its call in a RFC method and call it in background task/unit.

0 Kudos

Hi Raymond,

Thanks a lot for the quick reply. I could find the ECM_UPDATE but not sure on the RFC method part. It would be a great deal of help if you could elaborate a little more on this.

Regards,

Ravi.

0 Kudos

Just suggesting to create a RFC enabled FM (checkbox in FM attributes + parameters by value) to wrap the submit, call it in bacckground task/unit so it would execute in another LUW (after transaction updates) and wont disturb execution of the standard transaction. Look in online documentation for COMMIT WORK statement, RFC FM and in forum for error SYSTEM_ON_COMMIT_INTERRUPTED.