2017 Jun 16 1:48 PM
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?
2017 Jun 16 1:52 PM
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.
2017 Jun 16 1:52 PM
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.
2017 Jun 16 2:03 PM
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.