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

BAPI execution history log

kenzo
Participant
0 Likes
5,289

Hi experts,

I need to keep track of executions of BAPI functions in a client's system.

Does anyone know if any log is created by the system after a BAPI is executed with or without success?

Or would I have to do it manually using SLG0/SLG1 and the BAL_* functions in similar way as link below?

Link: https://wiki.scn.sap.com/wiki/display/ABAP/Application+Log+Methodology+in+SAP?original_fqdn=wiki.sdn...

1 ACCEPTED SOLUTION
Read only

pokrakam
Active Contributor
2,983

There is no such feature built in, at it's most basic level a BAPI is just a function module that confirms to a few rules and conventions. Your best bet is probably an implicit enhancement to each BAPI you want to track.

2 REPLIES 2
Read only

pokrakam
Active Contributor
2,984

There is no such feature built in, at it's most basic level a BAPI is just a function module that confirms to a few rules and conventions. Your best bet is probably an implicit enhancement to each BAPI you want to track.

Read only

0 Likes
2,983

Thanks for your prompt answer Mike! I'll keep that in mind!

As you confirmed this feature doesn't exist, I'll stick to the implementing of logs on SLG1, so the user can view history of BAPI from there.