COMPLETE_RESPONSE_HEADER SAP Method Load registration record and fill the passed message header
Below is documentation, parameters and attributes of ABAP Method COMPLETE_RESPONSE_HEADER within SAP class CL_BS_SOA_RSPNSRCVR_MANAGER. 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_RSPNSRCVR_MANAGER 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 COMPLETE_RESPONSE_HEADER can also be found below:
- Importing parameters
- Exporting parameters
- Changing parameters
- Returning parameters
- Exceptions
- Coding Examples
Parameters of Method COMPLETE_RESPONSE_HEADER
.| Name | Type | Data Type | Description | Default Value |
| IS_RSPNSRCVR_COR | Importing | TYPE BSSOA_RSPNSRCVR_COR_UPD | Response Receiver Correlation - Update Structure | |
| IV_COREL_ID | Importing | TYPE BS_SOA_RSPNSRCVR_COREL_ID | Response Receiver Correlation ID | |
| IV_OBJ_TYPE | Importing | TYPE /SAPPO/DTE_OBJTYPE | Object Type | |
| IV_REFERENCE_MESSAGE_ID | Importing | TYPE BS_SOA_RSPNSRCVR_MSG_ID | Original Message ID of the Sender | |
| IV_SERVICE | Importing | TYPE SXI_SERVICE | XI: Service | |
| CS_MESSAGE_HEADER | Changing | TYPE ANY |
Exceptions of Method COMPLETE_RESPONSE_HEADER
CX_BS_SOA_EXCEPTION - Error message occurredExample ABAP coding
DATA: lv_CS_MESSAGE_HEADER TYPE ANY,
lv_IS_RSPNSRCVR_COR TYPE BSSOA_RSPNSRCVR_COR_UPD,
lv_IV_COREL_ID TYPE BS_SOA_RSPNSRCVR_COREL_ID,
lv_IV_OBJ_TYPE TYPE /SAPPO/DTE_OBJTYPE,
lv_IV_REFERENCE_MESSAGE_ID TYPE BS_SOA_RSPNSRCVR_MSG_ID,
lv_IV_SERVICE TYPE SXI_SERVICE,
lv_other TYPE c.
CALL METHOD CL_BS_SOA_RSPNSRCVR_MANAGER=>COMPLETE_RESPONSE_HEADER(
EXPORTING
IS_RSPNSRCVR_COR = lv_IS_RSPNSRCVR_COR
IV_COREL_ID = lv_IV_COREL_ID
IV_OBJ_TYPE = lv_IV_OBJ_TYPE
IV_REFERENCE_MESSAGE_ID = lv_IV_REFERENCE_MESSAGE_ID
IV_SERVICE = lv_IV_SERVICE
CHANGING
CS_MESSAGE_HEADER = lv_CS_MESSAGE_HEADER ).
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