GET_INSTANCE SAP Method Return IDP helper instance
Below is documentation, parameters and attributes of ABAP Method GET_INSTANCE within SAP class CL_BS_SOA_IDP_UTIL. 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_IDP_UTIL 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_INSTANCE can also be found below:
- Importing parameters
- Exporting parameters
- Changing parameters
- Returning parameters
- Exceptions
- Coding Examples
Parameters of Method GET_INSTANCE
.| Name | Type | Data Type | Description | Default Value |
| IT_PATH | Importing | TYPE TT_PATH | ||
| IV_EXCEPTION_NAME | Importing | TYPE PRX_R3NAME | Proxy Generation: Name of an Object in R/3 | |
| IV_NOSC_BDMH | Importing | TYPE BOOLEAN | Boolean Variable (X=True, -=False, Space=Unknown) | |
| IV_WAIT_TIME | Importing | TYPE TY_WAIT_TIME | ||
| IV_XI_GUID | Importing | TYPE SXMSMGUID | XI: Message ID | |
| RO_INSTANCE | Returning | TYPE REF TO CL_BS_SOA_IDP_UTIL | Idempotency util class for Exactly-Once behaviour |
Exceptions of Method GET_INSTANCE
CX_AI_APPLICATION_FAULT - Application Integration: Application ErrorExample ABAP coding
DATA: lv_IT_PATH TYPE TT_PATH,
lv_IV_EXCEPTION_NAME TYPE PRX_R3NAME,
lv_IV_NOSC_BDMH TYPE BOOLEAN,
lv_IV_WAIT_TIME TYPE TY_WAIT_TIME,
lv_IV_XI_GUID TYPE SXMSMGUID,
lv_RO_INSTANCE TYPE CL_BS_SOA_IDP_UTIL,
lv_other TYPE c.
CALL METHOD CL_BS_SOA_IDP_UTIL=>GET_INSTANCE(
EXPORTING
IT_PATH = lv_IT_PATH
IV_EXCEPTION_NAME = lv_IV_EXCEPTION_NAME
IV_NOSC_BDMH = lv_IV_NOSC_BDMH
IV_WAIT_TIME = lv_IV_WAIT_TIME
IV_XI_GUID = lv_IV_XI_GUID
RECEIVING
RO_INSTANCE = lv_RO_INSTANCE )
"Alternate coding for Method Call with returning parameter
lv_RO_INSTANCE = CL_BS_SOA_IDP_UTIL=>GET_INSTANCE(
EXPORTING
IT_PATH = lv_IT_PATH
IV_EXCEPTION_NAME = lv_IV_EXCEPTION_NAME
IV_NOSC_BDMH = lv_IV_NOSC_BDMH
IV_WAIT_TIME = lv_IV_WAIT_TIME
IV_XI_GUID = lv_IV_XI_GUID ).
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