‎2008 Mar 17 2:11 AM
How can i debug specail function for VA01,For example, I establish one and export type ZA01, the procedure code is ZRVADOR01, how do I debug this procedure?
thank you!
‎2008 Mar 17 5:16 AM
First you keep a break point in the program
Step#1.
RSNAST00 (on the below mentioned code).
PERFORM (TNAPR-RONAM) IN PROGRAM (TNAPR-PGNAM) USING RETURNCODE
US_SCREEN
IF FOUND.and now in VA01 , just start Debugging after you choose the Output type using /H at the command.
now you will see the Debugging , now choose the menu Settings->Update Debugging
this will activate the Update Debugging.
Now Press F8. now another window will open , in that you it will stop near the break point in the step 1 .
It will take you to the corresponding program/
Now you Debug and check what ever you want
‎2008 Mar 17 3:51 AM
Hi,
Just Set a Break Point in that program.
Goto > se38 >Give Program name>Display>put a cursor on code> click on Break Point button located on the application key toolbar. Then execute VA01. Debugger will start.
REWARD POINTS IF USEFUL
‎2008 Mar 17 4:13 AM
‎2008 Mar 17 4:18 AM
Hi,
Once you open the procedure, type /H in the command field (The field where you type in t-codes like VA01, VF01, etc,.) and press enter and then start executing. This will open up the debugger from the procedure.
‎2008 Mar 17 5:03 AM
‎2008 Mar 17 5:16 AM
First you keep a break point in the program
Step#1.
RSNAST00 (on the below mentioned code).
PERFORM (TNAPR-RONAM) IN PROGRAM (TNAPR-PGNAM) USING RETURNCODE
US_SCREEN
IF FOUND.and now in VA01 , just start Debugging after you choose the Output type using /H at the command.
now you will see the Debugging , now choose the menu Settings->Update Debugging
this will activate the Update Debugging.
Now Press F8. now another window will open , in that you it will stop near the break point in the step 1 .
It will take you to the corresponding program/
Now you Debug and check what ever you want
‎2008 Mar 17 5:31 AM