Dear All,
in the update rule, we wrote a simple routine to fill a key figure at the InfoCube level.
We need to be able to debug it in order to view the values that are going to be inserted step by step.
We tried to insert the BREAK statement in the routine but when in the ODS we select "Update ODS Data in Data Target" nothing breaks.
Is there any easier way?
Thanks a lot.
Regards,
R.C.
Message was edited by: Roberto Colombari
Hi Roberto,
By inserting a BREAK statement in the routine you won't be able to debugg as the upload process is done in background.
Instead you should insert a code like this:
data flag.
while flag ne 'X'. endwhile.
Then launch the process and go to transaction SM50 select the process and execute Program/Mode -> Program -> Debugging
Hope it helps,
Andreu
Add a comment