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

Table name from structure name

Former Member
0 Likes
1,266

Hi experts

can anyone tell me how to find the table name if structure name is known.

when i press F1 in table field ,it give me struct name and field name.

how can i find table name from this struct.

Thanks in advance

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
951

Hi,

You can check the where-used list (Ctrl + Shift + F3)

5 REPLIES 5
Read only

Former Member
0 Likes
952

Hi,

You can check the where-used list (Ctrl + Shift + F3)

Read only

Former Member
0 Likes
951

Hi ,

You can Check the where used list from your structure,

or

From SE84 transaction in abap dictionary ,give your

structure name and execute it will show where it has

been used.

Hope it helps

Regards

Mansi

Read only

ThomasZloch
Active Contributor
0 Likes
951

Often there is no direct link between structures used to display data in screens and tables that actually hold the data, the connection is somewhere in the application logic.

One (rather fuzzy) way is to check where-used list as described, another is to run a quick SQL trace (ST05) and study the tables that get hit.

Thomas

Read only

Former Member
0 Likes
951

Hi Maverick

Generally SAP uses fieldnames of structures for the screen fields.

You can get the field name along with the structure, most of the times the field names of the structure and field names of the table will be same. So using where used list of the field u can get the table name .(but this will not work for all the cases)

Regards

Prabumanoharan

Read only

Former Member
0 Likes
951

resloved. i need to check se11 for this