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: 

Locking and Where used list for custom tables

Former Member
0 Kudos

Hi ,

We have a requirement where we need to check for locks and where used list for all the custom tables.

As we have huge data, doing u201Cwhere used listu201D individually for each table to find the associated program and checking for the table locks is not possible. Hence looking for an alternate solution.

Any inputs on this would be very helpful.

Thanks in Advance

Prathima

4 REPLIES 4

Former Member
0 Kudos

Hi,

Write a program for the same

Rhea.

raviahuja
Contributor
0 Kudos

Hi,

Use ABAP Standard report 'RS_ABAP_SOURCE_SCAN', to scan for list of all your custom tables. This will give you where list of tables used in programs. Then you can expand and look for table locks.

Thanks.

Ravi

Former Member
0 Kudos

Prathima,

Check out for any standard program or a table for the same, else you have to write a program for the same.

Also try to use the program which Ravi has suggested. We had tried using the similar one in one of our requirement and achieved result.

regards,

M M Jaffer.

Former Member
0 Kudos

Hi ,

'RS_ABAP_SOURCE_SCAN' SAP provided a standard program to scan a particular word in a program/package , You can use this program to get the list or the customzied tables , Type your table name or a string which do you want scan it against " String searched for : " .....