DEQUEUE SAP Method Lift Maintenance Context Lock









Below is documentation, parameters and attributes of ABAP Method DEQUEUE within SAP class /SAPCND/IF_EX_ROLLNAME. There is also a number of example ABAP code snipts to help you use the functionality of this method.

This method is available within SAP systems depending on your version and release level, you can view further information by entering the class name /SAPCND/IF_EX_ROLLNAME 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 can also be found below:

  • Importing parameters
  • Exporting parameters
  • Changing parameters
  • Returning parameters
  • Exceptions
  • Coding Examples


Parameters of Method DEQUEUE

.

NameTypeData TypeDescriptionDefault Value
FLT_VALImportingTYPE
/SAPCND/ROLLNAME_CONTEXTNAME
Parameter FLT_VAL from method DEQUEUE
IS_WORKING_SET_ITEM_INTImportingTYPE
ANY
Condition Record in Internal Display
IT_FIELDNAME_ROLLNAMEImportingTYPE
/SAPCND/T_FIELDNAME_ROLLNAME
Field and Data Element Name
I_COLLECT_DEQUEUEImportingTYPE
/SAPCND/BOOLEAN
Collect Unlock Requirements
I_INSTANCEImportingTYPE REF TO
/SAPCND/IF_EX_ROLLNAME
BAdI Interface /SAPCND/IF_EX_ROLLNAME
I_MAINT_CONTEXT_DATAImportingTYPE REF TO
DATA
Context-Dependent Data
E_RESULTExportingTYPE
SYSUBRC
Return Value, Return Value After ABAP Statements
E_WAS_EXECUTEDExportingTYPE
/SAPCND/BOOLEAN
Boolean Variable
CT_MNT_APPLICATION_LOGChangingTYPE
/SAPCND/T_MNT_APPLICATION_LOG
Entries in Application Log in Condition Maintenance



Exceptions of Method DEQUEUE

EXC_STOP_WORK - Serious Error Which Terminates the Program Called

Example ABAP coding


DATA: lo_class TYPE REF TO /SAPCND/IF_EX_ROLLNAME.
DATA: lv_CT_MNT_APPLICATION_LOG TYPE /SAPCND/T_MNT_APPLICATION_LOG,
lv_E_RESULT TYPE SYSUBRC,
lv_E_WAS_EXECUTED TYPE /SAPCND/BOOLEAN,
lv_FLT_VAL TYPE /SAPCND/ROLLNAME_CONTEXTNAME,
lv_IS_WORKING_SET_ITEM_INT TYPE ANY,
lv_IT_FIELDNAME_ROLLNAME TYPE /SAPCND/T_FIELDNAME_ROLLNAME,
lv_I_COLLECT_DEQUEUE TYPE /SAPCND/BOOLEAN,
lv_I_INSTANCE TYPE /SAPCND/IF_EX_ROLLNAME,
lv_I_MAINT_CONTEXT_DATA TYPE DATA,
lv_other TYPE c.

CALL METHOD lo_class=>DEQUEUE(
EXPORTING
FLT_VAL = lv_FLT_VAL
IS_WORKING_SET_ITEM_INT = lv_IS_WORKING_SET_ITEM_INT
IT_FIELDNAME_ROLLNAME = lv_IT_FIELDNAME_ROLLNAME
I_COLLECT_DEQUEUE = lv_I_COLLECT_DEQUEUE
I_INSTANCE = lv_I_INSTANCE
I_MAINT_CONTEXT_DATA = lv_I_MAINT_CONTEXT_DATA
IMPORTING
E_RESULT = lv_E_RESULT
E_WAS_EXECUTED = lv_E_WAS_EXECUTED
CHANGING
CT_MNT_APPLICATION_LOG = lv_CT_MNT_APPLICATION_LOG ).

Links to Related Class(s)

/SAPCND/...
Full list of available SAP object classes

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!