Application Development and Automation 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: 
Read only

Function module for version history

prabhu_s2
Active Contributor
0 Likes
2,167

hi

with limited access to sap system, i'm unable to to complete a documentation by missing the reference on the function module to be used for reading the version history of a report or module pool/screen. kindly point on the correct function module to be used that would fetch the version history ?

PS: I'm aware of the table to be used i.e. vrsd. yet, i'm looking for function module

thkx.

Prabhu

2 REPLIES 2
Read only

kesavadas_thekkillath
Active Contributor
0 Likes
1,058

Check

STRF_ACCESS_SAPNAMES

SVRS_DISPLAY_VERSION_LIST

SVRS_GET_VERSION_DIRECTORY_46

In se37 you can search with pattern SVRS*..

Read only

Former Member
0 Likes
1,058

Chk this fm.

SVRS_GET_VERSION_DIRECTORY_46 - you canl get the version and transport request details

CALL FUNCTION 'SVRS_GET_VERSION_DIRECTORY_46'

EXPORTING

destination = lw_dest(Destination client)

objname = lw_obj_name(object name)

objtype = lw_obj_type(Eg : 'PROG' for program)

TABLES

lversno_list = l_verno

version_list = l_verlist

EXCEPTIONS

no_entry = 1

communication_failure_ = 2

system_failure = 3

OTHERS = 4.