RSRD_X_GET_INFO_PROXY is a standard SAP function module available within R/3 SAP systems depending on your version and release level. Below is the pattern details for this FM showing its interface including any import and export parameters, exceptions etc as well as any documentation contributions (Comments) specific to the object.
See here to view full function module documentation and code listing, simply by entering the name RSRD_X_GET_INFO_PROXY into the relevant SAP transaction such as SE37 or SE80.
Associated Function Group:
RSRD_X_INSPECTION
Released Date:
Not Released
Processing type: Remote-Enabled
CALL FUNCTION 'RSRD_X_GET_INFO_PROXY' "Read information about a Java BI object
EXPORTING
i_object_type = " rsrd_object_type Object Type of BW Reporting Object in Broadcasting Framework
i_object_id = " rsrd_object_id ID of a BW Reporting Object in the Broadcasting Framework
i_system_alias = " rsrd_system_alias SLD System Alias
i_parameter_container_id = " rsrd_rfc_key_id RFC Schnittstelle: ID for Additionally Inserted Keys
* i_langu = " laiso Language According to ISO 639
* i_country = " intca Country ISO code
IMPORTING
e_subrc = " sysubrc Return Value, Return Value after ABAP Statements
TABLES
c_t_parameter_x = " rsrd_s_parameter_x Parameter Structure (RFC-enabled with Additional Key)
e_t_statistic_info = " rssta_s_eventinput OLAP Statistics: Mass Insert of Event Data
i_t_message = " bics_prov_message Message
e_t_message = " bics_prov_message Message
. " RSRD_X_GET_INFO_PROXY
The ABAP code below is a full code listing to execute function module RSRD_X_GET_INFO_PROXY including all data declarations. The code uses 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 original method of declaring data variables up front. 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).
| ld_e_subrc | TYPE SYSUBRC , |
| it_c_t_parameter_x | TYPE STANDARD TABLE OF RSRD_S_PARAMETER_X,"TABLES PARAM |
| wa_c_t_parameter_x | LIKE LINE OF it_c_t_parameter_x , |
| it_e_t_statistic_info | TYPE STANDARD TABLE OF RSSTA_S_EVENTINPUT,"TABLES PARAM |
| wa_e_t_statistic_info | LIKE LINE OF it_e_t_statistic_info , |
| it_i_t_message | TYPE STANDARD TABLE OF BICS_PROV_MESSAGE,"TABLES PARAM |
| wa_i_t_message | LIKE LINE OF it_i_t_message , |
| it_e_t_message | TYPE STANDARD TABLE OF BICS_PROV_MESSAGE,"TABLES PARAM |
| wa_e_t_message | LIKE LINE OF it_e_t_message . |
The below ABAP code uses the older none in-line data declarations. This allows you to see the coding differences/benefits of the later inline syntax. It may also be useful if you are using an older version of SAP as some of the newer syntax above, such as the @DATA is not available until 4.70 EHP 8.
DATA:
| ld_e_subrc | TYPE SYSUBRC , |
| ld_i_object_type | TYPE RSRD_OBJECT_TYPE , |
| it_c_t_parameter_x | TYPE STANDARD TABLE OF RSRD_S_PARAMETER_X , |
| wa_c_t_parameter_x | LIKE LINE OF it_c_t_parameter_x, |
| ld_i_object_id | TYPE RSRD_OBJECT_ID , |
| it_e_t_statistic_info | TYPE STANDARD TABLE OF RSSTA_S_EVENTINPUT , |
| wa_e_t_statistic_info | LIKE LINE OF it_e_t_statistic_info, |
| ld_i_system_alias | TYPE RSRD_SYSTEM_ALIAS , |
| it_i_t_message | TYPE STANDARD TABLE OF BICS_PROV_MESSAGE , |
| wa_i_t_message | LIKE LINE OF it_i_t_message, |
| ld_i_parameter_container_id | TYPE RSRD_RFC_KEY_ID , |
| it_e_t_message | TYPE STANDARD TABLE OF BICS_PROV_MESSAGE , |
| wa_e_t_message | LIKE LINE OF it_e_t_message, |
| ld_i_langu | TYPE LAISO , |
| ld_i_country | TYPE INTCA . |
Please help keep this info upto date and use the comments section below to add useful hints, tips and information specific to this SAP function. This will then be available for you and other users to easily find by simply searching on the object name RSRD_X_GET_INFO_PROXY or its description.
RSRD_X_GET_INFO_PROXY - Read information about a Java BI object RSRD_X_GET_INFO - Read information about a Java BI object RSRD_X_DISTRIBUTE_PROXY - Distribute a document in Broadcasting RSRD_X_DISTRIBUTE - Distribute a document in Broadcasting RSRD_X_DIALOG_SCHEDULE - Scheduling dialogue RSRD_X_DIALOG_SAVE - Save Dialog