revisions
Retrieve an ABAP object's version history to see who changed it, when, and under which transport request. Filter by author, transport, or title, and limit the newest versions returned.
Instructions
The version history of an object: who changed it when, and under which transport request. Takes a name (with objectType), or objectUrl for a type it cannot address. Mind what the backend means by "version": that field is the transport request that carried the change, while the version NUMBER is the "revision" field - and that is what compareRevisions takes. A long-lived object has a long history (ZCL_APP answers with 90 versions, most of them copies left by transport releases), so the newest 20 come back unless limit says otherwise, and author/transport/titleContains narrow it down.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | How many of the newest versions to return. Default 20; 0 means all of them. | |
| author | No | Keep only versions written by this user. | |
| objectUrl | No | ADT object URL, e.g. /sap/bc/adt/oo/classes/zcl_app. Only needed for a type objectName cannot address. | |
| transport | No | Keep only the version(s) carried by this transport request. | |
| clsInclude | No | For a class, which include to take the history of: definitions, implementations, macros, testclasses or main (the default). | |
| objectName | No | Object name, e.g. ZCL_APP. Use with objectType. | |
| objectType | No | ADT type: CLAS/OC, INTF/OI, PROG/P, PROG/I, FUGR/F, DDLS/DF, TABL/DS. Defaults to CLAS/OC. | |
| titleContains | No | Keep only versions whose description contains this text, case-insensitive. |