获得某个时间段内修改过的所有ABAP对象列表

Sometimes we need to get a list of changed objects by the given user at the given time period, there is a small tip to quickly get this list with little effort.

approach1

query the table VRSD with user name and date as query parameter:

获得某个时间段内修改过的所有ABAP对象列表

Each entry of list contains a corresponding transport request number ( in column KORRNUM )

获得某个时间段内修改过的所有ABAP对象列表

However, this approach could not contain modifications on local objects.
The version number (5) and transport request number(AG3K074711) could also be reviewed in class builder menu Utilities
->Versions->Version management:

获得某个时间段内修改过的所有ABAP对象列表
获得某个时间段内修改过的所有ABAP对象列表
获得某个时间段内修改过的所有ABAP对象列表

Approach2

query table TRDIR:

获得某个时间段内修改过的所有ABAP对象列表
获得某个时间段内修改过的所有ABAP对象列表

The list entry still contains the version number which could be found in version database.

获得某个时间段内修改过的所有ABAP对象列表
获得某个时间段内修改过的所有ABAP对象列表

要获取更多Jerry的原创文章,请关注公众号"汪子熙":
获得某个时间段内修改过的所有ABAP对象列表