SAP LC_GET_VERSION Function Module for
LC_GET_VERSION is a standard lc get version SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used to perform a specific ABAP function and below is the pattern details, 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 lc get version FM, simply by entering the name LC_GET_VERSION into the relevant SAP transaction such as SE37 or SE38.
Function Group: SLCA
Program Name: SAPLSLCA
Main Program: SAPLSLCA
Appliation area: S
Release date: N/A
Mode(Normal, Remote etc): Remote-Enabled
Update:

Function LC_GET_VERSION 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 'LC_GET_VERSION'".
EXPORTING
CON_NAME = "
* USE_DBMRFC = "
IMPORTING
LC_VERSION = "
LC_DBROOT = "
LC_OS = "
TABLES
ACTION_PROTOCOL = "
EXCEPTIONS
LC_GET_VERSION_ERROR = 1 NO_PERMISSION = 2 SXPG_COMMAND_EXECUTE_ERROR = 3 DBMCLI_COMMAND_EXECUTE_ERROR = 4 UNKNOWN_CON_NAME = 5 EMPTY_CON_ENV = 6 DBMRFC_COMMAND_EXECUTE_ERROR = 7
IMPORTING Parameters details for LC_GET_VERSION
CON_NAME -
Data type: DBCON-CON_NAMEOptional: No
Call by Reference: No ( called with pass by value option)
USE_DBMRFC -
Data type: SDB_CMODEOptional: Yes
Call by Reference: No ( called with pass by value option)
EXPORTING Parameters details for LC_GET_VERSION
LC_VERSION -
Data type: LVC_INFO-VERSIONOptional: No
Call by Reference: No ( called with pass by value option)
LC_DBROOT -
Data type: LVC_INFO-DBROOTOptional: No
Call by Reference: No ( called with pass by value option)
LC_OS -
Data type: LVC_INFO-OSOptional: No
Call by Reference: No ( called with pass by value option)
TABLES Parameters details for LC_GET_VERSION
ACTION_PROTOCOL -
Data type: LVC_APROTOptional: No
Call by Reference: No ( called with pass by value option)
EXCEPTIONS details
LC_GET_VERSION_ERROR -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
NO_PERMISSION -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
SXPG_COMMAND_EXECUTE_ERROR -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
DBMCLI_COMMAND_EXECUTE_ERROR -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
UNKNOWN_CON_NAME -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
EMPTY_CON_ENV -
Data type:Optional: No
Call by Reference: Yes
DBMRFC_COMMAND_EXECUTE_ERROR -
Data type:Optional: No
Call by Reference: Yes
Copy and paste ABAP code example for LC_GET_VERSION 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_con_name | TYPE DBCON-CON_NAME, " | |||
| lv_lc_version | TYPE LVC_INFO-VERSION, " | |||
| lt_action_protocol | TYPE STANDARD TABLE OF LVC_APROT, " | |||
| lv_lc_get_version_error | TYPE LVC_APROT, " | |||
| lv_lc_dbroot | TYPE LVC_INFO-DBROOT, " | |||
| lv_use_dbmrfc | TYPE SDB_CMODE, " | |||
| lv_no_permission | TYPE SDB_CMODE, " | |||
| lv_lc_os | TYPE LVC_INFO-OS, " | |||
| lv_sxpg_command_execute_error | TYPE LVC_INFO, " | |||
| lv_dbmcli_command_execute_error | TYPE LVC_INFO, " | |||
| lv_unknown_con_name | TYPE LVC_INFO, " | |||
| lv_empty_con_env | TYPE LVC_INFO, " | |||
| lv_dbmrfc_command_execute_error | TYPE LVC_INFO. " |
|   CALL FUNCTION 'LC_GET_VERSION' " |
| EXPORTING | ||
| CON_NAME | = lv_con_name | |
| USE_DBMRFC | = lv_use_dbmrfc | |
| IMPORTING | ||
| LC_VERSION | = lv_lc_version | |
| LC_DBROOT | = lv_lc_dbroot | |
| LC_OS | = lv_lc_os | |
| TABLES | ||
| ACTION_PROTOCOL | = lt_action_protocol | |
| EXCEPTIONS | ||
| LC_GET_VERSION_ERROR = 1 | ||
| NO_PERMISSION = 2 | ||
| SXPG_COMMAND_EXECUTE_ERROR = 3 | ||
| DBMCLI_COMMAND_EXECUTE_ERROR = 4 | ||
| UNKNOWN_CON_NAME = 5 | ||
| EMPTY_CON_ENV = 6 | ||
| DBMRFC_COMMAND_EXECUTE_ERROR = 7 | ||
| . " LC_GET_VERSION | ||
ABAP code using 7.40 inline data declarations to call FM LC_GET_VERSION
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.| "SELECT single CON_NAME FROM DBCON INTO @DATA(ld_con_name). | ||||
| "SELECT single VERSION FROM LVC_INFO INTO @DATA(ld_lc_version). | ||||
| "SELECT single DBROOT FROM LVC_INFO INTO @DATA(ld_lc_dbroot). | ||||
| "SELECT single OS FROM LVC_INFO INTO @DATA(ld_lc_os). | ||||
Search for further information about these or an SAP related objects