cancel
Showing results for 
Search instead for 
Did you mean: 

How to Read Table/Fields & Debug????

Former Member
0 Kudos

Hi,

Could you plz explain how to read table/fields and debug in SAP SD,I am new to SAP SD and don't have clear idea about this,appreciate your reply,

Regards,

Mohammed.

Accepted Solutions (0)

Answers (5)

Answers (5)

Former Member
0 Kudos

Hi Mohammed,

Debugging ABAP programs,

<a href="http://www.saplinks.net/index.php?option=com_content&task=view&id=24&Itemid=34">Debug 1</a>

<a href="http://www.sap-img.com/abap/testing-and-debugging-abap-codes-functions.htm">Debug 2</a>

<a href="http://www.sappro.com/downloads/Settings&SystemAreas.pdf">Debug 3</a><a href="http://www.sapdevelopment.co.uk/tips/debug/debug_backjob.htm">Debug 4</a>

<a href="http://help.sap.com/saphelp_nw2004s/helpdata/en/c6/617ca9e68c11d2b2ab080009b43351/content.htm">Debug 5</a>

<a href="http://help.sap.com/saphelp_nw2004s/helpdata/en/fc/eb35f8358411d1829f0000e829fbfe/content.htm">Reading tables</a>

Hope it helps. Pl reward if useful.

Thanks & Regards

Sadhu Kishore

Former Member
0 Kudos

To read table name & Field;

on the field click on F1 & select tecnical help or F9. you will get the table / structure name & field name.

Regards,

Rajesh Banka

Former Member
0 Kudos

- if you enter /h in command field on the top of your screen while you are in teh transaction -> you'll switch into debug mode right after you press anything in the transaction.

- if you need to debug some program which works in update task (like output processing in SD) - you can set breakpoint in this program, then in SD transaction before pressing SAVE switch into debug mode (/h) and enable update debugging ("settings" tab in debug), after that you can click continue in debug and it will stop i update task first, then it will stop at your breakpoint.

search SDN on "debugging popup" and you'll find a trick on how to switch into debug when popup is displayed on the screen.

Former Member
0 Kudos

Hi Mohammed,

You will generally put break points in your report/module pool program by click on Stop button.

When ever you run the report/ mdoule pool program, it will stop at the point.

<b>Navigating through the breakpoint</b>

Following buttons are used to navigate through the program and debugger.

1) Single step(F5): Executes a single program command.

2) Execute(F6): Similar to the single step, but when a program calls a subroutine, it executes the whole subroutine unlike single step.

3) Continue(F8): Executes the program until it is finished or until it finds next breakpoint.

4) Return(F7): Allows for executing the program instruction up to the end of a routine and stops in the line of code where the subroutine gives back control to the main program.

By double clickin on the variable/ on the table name, it will display you the contents.

Generally, You can view the fileds of tables using transaction code SE11. In this give your table name against Database table value and Click on Display button.

To view the content of a table, Goto transaction code SE16 and give your table name and press enter, and then click on Time icon or F8 key, then it will display the contet of the table.

Thanks,

Vinay

Message was edited by:

Vinaykumar G

Former Member
0 Kudos

Hi ,

Go to SE12 or SE16.......Specify the table name---press enter......u can see the fields contained in that table.

Hope it helps.

Raj