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: 

Finding all the programs which use a particular field

Former Member
0 Kudos
1,696

I have this requirement to identify all the custom programs/function modules/user exits which use action code (MASSN) and reason codes (MASSG).

I am not very sure on what is the best way of doing it. I was thinking about doing a where used on these fields, but have a feeling that this would be a very raw way of doing it and was not sure if this would take care of all the programs.

I did a where used on PA0000-MASSN, P0000-MASSN, T529A-MASSN, but my concern here is, there could be programs referring to MASSN in other tables/structures too (not just PA000,P0000 or T529A). How would I capture such programs. Is there a better/recommended way of doing this.

Any suggestions would be helpful.

Thanks

1 ACCEPTED SOLUTION

Former Member
0 Kudos
1,044

Hi,

You can use program 'RS_ABAP_SOURCE_SCAN' to know where the field is used.

Enter the string you want to search in 'String searched for' and in 'Program Name' ,

give the programs or simply enter Z*.

Regards,

Srini.

2 REPLIES 2

Former Member
0 Kudos
1,045

Hi,

You can use program 'RS_ABAP_SOURCE_SCAN' to know where the field is used.

Enter the string you want to search in 'String searched for' and in 'Program Name' ,

give the programs or simply enter Z*.

Regards,

Srini.

0 Kudos
1,044

Thanks Srini. This helps.