PUT_INTO_QUEUE SAP Method Put incoming message into the Waiting Queue









Below is documentation, parameters and attributes of ABAP Method PUT_INTO_QUEUE within SAP class CL_BS_SOA_INAPPSEQ_IN. 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 CL_BS_SOA_INAPPSEQ_IN 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 PUT_INTO_QUEUE can also be found below:

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


Parameters of Method PUT_INTO_QUEUE

.

NameTypeData TypeDescriptionDefault Value
IR_FEH_REGISTRATIONImportingTYPE REF TO
CL_FEH_REGISTRATION
Registration and Restart of FEH
IS_FEH_MAIN_OBJECTImportingTYPE
ECH_STR_OBJECT
Object of Process
IS_SINGLE_BOImportingTYPE
ANY
IV_MESSAGE_IDImportingTYPE
BS_SOA_RSPNSRCVR_MSG_ID
Original Message ID of the Sender
IV_MESSAGE_NUMBERImportingTYPE
BS_SOA_INAPPSEQ_MESSAGE_NMBR
Sequencing Context for Checks on App. level - Hashed Value
IV_OBJ_TYPEImportingTYPE
/SAPPO/DTE_OBJTYPE
IV_RECONCILIATION_PERIODImportingTYPE
BS_SOA_INAPPSEQ_RECON_PER
Sequencing Information: Reconciliation Period Counter
IV_SEQUENCING_CONTEXTImportingTYPE
BS_SOA_INAPPSEQ_CNTXT
IV_SERVICEImportingTYPE
SXI_SERVICE
XI: Service



Exceptions of Method PUT_INTO_QUEUE

CX_BS_SOA_EXCEPTION - Application Integration: Technical Error

Example ABAP coding


DATA: lv_IR_FEH_REGISTRATION TYPE CL_FEH_REGISTRATION,
lv_IS_FEH_MAIN_OBJECT TYPE ECH_STR_OBJECT,
lv_IS_SINGLE_BO TYPE ANY,
lv_IV_MESSAGE_ID TYPE BS_SOA_RSPNSRCVR_MSG_ID,
lv_IV_MESSAGE_NUMBER TYPE BS_SOA_INAPPSEQ_MESSAGE_NMBR,
lv_IV_OBJ_TYPE TYPE /SAPPO/DTE_OBJTYPE,
lv_IV_RECONCILIATION_PERIOD TYPE BS_SOA_INAPPSEQ_RECON_PER,
lv_IV_SEQUENCING_CONTEXT TYPE BS_SOA_INAPPSEQ_CNTXT,
lv_IV_SERVICE TYPE SXI_SERVICE,
lv_other TYPE c.

CALL METHOD CL_BS_SOA_INAPPSEQ_IN=>PUT_INTO_QUEUE(
EXPORTING
IR_FEH_REGISTRATION = lv_IR_FEH_REGISTRATION
IS_FEH_MAIN_OBJECT = lv_IS_FEH_MAIN_OBJECT
IS_SINGLE_BO = lv_IS_SINGLE_BO
IV_MESSAGE_ID = lv_IV_MESSAGE_ID
IV_MESSAGE_NUMBER = lv_IV_MESSAGE_NUMBER
IV_OBJ_TYPE = lv_IV_OBJ_TYPE
IV_RECONCILIATION_PERIOD = lv_IV_RECONCILIATION_PERIOD
IV_SEQUENCING_CONTEXT = lv_IV_SEQUENCING_CONTEXT
IV_SERVICE = lv_IV_SERVICE ).

Links to Related Class(s)

CL_BS_SO...
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!