Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

How can i debug specail function for VA01

Former Member
0 Likes
1,486

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!

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
1,334

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

6 REPLIES 6
Read only

Former Member
0 Likes
1,334

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

Read only

0 Likes
1,334

i do it,but i cant debug.

Read only

Former Member
0 Likes
1,334

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.

Read only

0 Likes
1,334

The work load is very large if debugged like this!

Read only

Former Member
0 Likes
1,335

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

Read only

0 Likes
1,334

it OK,thank you very much.