Application Development 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: 

How to find the table of a structure?

1,122

hi community,

Please suggest me the tables to find the Total Cost in SALES ORDER COSTING.

the field name is GK, Data element is CK_FK_S1 ,structure is CKCOSTLINE.

Thanks very much.

please see below

3 REPLIES 3

Neeraj_Jain
Active Contributor
0 Kudos
877

Hello ryanz3653,

Please refer below SAP Blog. Hope it's clarifies your query.

https://blogs.sap.com/2014/01/13/how-to-find-table-name-for-a-field-which-is-shown-structure-name-on...

Regards,

Neeraj Jain

Best Regards,
Neeraj Jain

Harish_Vatsa
Active Contributor
877

goto se84

abap dictionary

fields

structure fields

give structure name

u get list of tables...

select required one...

Sandra_Rossi
Active Contributor
877

Steps:

  1. Run the SQL trace to know all the tables accessed by the program (ST05 and so on)
  2. Use SE11 > data element > display where-used list to know which tables refer to it
  3. From the 2 results above, do the intersection of tables indicated in both results, and make sure which one is the right one

Often, it won't be sufficient so you must use ABAP debugger and find by yourself.