SAP VERSION_LESEN Function Module for NOTRANSL: Versionen zur LIS Planung
VERSION_LESEN is a standard version lesen SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for NOTRANSL: Versionen zur LIS Planung processing and below is the pattern details for this FM, showing its interface including any import and export parameters, exceptions etc. there is also a full "cut and paste" ABAP pattern code example, along with implementation ABAP coding, documentation and contribution comments specific to this or related objects.
See here to view full function module documentation and code listing for version lesen FM, simply by entering the name VERSION_LESEN into the relevant SAP transaction such as SE37 or SE38.
Function Group: MCP6
Program Name: SAPLMCP6
Main Program: SAPLMCP6
Appliation area: M
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function VERSION_LESEN pattern details
In-order to call this FM within your sap programs, simply using the below ABAP pattern details to trigger the function call...or see the full ABAP code listing at the end of this article. You can simply cut and paste this code into your ABAP progrom as it is, including variable declarations.CALL FUNCTION 'VERSION_LESEN'"NOTRANSL: Versionen zur LIS Planung.
EXPORTING
* AKTKZ = 'A' "Indicator active, inactive, new version
I_PLOBJ = "
* I_SSOUR = ' ' "
IMPORTING
OK_CODE = "
VINFO = "
VRSIO = "Version number
EXCEPTIONS
NO_ACTIVE_VERSION = 1 NO_INACTIVE_VERSION = 2 NO_NEW_VERSION = 3
Customer Function user exits
Below is a list of CUSTOMER FUNCTION exit user exits that are available within this program and maybe relevant for this FM.EXIT_SAPLMCP6_001 User Exit for Extrapolating Sales for OTB
EXIT_SAPLMCP6_002 User Exit for Checking OTB Within a Purchase Order
IMPORTING Parameters details for VERSION_LESEN
AKTKZ - Indicator active, inactive, new version
Data type: CHAR01Default: 'A'
Optional: Yes
Call by Reference: No ( called with pass by value option)
I_PLOBJ -
Data type: P445X-PLOBJOptional: No
Call by Reference: No ( called with pass by value option)
I_SSOUR -
Data type: S001-SSOURDefault: ' '
Optional: Yes
Call by Reference: No ( called with pass by value option)
EXPORTING Parameters details for VERSION_LESEN
OK_CODE -
Data type: SYUCOMMOptional: No
Call by Reference: No ( called with pass by value option)
VINFO -
Data type: PVRSIOptional: No
Call by Reference: No ( called with pass by value option)
VRSIO - Version number
Data type: RMCP2-VRSIOOptional: No
Call by Reference: No ( called with pass by value option)
EXCEPTIONS details
NO_ACTIVE_VERSION -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
NO_INACTIVE_VERSION -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
NO_NEW_VERSION -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
Copy and paste ABAP code example for VERSION_LESEN Function Module
The ABAP code below is a full code listing to execute function module POPUP_TO_CONFIRM including all data declarations. The code uses the original data declarations rather than the latest in-line data DECLARATION SYNTAX but I have included an ABAP code snippet at the end to show how declarations would look using the newer method of declaring data variables on the fly. This will allow you to compare and fully understand the new inline method. Please note some of the newer syntax such as the @DATA is not available until a later 4.70 service pack (SP8), which i why i have stuck to the origianl for this example.| DATA: | ||||
| lv_aktkz | TYPE CHAR01, " 'A' | |||
| lv_ok_code | TYPE SYUCOMM, " | |||
| lv_no_active_version | TYPE SYUCOMM, " | |||
| lv_vinfo | TYPE PVRSI, " | |||
| lv_i_plobj | TYPE P445X-PLOBJ, " | |||
| lv_no_inactive_version | TYPE P445X, " | |||
| lv_vrsio | TYPE RMCP2-VRSIO, " | |||
| lv_i_ssour | TYPE S001-SSOUR, " ' ' | |||
| lv_no_new_version | TYPE S001. " |
|   CALL FUNCTION 'VERSION_LESEN' "NOTRANSL: Versionen zur LIS Planung |
| EXPORTING | ||
| AKTKZ | = lv_aktkz | |
| I_PLOBJ | = lv_i_plobj | |
| I_SSOUR | = lv_i_ssour | |
| IMPORTING | ||
| OK_CODE | = lv_ok_code | |
| VINFO | = lv_vinfo | |
| VRSIO | = lv_vrsio | |
| EXCEPTIONS | ||
| NO_ACTIVE_VERSION = 1 | ||
| NO_INACTIVE_VERSION = 2 | ||
| NO_NEW_VERSION = 3 | ||
| . " VERSION_LESEN | ||
ABAP code using 7.40 inline data declarations to call FM VERSION_LESEN
The below ABAP code uses the newer in-line data declarations. This allows you to see the coding differences/benefits of the later inline syntax. Please note some of the newer syntax below, such as the @DATA is not available until 4.70 EHP 8.| DATA(ld_aktkz) | = 'A'. | |||
| "SELECT single PLOBJ FROM P445X INTO @DATA(ld_i_plobj). | ||||
| "SELECT single VRSIO FROM RMCP2 INTO @DATA(ld_vrsio). | ||||
| "SELECT single SSOUR FROM S001 INTO @DATA(ld_i_ssour). | ||||
| DATA(ld_i_ssour) | = ' '. | |||
Search for further information about these or an SAP related objects