‎2006 Aug 15 5:53 AM
‎2006 Aug 15 5:56 AM
Hi,
Best is to check SAP help.
http://help.sap.com/saphelp_nw2004s/helpdata/en/c6/617cbee68c11d2b2ab080009b43351/frameset.htm
http://www.sap-basis-abap.com/sapab002.htm
Cheers
VJ
Message was edited by: Vijayendra Rao
‎2006 Aug 15 5:58 AM
Hi
you can type /h in the command field or set a static break point in the program using BREAK-POINT.You could also use watch points..
Have a look at the corresponding document under
Cheers,
Abdul hakim
‎2006 Aug 15 6:22 AM
Hi,
As others have said, do check SAP documentation. Here are quick tips:
You place break points in the part of your code where you want it to stop to check for variable values,etc. Also, debugging is a good way to get a feel of the program since you can know its flow. You can also create watchpoints so that you can verify when a certain event happened(variable x had a value of 1 in this loop, etc.)
Hope this helps...
P.S. Please award points for useful answers.