Application Development and Automation 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: 
Read only

How to find the table of a structure?

3,755

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
Read only

Neeraj_Jain1
Active Contributor
0 Likes
3,510

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
Read only

Harish_Vatsa
SAP Champion
SAP Champion
3,510

goto se84

abap dictionary

fields

structure fields

give structure name

u get list of tables...

select required one...

Read only

Sandra_Rossi
Active Contributor
3,510

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.