Page 1 of 1

Errors in Program

PostPosted: Tue Aug 09, 2005 5:03 am
by Alva1590
Hi
How to approach if there is any error in program.Please reply me.

Thx,
Srdevi.B

PostPosted: Tue Aug 09, 2005 8:33 am
by Alva1590
Mhhhh... search the error -> remove the error?

Maybe you should tell us more about the error so we can help you fix it.

PostPosted: Tue Aug 09, 2005 9:51 am
by Alva1590
Hi,

depends, what error you are talking about: Is it a syntax error, then it should be not a problem at all, to fix the error, as you basically get an error description from the ABAP workbench (either syntax check, during compile time or if you use alternatively the code inspector or extended syntax check). All this tools should support you very well in order to find and fix syntax error.

If it is an logical error, then you need to analyze your coding in depth. That means first step would be to think about the program flow in order to narrow down the possible bug and then set some breakpoints in the located codes snippets.
When the debugger stops at the breakpoints, you could then easily check values of variables, structrues, etc. which enables you to find and fix the bug.

Rgds,
Sunith

PostPosted: Tue Aug 09, 2005 6:45 pm
by Tuana4498
Thanks sunith.