SET_SEQUENCE_FIELDS SAP Method Include sequencing information into the message









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

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


Parameters of Method SET_SEQUENCE_FIELDS

.

NameTypeData TypeDescriptionDefault Value
IV_APPL_SEQ_CONTEXTImportingTYPE
BS_SOA_INAPPSEQ_CNTXT
Sequencing Context for Checks on Application level
IV_PATH_MSG_HEADERImportingTYPE
STRING
IV_PATH_OF_SEQ_FIELDSImportingTYPE
STRING
IV_RECONCILIATION_REQUESTEDImportingTYPE
XFELD
CS_MESSAGE_DATA_OUTBOUNDChangingTYPE
ANY
CS_PROXY_INSTANCEChangingTYPE
BSSOA_ASYNCPRX_INSTANCE
Object Type



Exceptions of Method SET_SEQUENCE_FIELDS

CX_BS_SOA_EXCEPTION - Error message occurred

Example ABAP coding


DATA: lv_CS_MESSAGE_DATA_OUTBOUND TYPE ANY,
lv_CS_PROXY_INSTANCE TYPE BSSOA_ASYNCPRX_INSTANCE,
lv_IV_APPL_SEQ_CONTEXT TYPE BS_SOA_INAPPSEQ_CNTXT,
lv_IV_PATH_MSG_HEADER TYPE STRING,
lv_IV_PATH_OF_SEQ_FIELDS TYPE STRING,
lv_IV_RECONCILIATION_REQUESTED TYPE XFELD,
lv_other TYPE c.

CALL METHOD CL_BS_SOA_ASYNCPRX_OUT=>SET_SEQUENCE_FIELDS(
EXPORTING
IV_APPL_SEQ_CONTEXT = lv_IV_APPL_SEQ_CONTEXT
IV_PATH_MSG_HEADER = lv_IV_PATH_MSG_HEADER
IV_PATH_OF_SEQ_FIELDS = lv_IV_PATH_OF_SEQ_FIELDS
IV_RECONCILIATION_REQUESTED = lv_IV_RECONCILIATION_REQUESTED
CHANGING
CS_MESSAGE_DATA_OUTBOUND = lv_CS_MESSAGE_DATA_OUTBOUND
CS_PROXY_INSTANCE = lv_CS_PROXY_INSTANCE ).

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!