DEQUEUE_MASTER_DATA_DUMMY SAP Method Example Redefinition of 'Unlock Master Data Objects' Method
Below is documentation, parameters and attributes of ABAP Method DEQUEUE_MASTER_DATA_DUMMY within SAP class /SCMB/CL_MD_LOCK_I. There is also a number of example ABAP code snipts to help you use the functionality of this method.
This is a private Method so can only be executed from within the class itself. I.e. You could access it from another method of the class.This method is available within SAP systems depending on your version and release level, you can view further information by entering the class name /SCMB/CL_MD_LOCK_I into the relevant SAP transactions such as SE24 or SE80, and then selecting the method you are interested in.
Method Type - Instance
This is an Instance Method so needs to be instantiated first before you can access any of the methods. I.e. you need to create a local variable of TYPE ref to the class.The following technical details of method DEQUEUE_MASTER_DATA_DUMMY can also be found below:
- Importing parameters
- Exporting parameters
- Changing parameters
- Returning parameters
- Exceptions
- Coding Examples
Parameters of Method DEQUEUE_MASTER_DATA_DUMMY
.| Name | Type | Data Type | Description | Default Value |
| IT_MASTER_DATA_OBJECTS | Importing | TYPE STANDARD TABLE | Table with Entries to be Unlocked | |
| IV_COLLECT | Importing | TYPE DDENQCOLL | Flag Whether Locks Should Only Be Collected First | |
| IV_ENQ_OBJ | Importing | TYPE /SCMB/MD_LOCK_ENQ_OBJ | Individual Lock Object | |
| IV_LOCK_MODE | Importing | TYPE ENQMODE | Lock Mode | |
| IV_PARAID | Importing | TYPE /SCMB/MD_LOCK_PARAID | Parallelization GUID | |
| IV_SCOPE | Importing | TYPE DDENQSCOPE | Control Lock Behavior When Calling the Update Task |
Exceptions of Method DEQUEUE_MASTER_DATA_DUMMY
/SCMB/CX_MD_LOCK_SYSTEM_ERROR - Lock Server System ErrorExample ABAP coding
This is a private Method so the below code can only be executed from within the class itself. I.e. from another method of the class.DATA: lo_class TYPE REF TO /SCMB/CL_MD_LOCK_I.
DATA: lv_IT_MASTER_DATA_OBJECTS TYPE STANDARD TABLE,
lv_IV_COLLECT TYPE DDENQCOLL,
lv_IV_ENQ_OBJ TYPE /SCMB/MD_LOCK_ENQ_OBJ,
lv_IV_LOCK_MODE TYPE ENQMODE,
lv_IV_PARAID TYPE /SCMB/MD_LOCK_PARAID,
lv_IV_SCOPE TYPE DDENQSCOPE,
lv_other TYPE c.
CALL METHOD lo_class=>DEQUEUE_MASTER_DATA_DUMMY(
EXPORTING
IT_MASTER_DATA_OBJECTS = lv_IT_MASTER_DATA_OBJECTS
IV_COLLECT = lv_IV_COLLECT
IV_ENQ_OBJ = lv_IV_ENQ_OBJ
IV_LOCK_MODE = lv_IV_LOCK_MODE
IV_PARAID = lv_IV_PARAID
IV_SCOPE = lv_IV_SCOPE ).
Links to Related Class(s)
/SCMB/CL...Full list of available SAP object classes
Search for further information about these or an SAP related objects