FILL_LRD_REFERENCE SAP Method Call BADI for Receiver Determination and LRD filter enhncmnt
Below is documentation, parameters and attributes of ABAP Method FILL_LRD_REFERENCE within SAP class CL_BS_SOA_ASYNCPRX_OUT. 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_ASYNCPRX_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 FILL_LRD_REFERENCE can also be found below:
- Importing parameters
- Exporting parameters
- Changing parameters
- Returning parameters
- Exceptions
- Coding Examples
Parameters of Method FILL_LRD_REFERENCE
.| Name | Type | Data Type | Description | Default Value |
| IS_MESSAGE_DATA_OUTBOUND | Importing | TYPE ANY | ||
| IV_LOGICAL_RECEIVER_DET_STRUC | Importing | TYPE ANY | ||
| IV_PROXY_CLASS | Importing | TYPE SEOCLSNAME | Object Type Name | |
| IV_SERVICE_GROUP | Importing | TYPE SRT_WSP_DT_OBJ_NAME | WSP Name of Interface Object | |
| EV_LOGICAL_RECEIVER_DET_REF | Exporting | TYPE REF TO DATA | ||
| CV_RECIPIENT_BUSINESS_SYSTEM | Changing | TYPE SLD_BSKEY | Key Name of Business System |
Exceptions of Method FILL_LRD_REFERENCE
This method does not have any exceptionsExample 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_CV_RECIPIENT_BUSINESS_SYSTEM TYPE SLD_BSKEY,
lv_EV_LOGICAL_RECEIVER_DET_REF TYPE DATA,
lv_IS_MESSAGE_DATA_OUTBOUND TYPE ANY,
lv_IV_LOGICAL_RECEIVER_DET_STRUC TYPE ANY,
lv_IV_PROXY_CLASS TYPE SEOCLSNAME,
lv_IV_SERVICE_GROUP TYPE SRT_WSP_DT_OBJ_NAME,
lv_other TYPE c.
CALL METHOD CL_BS_SOA_ASYNCPRX_OUT=>FILL_LRD_REFERENCE(
EXPORTING
IS_MESSAGE_DATA_OUTBOUND = lv_IS_MESSAGE_DATA_OUTBOUND
IV_LOGICAL_RECEIVER_DET_STRUC = lv_IV_LOGICAL_RECEIVER_DET_STRUC
IV_PROXY_CLASS = lv_IV_PROXY_CLASS
IV_SERVICE_GROUP = lv_IV_SERVICE_GROUP
IMPORTING
EV_LOGICAL_RECEIVER_DET_REF = lv_EV_LOGICAL_RECEIVER_DET_REF
CHANGING
CV_RECIPIENT_BUSINESS_SYSTEM = lv_CV_RECIPIENT_BUSINESS_SYSTEM ).
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