SAP LC_INITIALIZE Function Module for
LC_INITIALIZE is a standard lc initialize 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 initialize FM, simply by entering the name LC_INITIALIZE 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): Normal Function Module
Update:

Function LC_INITIALIZE 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_INITIALIZE'".
EXPORTING
CON_NAME = "
* DEBUG_FLAG = "
* USE_DBMRFC = "
IMPORTING
STATUS = "
EXITCODE = "
TABLES
DBMCLI_EXEC_PROTOCOL = "
ACTION_PROTOCOL = "
* USER_EVAL_ERROR = "
EXCEPTIONS
NO_PERMISSION = 1 SXPG_COMMAND_EXECUTE_ERROR = 2 DBMCLI_COMMAND_EXECUTE_ERROR = 3 UNKNOWN_CON_NAME = 4 EXECUTION_ERROR = 5 EMPTY_CON_ENV = 6 DB_LC_START_INFO_FAILED = 7 DBMRFC_EXECUTE_ERROR = 8 USER_EVAL_ERROR = 9
IMPORTING Parameters details for LC_INITIALIZE
CON_NAME -
Data type: DBCON-CON_NAMEOptional: No
Call by Reference: No ( called with pass by value option)
DEBUG_FLAG -
Data type: COptional: Yes
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_INITIALIZE
STATUS -
Data type: EXTCMDEXEX-STATUSOptional: No
Call by Reference: No ( called with pass by value option)
EXITCODE -
Data type: EXTCMDEXEX-EXITCODEOptional: No
Call by Reference: No ( called with pass by value option)
TABLES Parameters details for LC_INITIALIZE
DBMCLI_EXEC_PROTOCOL -
Data type: BTCXPMOptional: No
Call by Reference: No ( called with pass by value option)
ACTION_PROTOCOL -
Data type: LVC_APROTOptional: No
Call by Reference: No ( called with pass by value option)
USER_EVAL_ERROR -
Data type: SDB_ANSWOptional: Yes
Call by Reference: Yes
EXCEPTIONS details
NO_PERMISSION -
Data type:Optional: No
Call by Reference: Yes
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)
EXECUTION_ERROR -
Data type:Optional: No
Call by Reference: Yes
EMPTY_CON_ENV -
Data type:Optional: No
Call by Reference: Yes
DB_LC_START_INFO_FAILED -
Data type:Optional: No
Call by Reference: Yes
DBMRFC_EXECUTE_ERROR -
Data type:Optional: No
Call by Reference: Yes
USER_EVAL_ERROR -
Data type:Optional: No
Call by Reference: Yes
Copy and paste ABAP code example for LC_INITIALIZE 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_status | TYPE EXTCMDEXEX-STATUS, " | |||
| lv_con_name | TYPE DBCON-CON_NAME, " | |||
| lv_no_permission | TYPE DBCON, " | |||
| lt_dbmcli_exec_protocol | TYPE STANDARD TABLE OF BTCXPM, " | |||
| lv_exitcode | TYPE EXTCMDEXEX-EXITCODE, " | |||
| lv_debug_flag | TYPE C, " | |||
| lt_action_protocol | TYPE STANDARD TABLE OF LVC_APROT, " | |||
| lv_sxpg_command_execute_error | TYPE LVC_APROT, " | |||
| lv_use_dbmrfc | TYPE SDB_CMODE, " | |||
| lt_user_eval_error | TYPE STANDARD TABLE OF SDB_ANSW, " | |||
| lv_dbmcli_command_execute_error | TYPE SDB_ANSW, " | |||
| lv_unknown_con_name | TYPE SDB_ANSW, " | |||
| lv_execution_error | TYPE SDB_ANSW, " | |||
| lv_empty_con_env | TYPE SDB_ANSW, " | |||
| lv_db_lc_start_info_failed | TYPE SDB_ANSW, " | |||
| lv_dbmrfc_execute_error | TYPE SDB_ANSW, " | |||
| lv_user_eval_error | TYPE SDB_ANSW. " |
|   CALL FUNCTION 'LC_INITIALIZE' " |
| EXPORTING | ||
| CON_NAME | = lv_con_name | |
| DEBUG_FLAG | = lv_debug_flag | |
| USE_DBMRFC | = lv_use_dbmrfc | |
| IMPORTING | ||
| STATUS | = lv_status | |
| EXITCODE | = lv_exitcode | |
| TABLES | ||
| DBMCLI_EXEC_PROTOCOL | = lt_dbmcli_exec_protocol | |
| ACTION_PROTOCOL | = lt_action_protocol | |
| USER_EVAL_ERROR | = lt_user_eval_error | |
| EXCEPTIONS | ||
| NO_PERMISSION = 1 | ||
| SXPG_COMMAND_EXECUTE_ERROR = 2 | ||
| DBMCLI_COMMAND_EXECUTE_ERROR = 3 | ||
| UNKNOWN_CON_NAME = 4 | ||
| EXECUTION_ERROR = 5 | ||
| EMPTY_CON_ENV = 6 | ||
| DB_LC_START_INFO_FAILED = 7 | ||
| DBMRFC_EXECUTE_ERROR = 8 | ||
| USER_EVAL_ERROR = 9 | ||
| . " LC_INITIALIZE | ||
ABAP code using 7.40 inline data declarations to call FM LC_INITIALIZE
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 STATUS FROM EXTCMDEXEX INTO @DATA(ld_status). | ||||
| "SELECT single CON_NAME FROM DBCON INTO @DATA(ld_con_name). | ||||
| "SELECT single EXITCODE FROM EXTCMDEXEX INTO @DATA(ld_exitcode). | ||||
Search for further information about these or an SAP related objects