Link to home
Start Free TrialLog in
Avatar of ewang1205
ewang1205

asked on

debug SAP form to find table and field name

I try to find the table and field name for a screen field.  So, in SAP screen, I go to system/utilities/Debug Screen to turn the debug on.  Then I right click help on the screen field and it brings up ASAP Debugger window and the ASAP following statement being executed is pointed.  But, I don't see table name or field name at the bottom of the bugger screen.  How to see table name or field name for that screen field?  Maybe my userid is now powerful enough.  Thanks.

module %_CTL_INIT output.
perform %_CTL_INIT in program SAPMSSYD using SY-REPID if found.
endmodule.
Avatar of jonvaughan
jonvaughan

If you want to see the details for a SAP screen you just need to put the cursor on the field and press F1 then F9 ( or click the tools icon )

That will give you the field name - underlying Data element and so on ...

Or you can use SE80 to view all the objects in the program and see the fields there.
Avatar of ewang1205

ASKER

F1 then F9 gives the user help document.  I try to find the table and field name for a screen field.
ASKER CERTIFIED SOLUTION
Avatar of jonvaughan
jonvaughan

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
F1 then click Technical Information icon.  Thanks.