LOAD_REGISTRATION SAP Method Load Registration Record
Below is documentation, parameters and attributes of ABAP Method LOAD_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 is a private Method so can only be executed from within the class itself. I.e. You could access it from another method of the class.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 LOAD_REGISTRATION can also be found below:
- Importing parameters
- Exporting parameters
- Changing parameters
- Returning parameters
- Exceptions
- Coding Examples
Parameters of Method LOAD_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 | Single-Character Flag | |
| EV_TABIX | Exporting | TYPE SYTABIX | Index of Internal Tables |
Exceptions of Method LOAD_REGISTRATION
CX_BS_SOA_EXCEPTION - Error message occurredExample ABAP coding
This is a private Method so the below code can only be executed from within the class itself. I.e. from another method of the class.DATA: lv_ES_RSPNSRCVR_COR TYPE BSSOA_RSPNSRCVR_COR_UPD,
lv_EV_TABIX TYPE SYTABIX,
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=>LOAD_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
EV_TABIX = lv_EV_TABIX ).
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