SAP CS_CL_S_BOM_UNLOCK Function Module for NOTRANSL: Entsperren von Stücklistenköpfen









CS_CL_S_BOM_UNLOCK is a standard cs cl s bom unlock 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: Entsperren von Stücklistenköpfen 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 cs cl s bom unlock FM, simply by entering the name CS_CL_S_BOM_UNLOCK into the relevant SAP transaction such as SE37 or SE38.

Function Group: CSCL_BOM
Program Name: SAPLCSCL_BOM
Main Program: SAPLCSCL_BOM
Appliation area: C
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:



Function CS_CL_S_BOM_UNLOCK 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 'CS_CL_S_BOM_UNLOCK'"NOTRANSL: Entsperren von Stücklistenköpfen
EXPORTING
* MODE_BOM_CLASS_LOCK = 'E' "Lock mode
* _COLLECT = ' ' "Only collect locks initially?
* MANDT = SY-MANDT "Client
* STLTY = "BOM category
* STLNR = "Bill of material
* STLAL = "Alternative BOM
* X_STLTY = ' ' "
* X_STLNR = ' ' "
* X_STLAL = ' ' "
* _SYNCHRON = ' ' "Flag: synchronous unlocking?

IMPORTING
E_NAME = "ABAP System Field: Message Variable

EXCEPTIONS
WRONG_PARAMETERS = 1 FOREIGN_LOCK = 2 SYSTEM_FAILURE_LOCK = 3 UPDATE_REQUIRED = 4
.



IMPORTING Parameters details for CS_CL_S_BOM_UNLOCK

MODE_BOM_CLASS_LOCK - Lock mode

Data type: DD26E-ENQMODE
Default: 'E'
Optional: Yes
Call by Reference: No ( called with pass by value option)

_COLLECT - Only collect locks initially?

Data type: DDENQ_LIKE-COLLECT
Default: ' '
Optional: Yes
Call by Reference: No ( called with pass by value option)

MANDT - Client

Data type: BOM_CLASS_DATA-MANDT
Default: SY-MANDT
Optional: Yes
Call by Reference: No ( called with pass by value option)

STLTY - BOM category

Data type: BOM_CLASS_DATA-STLTY
Optional: Yes
Call by Reference: No ( called with pass by value option)

STLNR - Bill of material

Data type: BOM_CLASS_DATA-STLNR
Optional: Yes
Call by Reference: No ( called with pass by value option)

STLAL - Alternative BOM

Data type: BOM_CLASS_DATA-STLAL
Optional: Yes
Call by Reference: No ( called with pass by value option)

X_STLTY -

Data type:
Default: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)

X_STLNR -

Data type:
Default: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)

X_STLAL -

Data type:
Default: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)

_SYNCHRON - Flag: synchronous unlocking?

Data type: DDENQ_LIKE-SYNCHRON
Default: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)

EXPORTING Parameters details for CS_CL_S_BOM_UNLOCK

E_NAME - ABAP System Field: Message Variable

Data type: SY-MSGV1
Optional: No
Call by Reference: Yes

EXCEPTIONS details

WRONG_PARAMETERS -

Data type:
Optional: No
Call by Reference: No ( called with pass by value option)

FOREIGN_LOCK -

Data type:
Optional: No
Call by Reference: No ( called with pass by value option)

SYSTEM_FAILURE_LOCK -

Data type:
Optional: No
Call by Reference: No ( called with pass by value option)

UPDATE_REQUIRED -

Data type:
Optional: No
Call by Reference: No ( called with pass by value option)

Copy and paste ABAP code example for CS_CL_S_BOM_UNLOCK 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_e_name  TYPE SY-MSGV1, "   
lv_wrong_parameters  TYPE SY, "   
lv_mode_bom_class_lock  TYPE DD26E-ENQMODE, "   'E'
lv__collect  TYPE DDENQ_LIKE-COLLECT, "   ' '
lv_mandt  TYPE BOM_CLASS_DATA-MANDT, "   SY-MANDT
lv_foreign_lock  TYPE BOM_CLASS_DATA, "   
lv_stlty  TYPE BOM_CLASS_DATA-STLTY, "   
lv_system_failure_lock  TYPE BOM_CLASS_DATA, "   
lv_stlnr  TYPE BOM_CLASS_DATA-STLNR, "   
lv_update_required  TYPE BOM_CLASS_DATA, "   
lv_stlal  TYPE BOM_CLASS_DATA-STLAL, "   
lv_x_stlty  TYPE BOM_CLASS_DATA, "   SPACE
lv_x_stlnr  TYPE BOM_CLASS_DATA, "   SPACE
lv_x_stlal  TYPE BOM_CLASS_DATA, "   SPACE
lv__synchron  TYPE DDENQ_LIKE-SYNCHRON. "   SPACE

  CALL FUNCTION 'CS_CL_S_BOM_UNLOCK'  "NOTRANSL: Entsperren von Stücklistenköpfen
    EXPORTING
         MODE_BOM_CLASS_LOCK = lv_mode_bom_class_lock
         _COLLECT = lv__collect
         MANDT = lv_mandt
         STLTY = lv_stlty
         STLNR = lv_stlnr
         STLAL = lv_stlal
         X_STLTY = lv_x_stlty
         X_STLNR = lv_x_stlnr
         X_STLAL = lv_x_stlal
         _SYNCHRON = lv__synchron
    IMPORTING
         E_NAME = lv_e_name
    EXCEPTIONS
        WRONG_PARAMETERS = 1
        FOREIGN_LOCK = 2
        SYSTEM_FAILURE_LOCK = 3
        UPDATE_REQUIRED = 4
. " CS_CL_S_BOM_UNLOCK




ABAP code using 7.40 inline data declarations to call FM CS_CL_S_BOM_UNLOCK

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 MSGV1 FROM SY INTO @DATA(ld_e_name).
 
 
"SELECT single ENQMODE FROM DD26E INTO @DATA(ld_mode_bom_class_lock).
DATA(ld_mode_bom_class_lock) = 'E'.
 
"SELECT single COLLECT FROM DDENQ_LIKE INTO @DATA(ld__collect).
DATA(ld__collect) = ' '.
 
"SELECT single MANDT FROM BOM_CLASS_DATA INTO @DATA(ld_mandt).
DATA(ld_mandt) = SY-MANDT.
 
 
"SELECT single STLTY FROM BOM_CLASS_DATA INTO @DATA(ld_stlty).
 
 
"SELECT single STLNR FROM BOM_CLASS_DATA INTO @DATA(ld_stlnr).
 
 
"SELECT single STLAL FROM BOM_CLASS_DATA INTO @DATA(ld_stlal).
 
DATA(ld_x_stlty) = ' '.
 
DATA(ld_x_stlnr) = ' '.
 
DATA(ld_x_stlal) = ' '.
 
"SELECT single SYNCHRON FROM DDENQ_LIKE INTO @DATA(ld__synchron).
DATA(ld__synchron) = ' '.
 


Search for further information about these or an SAP related objects



Comments on this SAP object

What made you want to lookup this SAP object? Please tell us what you were looking for and anything you would like to be included on this page!