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 & when to debug a system ?

Former Member
0 Likes
808

Dear All ,

I need to know that as when i got an Abap run time error then how can i know that s debug is required at this time or not , OR the Abap run time error should be of some different type so in particular error only debug is possible , Pl guide when it is neededto debug the system .

Thanx in adv

sap2008

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
786

You can debug any kind of error unless you are experienced enough to sense the problem by just going through the error log.

Dump analysis provides enough information with which you can understand the problem.

If you dont find it useful then debugging is definitely helpful.

5 REPLIES 5
Read only

Former Member
0 Likes
786

Whenever you have an any issue or find out particular field/table information you can do the debugging.

Even runtime error also you can do the debugging and you could know that at which line the program goes to dump

Regards

Sasi

Read only

Former Member
0 Likes
787

You can debug any kind of error unless you are experienced enough to sense the problem by just going through the error log.

Dump analysis provides enough information with which you can understand the problem.

If you dont find it useful then debugging is definitely helpful.

Read only

0 Likes
786

Debug the program whenever you find that the fields have some issue.

you get a line number marked with ">>>>>>>"

whenever you get the runtime error .

please put a breakpoint before this statement in your main program and start your debugging using /h

Good Luck!!!

Read only

0 Likes
786

Hi,

When you get the Runtime error, the log shows you the Source code extract where the error occurred. There you can put the breakpoint and then test it again. The log is stored in the Transaction ST22.

Regards,

Shailaja

Read only

Former Member
0 Likes
786

thanx to all of ABAPER'S.

Rgds ,

SAP2008