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

Table properties host

Former Member
0 Likes
482

Hey people,

Is there any table which hosts all the table properties ? I need to know when a particular table is created/modified and by whom, etc. (In particular I need to know the modifications to the Virsa rule set table - /virsa/functobj)

Thanks

Prashanth

1 ACCEPTED SOLUTION
Read only

Frank_Buchholz
Product and Topic Expert
Product and Topic Expert
0 Likes
445

Hi Prashanth,

1. How to track changes to table definitions?

Repository Infosystem

Transaction SE84 -> ABAP Dictionary -> Data base tables

Enter selection for table name (e.g. /virsa/*) and a date range for "last changed" )

Then you can double-click and use the menu function Utilities -> Versions to view the changes.

(I do not recommend to develop own programs reading the table definitions directly.)

2. How to track changes to table content?

SAP uses different options to track changes of table content (e.g. change documents or table logs).

I do not know which opion Virsa is using. However, to check the settings of table logging you can use transaction SE13 for table /virsa/functobj and view the setting "Log data changes". If set (customers are allowed to set this flag, too), you can use transaction SCU3 (=report RSTBHIST) to view the log.

Kind regards

Frank Buchholz

2 REPLIES 2
Read only

Frank_Buchholz
Product and Topic Expert
Product and Topic Expert
0 Likes
446

Hi Prashanth,

1. How to track changes to table definitions?

Repository Infosystem

Transaction SE84 -> ABAP Dictionary -> Data base tables

Enter selection for table name (e.g. /virsa/*) and a date range for "last changed" )

Then you can double-click and use the menu function Utilities -> Versions to view the changes.

(I do not recommend to develop own programs reading the table definitions directly.)

2. How to track changes to table content?

SAP uses different options to track changes of table content (e.g. change documents or table logs).

I do not know which opion Virsa is using. However, to check the settings of table logging you can use transaction SE13 for table /virsa/functobj and view the setting "Log data changes". If set (customers are allowed to set this flag, too), you can use transaction SCU3 (=report RSTBHIST) to view the log.

Kind regards

Frank Buchholz

Read only

0 Likes
445

Thank you so much Frank, We were wondering how do we effectively track all our Virsa CC Rule set & FF table changes.This should be it. Thanks again