Application Development 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: 

Getting version information for Repository Objects

Former Member
0 Kudos

Is there a way (preferably a BAPI/FM, and if not, then a table) to get version information about a given repository object?

5 REPLIES 5

Former Member
0 Kudos

Hi,

You can use this FM:

SVRS_FIND_VRSD_INFO

You have to give <b>Object Type</b> like REPS for Reports , REPT for Report TExt etc.

And version number for which you want info.

regards

Nishant

0 Kudos

> SVRS_FIND_VRSD_INFO

That function module needs version number. It would be useful to me if this was optional. What I needed was the entire history. i.e. All versions.

The export parameters however, pointed me to the table VRSD, which I think serves my purpose very well (unless there is a standard FM for getting information for all versions).

Thanks!

raymond_giuseppi
Active Contributor
0 Kudos

Look at table TADIR, you will get version of repository object and release of R3.

Look also at VRSD to get the transport order associated.

Regards

0 Kudos

Thanks for the pointer. I will probably need TADIR at some point too.

Former Member
0 Kudos

If anyone needs to do this:

If you need to get entire version history for an object, query table "VRSD".

If you know which version you need info on, use the FM "SVRS_FIND_VRSD_INFO".

The FuncGrp "SVRA" might be interesting too.