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

Find table for a structure field

Former Member
0 Likes
1,707

Hi,

I need to find table for field Q0743-OFFR1. I tried using tcode SE15, but was not able to find any table where the field is used.

Is there any other method of finding a table for a structure field.

Any pointers in this regard would be helpful.

Thanks,

Saher

Hi,

I need to find table for field Q0743-OFFR1. I tried using tcode SE15, but was not able to find any table where the field is used.

Is there any other method of finding a table for a structure field.

Any pointers in this regard would be helpful.

Thanks,

Saher

6 REPLIES 6
Read only

kesavadas_thekkillath
Active Contributor
0 Likes
1,381

Try the where used list using the data element of that field.

Read only

Former Member
0 Likes
1,381

Hi Saher,

You're talking about a screen field you found on a specific screen and want to find the corresponding field in a transparent table. You need to put the debug in the program / function group where screen belongs to and see what field from what structure from what particular structure assign to that screen field. Or you can open that screen, check the code and follow the logic.

Good luck!

Duy

Read only

Former Member
0 Likes
1,381

Hi,

when u open the structure , u will find the tab " Component " in that you

will find "Data Element" column which hold the data element of the structure

component , now double click on the respective "Data Element " and that will

open up the Data Element Page in which u will find a "Where Used List" icon

, click on that, this will now display you the list, select the TABLE LIST

Check box and execute, which will subsequently display you all the the table

names which has "specified" data element's component as field

Hope this will Help you.

Regards,

Kiran

Read only

Former Member
0 Likes
1,381

Press F1 on selection screen field, go to technical documentation, double click on field name, it will go to some structure. Now double click DATA ELEMENT of your field. Finally use WHERE USED LIST option. It will give list of TABLES using that particular field, can choose the one suiting your requirements.

Read only

former_member193284
Active Participant
0 Likes
1,381

Hi Saher,

you can also try and activiate ST05 and analyze the trace. Probably you can find the table where this field is stored.

Thanks

Read only

Former Member
0 Likes
1,381

Hi,

It is a determined field based on calculation inside the program.

Sujay