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

Working in Debugger

Former Member
0 Likes
529

I am trying to insert values into a table.So i am trying to insert values in a particular method. Hence, when i reach the specific point of the transaction, i start the debugger by choosing the menu, system --> Utilities --> Debug ABAP. How do i view the values.

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
484

Before the insert statement ,keep a break point through the program.The program will stop there.then you can check the values in the table by clicking the tables tab & writing the table name.You will get all the fields with the values before inserting them into the table. By the way are you inserting the values through your written abap code or SAP standard one??

3 REPLIES 3
Read only

Former Member
0 Likes
485

Before the insert statement ,keep a break point through the program.The program will stop there.then you can check the values in the table by clicking the tables tab & writing the table name.You will get all the fields with the values before inserting them into the table. By the way are you inserting the values through your written abap code or SAP standard one??

Read only

Former Member
0 Likes
484

Once you switch your debugger on, you can find your code in a window. when you double click on any field, then the value for that field will appear in the area below the code.

If you want ot see the data in an Internal table, then, place the cursor on the internal table and press the Table button on the application tool bar.

Read only

Former Member
0 Likes
484

hi,

u run ur program in debugging mode by '/h' in TCODE then debugging will be on. Then execute it u will give the window which debugs the program from first. select the table and click TABLE button on the top and by using F5 u can check it line by line the values that r getting into the table...For particular fields in table....Double click on the particular field to view its values. U can u use Breakpoint to see execution of code from a particular area in the code.

Regards,

Priyanka