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

custom table usage.

Former Member
0 Likes
584

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
Read only

Former Member
0 Likes
539

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

Read only

JerryWang
Product and Topic Expert
Product and Topic Expert
0 Likes
539

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

Read only

Former Member
0 Likes
539

Moderator message - Please search before asking - post locked Rob