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: 

Searching update insert and delete statements

Former Member
0 Kudos

Hi.

Suppose, there is change request containing 10 or more programs.

One of the program has statements, working with database tables,

like update, insert or delete.

Is there any transaction where we can select request number and find

programs working with tables directly.

1 ACCEPTED SOLUTION

GauthamV
Active Contributor
0 Kudos

I dont think there is any such transaction according to your requirement.

You can get all programs in arequest from E071 table.

USe RPR_ABAP_SOURCE_SCAN program to search

update, insert or delete in your programs.

4 REPLIES 4

GauthamV
Active Contributor
0 Kudos

I dont think there is any such transaction according to your requirement.

You can get all programs in arequest from E071 table.

USe RPR_ABAP_SOURCE_SCAN program to search

update, insert or delete in your programs.

Former Member
0 Kudos

Thank you very much.

Sandeep_Kumar
Product and Topic Expert
Product and Topic Expert
0 Kudos

You can check the transport request using SE01/09/10 and check for the table and then use a where used list to find all the programs where this table is used.

Former Member
0 Kudos

Hello

1. Goto table E071 with TRKORR = change request and OBJECT = {reps, repo, rept}

2. In field OBJ_NAME will be all reports names in this request

3. In abap-programm upload this reports into internal table

4. Search for 'update' 'insert' and 'delete'

P.s. it is only for reports