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

How to Debug Start Routine and End Routine in BPC Transformation files?

Former Member
0 Likes
2,519

Hi Experts,

Could you please provide some step by step guidance on how debug Start Routine and End Routine used in Transformation file for master data loading from BW InfoObject to BPC dimension?

Thanks and Regards,

Swakshar

Accepted Solutions (1)

Accepted Solutions (1)

former_member186338
Active Contributor
0 Likes

Easy:

1. Put endless loop in the beginning of the badi code

2. Launch DM package with transformation file using badi

3. Run SM50 - select the endless loop and debug it!

Former Member
0 Likes

Thank you!

Answers (1)

Answers (1)

anukul_giradkar3
Explorer
0 Likes

Hi Vadim,

I am sorry and need your comments as I am very beginner in debugging of DMP 🙂

How to "Put endless loop in the beginning of the badi code". May I ask you to elaborate it please?

--

Anukul

former_member186338
Active Contributor
0 Likes

In order to debug in ABAP you need to know ABAP 🙂

Endless loop:

DATA i_d TYPE C.
CLEAR i_d.
WHILE i_d IS INITIAL.
ENDWHILE.