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 to debug standard report

Former Member
0 Likes
2,211

plz tell wt are the different way to debug standard report

plz tell wt are the different way to debug standard report

6 REPLIES 6
Read only

Former Member
0 Likes
1,403

Hi,

use /h in the t-code window , and it will start the debugging immediately after execution of the t-code.

regards,

Santosh Thorat

Read only

Former Member
0 Likes
1,403

Hi Sandeep,

You can debug report in various way.

1. As mentioned, Go to se38, display report, put /h in command field and execute.

2. Go to se38, enter program name. Follow menu path Program --> Execute --> Debugging.

3. You can follow above step even when program is displayed.

Regards,

Mohaiyuddin

Read only

Former Member
0 Likes
1,403

Hi,

One more method is create a break-point inside the standard code and execute the code

Read only

Former Member
0 Likes
1,403

Best way to debug is :

Take the message number and message id .

now goto Program ( When you go transaction -> system->status -> here you get program name).

click on find -> enter message number ( Select main program ) -> here you get message number ,now keep the break point ).

some times they call messages as like dynamically.

goto transaction -> enter all the data -> /h in command bar -> now create watch point -> use varaible as message id and value as message number ) ,operator is =

now it stops exact area

Rewards if useful.

Read only

RoySayak
Active Participant
0 Likes
1,403

Hi Sandeep,

Debugging of Standard Report:

1. You can put a hadr coded BREAK POINT.

2. You can also set the breakpoint from the EDITOR application toolbar. There is a break point icon.

3. You can use the '/H' to switch on the debugger.

4. You can set begugger from Program>Test>Debugging.

***************************************************************************reward if it is useful**********

THANKS,

Sayak....

Read only

Former Member
0 Likes
1,403

Thankx for helping me