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

Where used for table fields

former_member194669
Active Contributor
0 Likes
975

I have list of 3600 fields , I need to get info related to these fields are used in which screens. Any easy way ?

PS : Please donot suggest to use se11--> and make whereused list for field

a®s

Edited by: a®s on Jul 31, 2009 12:34 PM

1 ACCEPTED SOLUTION
Read only

Sandra_Rossi
Active Contributor
0 Likes
944

You had great answers, good luck 😄

I have list of 3600 fields , I need to get info related to these fields are used in which screens. Any easy way ?

PS : Please donot suggest to use se11--> and make whereused list for field

a®s

Edited by: a®s on Jul 31, 2009 12:34 PM

8 REPLIES 8
Read only

FabioPagoti
Active Contributor
0 Likes
944

it's a very good question

well.. i guess it is not so easy, but maybe it's possible to create a program to use the where used for you automatically.

Use tcode SHDB to record actions.

but there should be a easier way...

Read only

Former Member
0 Likes
944

Try some code using the table TCVIEW, with the field TCFIELDNAM.

Read only

Former Member
0 Likes
944

Hello,

1. Get the table name in which all the data elements are stored.

2. Write select for that table to find all the table names using required data elements for table field.

Check if this helps,

Thanks,

Augustin.

Read only

GauthamV
Active Contributor
0 Likes
944

Try to make use of this program.

RPR_ABAP_SOURCE_SCAN

Read only

Sandra_Rossi
Active Contributor
0 Likes
945

You had great answers, good luck 😄

Read only

0 Likes
944

No . answers solved my issue. none came near to solution.

Any other suggestions ?

Read only

0 Likes
944

Hello

Look at table D021T. It contains all fields for all screens/programms.

You may to place all your fileds into internal table and in loop/endloop make select form this table by mask '*-fieldname'.

Read only

0 Likes
944

Dzed,

Thanks for table you mentioned, and you are right. It contains the screen fields

Thanks