GET_REGISTRATION SAP Method Load and return the registration record
Below is documentation, parameters and attributes of ABAP Method GET_REGISTRATION 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 GET_REGISTRATION can also be found below:
- Importing parameters
- Exporting parameters
- Changing parameters
- Returning parameters
- Exceptions
- Coding Examples
Parameters of Method GET_REGISTRATION
.| Name | Type | Data Type | Description | Default Value |
| 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 | |
| ES_RSPNSRCVR_COR | Exporting | TYPE BSSOA_RSPNSRCVR_COR_UPD | Response Receiver Correlation - Update Structure |
Exceptions of Method GET_REGISTRATION
CX_BS_SOA_EXCEPTION - Error message occurredExample ABAP coding
DATA: lv_ES_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=>GET_REGISTRATION(
EXPORTING
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
IMPORTING
ES_RSPNSRCVR_COR = lv_ES_RSPNSRCVR_COR ).
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