cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

Adhoc report and BADI debug

Former Member
0 Likes
244

Hi All,

I am new to BPC and I am mainly working for ABAP BADI in BPC. I recently created new adhoc report in EPM Excel which has some data for accounts,  utilization and all.

It is input form and if I change the value for utilization field it does show the affect and give the result but it is not triggering breakpoint in BADI. This calculation is happening through BADI only. we have used write back badi and in that we have written for custom logic badi so can it be the reason that in adhoc report there is no 'save' button on the sheet so it is not going to debug. I may be wrong but can anyone please suggest me ?

Also How to know from the EPM excel that which script is called?

Thanks,

Niki

Accepted Solutions (0)

Answers (2)

Answers (2)

Former Member
0 Likes

Hi Niki,

You need to understand the different BADIs, each method get called differently.

write back - while saving data, try an infinity loop to debug

custom logic - on demand calculation, set break point then use UJKT to debug (used packages and script logic to call)

routine - used in transformation file, try infinity look to debug

Andy

former_member186338
Active Contributor
0 Likes

Hi Niki,

If you are not saving data - write back badi will not trigger!

If you are not launching DM package with script containing the call of custom logic badi - custom logic badi will not trigger.

Vadim