SEND SAP Method Trigger Reconciliation
Below is documentation, parameters and attributes of ABAP Method SEND within SAP class CL_BS_SOA_NOTIF_OF_FAILURE_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_NOTIF_OF_FAILURE_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 directlyThe following technical details of method SEND can also be found below:
- Importing parameters
- Exporting parameters
- Changing parameters
- Returning parameters
- Exceptions
- Coding Examples
Parameters of Method SEND
.| Name | Type | Data Type | Description | Default Value |
| IV_CHECK_IF_REQUIRED | Importing | TYPE XFELD | Check if a reconciliation has been triggered already | |
| IV_MESSAGE_ID | Importing | TYPE STRING | MessageID which cannot be processed | |
| IV_NOF_PARTY | Importing | TYPE STRING | ||
| IV_OBJ_TYPE | Importing | TYPE /SAPPO/DTE_OBJTYPE | Object Type | |
| IV_RECONCILIATION_PERIOD | Importing | TYPE BS_SOA_INAPPSEQ_RECON_PER | Sequencing Information: Reconciliation Period Counter | |
| IV_SENDER_BUSINESS_SYSTEM_ID | Importing | TYPE SLD_BSKEY | Key Name of Business System | |
| IV_SEQUENCING_CONTEX | Importing | TYPE BS_SOA_INAPPSEQ_CNTXT | Sequencing Context for Checks on Application level |
Exceptions of Method SEND
CX_BS_SOA_EXCEPTION - Error message occurredExample ABAP coding
DATA: lv_IV_CHECK_IF_REQUIRED TYPE XFELD,
lv_IV_MESSAGE_ID TYPE STRING,
lv_IV_NOF_PARTY TYPE STRING,
lv_IV_OBJ_TYPE TYPE /SAPPO/DTE_OBJTYPE,
lv_IV_RECONCILIATION_PERIOD TYPE BS_SOA_INAPPSEQ_RECON_PER,
lv_IV_SENDER_BUSINESS_SYSTEM_ID TYPE SLD_BSKEY,
lv_IV_SEQUENCING_CONTEX TYPE BS_SOA_INAPPSEQ_CNTXT,
lv_other TYPE c.
CALL METHOD CL_BS_SOA_NOTIF_OF_FAILURE_OUT=>SEND(
EXPORTING
IV_CHECK_IF_REQUIRED = lv_IV_CHECK_IF_REQUIRED
IV_MESSAGE_ID = lv_IV_MESSAGE_ID
IV_NOF_PARTY = lv_IV_NOF_PARTY
IV_OBJ_TYPE = lv_IV_OBJ_TYPE
IV_RECONCILIATION_PERIOD = lv_IV_RECONCILIATION_PERIOD
IV_SENDER_BUSINESS_SYSTEM_ID = lv_IV_SENDER_BUSINESS_SYSTEM_ID
IV_SEQUENCING_CONTEX = lv_IV_SEQUENCING_CONTEX ).
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