ITERATE_QUEUES SAP Method Permute Queue(s)









Below is documentation, parameters and attributes of ABAP Method ITERATE_QUEUES within SAP class /SCTM/CL_QUEUE_ALGORITHMS. 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 /SCTM/CL_QUEUE_ALGORITHMS into the relevant SAP transactions such as SE24 or SE80, and then selecting the method you are interested in.


Method Type - Static

This is a Static Method so you can call it directly

The following technical details of method ITERATE_QUEUES can also be found below:

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


Parameters of Method ITERATE_QUEUES

.

NameTypeData TypeDescriptionDefault Value
IO_CLASS_OBJECTImportingTYPE REF TO
OBJECT
Provider class of methods
IV_METHOD_EXECUTEImportingTYPE
SEOCPDNAME
Method for execution of queue elements
IV_METHOD_NEG_BUF_CHECKImportingTYPE
SEOCPDNAME
Method to check the result of the execution
IV_METHOD_POS_BUF_CHECKImportingTYPE
SEOCPDNAME
Method to check if next queue element valid
IV_METHOD_SET_NEG_BUF_ENTRYImportingTYPE
SEOCPDNAME
Method to check the stop of the queue
IV_METHOD_WRITE_NEG_BUFImportingTYPE
SEOCPDNAME
Method to check the stop of the queue
CT_QUEUESChangingTYPE
/SCTM/T_QUEUES
Table Type for Queues



Exceptions of Method ITERATE_QUEUES

This method does not have any exceptions

Example ABAP coding


DATA: lv_CT_QUEUES TYPE /SCTM/T_QUEUES,
lv_IO_CLASS_OBJECT TYPE OBJECT,
lv_IV_METHOD_EXECUTE TYPE SEOCPDNAME,
lv_IV_METHOD_NEG_BUF_CHECK TYPE SEOCPDNAME,
lv_IV_METHOD_POS_BUF_CHECK TYPE SEOCPDNAME,
lv_IV_METHOD_SET_NEG_BUF_ENTRY TYPE SEOCPDNAME,
lv_IV_METHOD_WRITE_NEG_BUF TYPE SEOCPDNAME,
lv_other TYPE c.

CALL METHOD /SCTM/CL_QUEUE_ALGORITHMS=>ITERATE_QUEUES(
EXPORTING
IO_CLASS_OBJECT = lv_IO_CLASS_OBJECT
IV_METHOD_EXECUTE = lv_IV_METHOD_EXECUTE
IV_METHOD_NEG_BUF_CHECK = lv_IV_METHOD_NEG_BUF_CHECK
IV_METHOD_POS_BUF_CHECK = lv_IV_METHOD_POS_BUF_CHECK
IV_METHOD_SET_NEG_BUF_ENTRY = lv_IV_METHOD_SET_NEG_BUF_ENTRY
IV_METHOD_WRITE_NEG_BUF = lv_IV_METHOD_WRITE_NEG_BUF
CHANGING
CT_QUEUES = lv_CT_QUEUES ).

Links to Related Class(s)

/SCTM/CL...
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!