Saturday, December 15, 2007

I'm using the wrong APO

First this post opened my eyes. Maybe I was using the wrong APO. Then Google sent me the answer on an adsense link (I'm both amazed and scared on how Google makes these guesses). I should be using APO reef!

Labels:

Friday, December 07, 2007

On Debugging Planning Macros

Lately I have been dealing with some planning macros. I am a newbie with these macros but I have a lot of experience with ABAP debugging. That's why I was quite happy with the following trick that allows ABAP debugging of planning macros.

In the macro builder, for a given macro just put the command ADVA in the command window.



It will jump to the ABAP source generated for the macro.



It is a big source file so it may be hard to find the right section to place the breakpoint. I found it helpful to set a stop point in the macro in the step I want to debug.



Then I search the code for PERFORM RESULTS_SHOW.



That's it.

Labels: , ,