SAP LXDCC_INV_AUTO_ACTIVATE Function Module for Activates automatically a DCC (inactive) inventory document
LXDCC_INV_AUTO_ACTIVATE is a standard lxdcc inv auto activate SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for Activates automatically a DCC (inactive) inventory document 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 lxdcc inv auto activate FM, simply by entering the name LXDCC_INV_AUTO_ACTIVATE into the relevant SAP transaction such as SE37 or SE38.
Function Group: LXDCC
Program Name: SAPLLXDCC
Main Program: SAPLLXDCC
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function LXDCC_INV_AUTO_ACTIVATE 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 'LXDCC_INV_AUTO_ACTIVATE'"Activates automatically a DCC (inactive) inventory document.
EXPORTING
I_LGNUM = "Warehouse Number / Warehouse Complex
I_LGTYP = "Storage Type
I_IVNUM = "Number of system inventory record
* I_MATNR = "Material Number
* I_DIFF_EXISTS = "Difference existence checkbox
* IS_LCDCC = "Customization for Dynamic Cycle Count
EXCEPTIONS
NO_CUSTOMIZATION = 1
IMPORTING Parameters details for LXDCC_INV_AUTO_ACTIVATE
I_LGNUM - Warehouse Number / Warehouse Complex
Data type: LINP-LGNUMOptional: No
Call by Reference: No ( called with pass by value option)
I_LGTYP - Storage Type
Data type: LCDCC-LGTYPOptional: No
Call by Reference: No ( called with pass by value option)
I_IVNUM - Number of system inventory record
Data type: LINP-IVNUMOptional: No
Call by Reference: No ( called with pass by value option)
I_MATNR - Material Number
Data type: LINV-MATNROptional: Yes
Call by Reference: No ( called with pass by value option)
I_DIFF_EXISTS - Difference existence checkbox
Data type: XFELDOptional: Yes
Call by Reference: No ( called with pass by value option)
IS_LCDCC - Customization for Dynamic Cycle Count
Data type: LCDCCOptional: Yes
Call by Reference: No ( called with pass by value option)
EXCEPTIONS details
NO_CUSTOMIZATION - No customization for immediate activation
Data type:Optional: No
Call by Reference: Yes
Copy and paste ABAP code example for LXDCC_INV_AUTO_ACTIVATE 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_i_lgnum | TYPE LINP-LGNUM, " | |||
| lv_no_customization | TYPE LINP, " | |||
| lv_i_lgtyp | TYPE LCDCC-LGTYP, " | |||
| lv_i_ivnum | TYPE LINP-IVNUM, " | |||
| lv_i_matnr | TYPE LINV-MATNR, " | |||
| lv_i_diff_exists | TYPE XFELD, " | |||
| lv_is_lcdcc | TYPE LCDCC. " |
|   CALL FUNCTION 'LXDCC_INV_AUTO_ACTIVATE' "Activates automatically a DCC (inactive) inventory document |
| EXPORTING | ||
| I_LGNUM | = lv_i_lgnum | |
| I_LGTYP | = lv_i_lgtyp | |
| I_IVNUM | = lv_i_ivnum | |
| I_MATNR | = lv_i_matnr | |
| I_DIFF_EXISTS | = lv_i_diff_exists | |
| IS_LCDCC | = lv_is_lcdcc | |
| EXCEPTIONS | ||
| NO_CUSTOMIZATION = 1 | ||
| . " LXDCC_INV_AUTO_ACTIVATE | ||
ABAP code using 7.40 inline data declarations to call FM LXDCC_INV_AUTO_ACTIVATE
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 LGNUM FROM LINP INTO @DATA(ld_i_lgnum). | ||||
| "SELECT single LGTYP FROM LCDCC INTO @DATA(ld_i_lgtyp). | ||||
| "SELECT single IVNUM FROM LINP INTO @DATA(ld_i_ivnum). | ||||
| "SELECT single MATNR FROM LINV INTO @DATA(ld_i_matnr). | ||||
Search for further information about these or an SAP related objects