SAP RSDAS_RFC_BRIDGE_OBJECT_DETAIL Function Module for Wrappers for calling the provider: get details
RSDAS_RFC_BRIDGE_OBJECT_DETAIL is a standard rsdas rfc bridge object detail SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for Wrappers for calling the provider: get details processing and below is the pattern details for this FM, showing its interface including any import and export parameters, exceptions etc. there is also a full "cut and paste" ABAP pattern code example, along with implementation ABAP coding, documentation and contribution comments specific to this or related objects.
See here to view full function module documentation and code listing for rsdas rfc bridge object detail FM, simply by entering the name RSDAS_RFC_BRIDGE_OBJECT_DETAIL into the relevant SAP transaction such as SE37 or SE38.
Function Group: RSDAS_X_PROVIDER
Program Name: SAPLRSDAS_X_PROVIDER
Main Program: SAPLRSDAS_X_PROVIDER
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function RSDAS_RFC_BRIDGE_OBJECT_DETAIL pattern details
In-order to call this FM within your sap programs, simply using the below ABAP pattern details to trigger the function call...or see the full ABAP code listing at the end of this article. You can simply cut and paste this code into your ABAP progrom as it is, including variable declarations.CALL FUNCTION 'RSDAS_RFC_BRIDGE_OBJECT_DETAIL'"Wrappers for calling the provider: get details.
EXPORTING
I_JAVA_CLASS_NAME = "Parameter Value' MU:
I_OBJECT_TYPE = "Type of Object on Which the Data Access Service Is Based
I_OBJECT_ID = "ID of an Object on which the Data Access Service is Based
IMPORTING
E_T_DETAIL = "Table Type for RSDAS_S_VALUE
E_T_MESSAGE = "Table Type for RRX_MESG
E_SUBRC = "Return Value from ABAP Statements
IMPORTING Parameters details for RSDAS_RFC_BRIDGE_OBJECT_DETAIL
I_JAVA_CLASS_NAME - Parameter Value' MU:
Data type: RSRPARAMETERVALUEOptional: No
Call by Reference: Yes
I_OBJECT_TYPE - Type of Object on Which the Data Access Service Is Based
Data type: RSDAS_OBJECT_TYPEOptional: No
Call by Reference: Yes
I_OBJECT_ID - ID of an Object on which the Data Access Service is Based
Data type: RSDAS_OBJECT_IDOptional: No
Call by Reference: Yes
EXPORTING Parameters details for RSDAS_RFC_BRIDGE_OBJECT_DETAIL
E_T_DETAIL - Table Type for RSDAS_S_VALUE
Data type: RSDAS_T_VALUEOptional: No
Call by Reference: Yes
E_T_MESSAGE - Table Type for RRX_MESG
Data type: RSRD_T_MESSAGEOptional: No
Call by Reference: Yes
E_SUBRC - Return Value from ABAP Statements
Data type: SYSUBRCOptional: No
Call by Reference: Yes
Copy and paste ABAP code example for RSDAS_RFC_BRIDGE_OBJECT_DETAIL Function Module
The ABAP code below is a full code listing to execute function module POPUP_TO_CONFIRM including all data declarations. The code uses the original data declarations rather than the latest in-line data DECLARATION SYNTAX but I have included an ABAP code snippet at the end to show how declarations would look using the newer method of declaring data variables on the fly. This will allow you to compare and fully understand the new inline method. Please note some of the newer syntax such as the @DATA is not available until a later 4.70 service pack (SP8), which i why i have stuck to the origianl for this example.| DATA: | ||||
| lv_e_t_detail | TYPE RSDAS_T_VALUE, " | |||
| lv_i_java_class_name | TYPE RSRPARAMETERVALUE, " | |||
| lv_e_t_message | TYPE RSRD_T_MESSAGE, " | |||
| lv_i_object_type | TYPE RSDAS_OBJECT_TYPE, " | |||
| lv_e_subrc | TYPE SYSUBRC, " | |||
| lv_i_object_id | TYPE RSDAS_OBJECT_ID. " |
|   CALL FUNCTION 'RSDAS_RFC_BRIDGE_OBJECT_DETAIL' "Wrappers for calling the provider: get details |
| EXPORTING | ||
| I_JAVA_CLASS_NAME | = lv_i_java_class_name | |
| I_OBJECT_TYPE | = lv_i_object_type | |
| I_OBJECT_ID | = lv_i_object_id | |
| IMPORTING | ||
| E_T_DETAIL | = lv_e_t_detail | |
| E_T_MESSAGE | = lv_e_t_message | |
| E_SUBRC | = lv_e_subrc | |
| . " RSDAS_RFC_BRIDGE_OBJECT_DETAIL | ||
ABAP code using 7.40 inline data declarations to call FM RSDAS_RFC_BRIDGE_OBJECT_DETAIL
The below ABAP code uses the newer in-line data declarations. This allows you to see the coding differences/benefits of the later inline syntax. Please note some of the newer syntax below, such as the @DATA is not available until 4.70 EHP 8.Search for further information about these or an SAP related objects