Gerd Castan
Gerd Castan

Reputation: 6849

What ABAP object has been changed today?

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)

Upvotes: 4

Views: 2208

Answers (2)

Sandra Rossi
Sandra Rossi

Reputation: 13629

There is also the table REPOLOAD which contains the ABAP byte code. There are 3 fields UDAT, UTIME and UNAME for date, time and user who did the last generation (PS: don't be confused by SDAT and STIME fields).

Upvotes: 0

Bryan Cain
Bryan Cain

Reputation: 1776

  • 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.

Upvotes: 3

Related Questions