Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What ABAP object has been changed today?

Tags:

abap

sap-basis

Some functionality in a big project is broken on the development system.

Pretty sure it worked a few hours ago.

How do I know, which ABAP objects have been changed lately? (I think I can guess the transport and the package that contains the change if that helps)

The nearest answer that I found is table VRSD. It contains the date of the version of an object. This doesn't help, since you need to export the transport or create a manual version to get an entry in this table.

So which objects have been changed without creating a new version?

(Yes we will find the change with functional checks, but knowing the changed objects would be a nice shortcut)

like image 224
Gerd Castan Avatar asked Sep 18 '25 14:09

Gerd Castan


1 Answers

  • For code - table TRDIR has a changed on date that updates when code is activated.
  • For data dictionary objects check the DD* tables. I know DD01L is domains and DD02L is tables. Both of these will have a change date. I'm sure there are others for the other data types.
like image 106
Bryan Cain Avatar answered Sep 23 '25 11:09

Bryan Cain