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

query regarding table updations

Former Member
0 Likes
435

Hi,

Can anyone suggest what would be the best way to know when a table (standard) is getting updated . Upon searching the where-used list of the table i found large number of programs using the table which would be dificult to pinpoint any program .

<REMOVED BY MODERATOR>

Regards,

Rajesh.

Edited by: Alvaro Tejada Galindo on Apr 23, 2008 11:50 AM

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
416

Hi rajesh,

One of the best and easy way is use the transaction ST05 for trace.lemme explain in detail.

1.go to ST05 transaction

2.switch trace on

3.take your screen where the field resides

4.enter value in this field and other required field

5.then save the screen

6.go to ST05.

7.stop the trace

8.click on display trace

9.you will get a detailed log what all happend

10.search the log with 'update' or 'insert' word or search with the field.

11.you can find some table name.

12.check that table contains the record which you saved.

Sure this will help

Another Way

1.go to transaction se84.

2.take ABAP dictionary

3.go to Fields

4.Give the field name in table field /structure field

if you are lucky you will get in this

Regards

Shibu Kurian

2 REPLIES 2
Read only

Former Member
0 Likes
417

Hi rajesh,

One of the best and easy way is use the transaction ST05 for trace.lemme explain in detail.

1.go to ST05 transaction

2.switch trace on

3.take your screen where the field resides

4.enter value in this field and other required field

5.then save the screen

6.go to ST05.

7.stop the trace

8.click on display trace

9.you will get a detailed log what all happend

10.search the log with 'update' or 'insert' word or search with the field.

11.you can find some table name.

12.check that table contains the record which you saved.

Sure this will help

Another Way

1.go to transaction se84.

2.take ABAP dictionary

3.go to Fields

4.Give the field name in table field /structure field

if you are lucky you will get in this

Regards

Shibu Kurian

Read only

Former Member
0 Likes
416

Thanks all.

The problem is solved.