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: 

custom table usage.

deepu_p2
Active Participant
0 Kudos

I have few custom tables in my SAP system. I want to know which all programs are using it. so when I change the table structure I want to know which all programs are impacted.

3 REPLIES 3

Former Member
0 Kudos

Did you search the forum? Have you considered using the SAP-standard WHERE USED function in SE11?

JerryWang
Advisor
Advisor
0 Kudos

Hello firend,

using WHERE used list is a most efficient way. However, if your customer table is dynamically accessed by some program, for example in one report:

DATA: table_name TYPE string VALUE 'ZXXXX' --- your customer table name

SELECT * FROM (table_name) INTO ... WHERE....

WHERE used list can not find such use case. In this case you can try to use the standard report RPR_ABAP_SOURCE_SCAN, input your custom table name and F8 to find them.

Best Regards,

Jerry

Former Member
0 Kudos

Moderator message - Please search before asking - post locked Rob