SAP Function Modules

RSRD_X_GET_INFO_PROXY SAP Function module - Read information about a Java BI object







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
remote enabled module settings


Pattern for FM RSRD_X_GET_INFO_PROXY - RSRD X GET INFO PROXY





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

ABAP code example for Function Module 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).

DATA:
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 .

DATA(ld_i_object_type) = 'Check type of data required'.
DATA(ld_i_object_id) = 'Check type of data required'.
DATA(ld_i_system_alias) = 'Check type of data required'.
DATA(ld_i_parameter_container_id) = 'some text here'.
DATA(ld_i_langu) = 'some text here'.
DATA(ld_i_country) = 'some text here'.

"populate fields of struture and append to itab
append wa_c_t_parameter_x to it_c_t_parameter_x.

"populate fields of struture and append to itab
append wa_e_t_statistic_info to it_e_t_statistic_info.

"populate fields of struture and append to itab
append wa_i_t_message to it_i_t_message.

"populate fields of struture and append to itab
append wa_e_t_message to it_e_t_message. . CALL FUNCTION 'RSRD_X_GET_INFO_PROXY' EXPORTING i_object_type = ld_i_object_type i_object_id = ld_i_object_id i_system_alias = ld_i_system_alias i_parameter_container_id = ld_i_parameter_container_id * i_langu = ld_i_langu * i_country = ld_i_country IMPORTING e_subrc = ld_e_subrc TABLES c_t_parameter_x = it_c_t_parameter_x e_t_statistic_info = it_e_t_statistic_info i_t_message = it_i_t_message e_t_message = it_e_t_message . " RSRD_X_GET_INFO_PROXY
IF SY-SUBRC EQ 0. "All OK ENDIF.







ABAP code to compare 7.40 inline data declaration with original syntax

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 .

ld_i_object_type = 'some text here'.

"populate fields of struture and append to itab
append wa_c_t_parameter_x to it_c_t_parameter_x.
ld_i_object_id = 'some text here'.

"populate fields of struture and append to itab
append wa_e_t_statistic_info to it_e_t_statistic_info.
ld_i_system_alias = 'Check type of data required'.

"populate fields of struture and append to itab
append wa_i_t_message to it_i_t_message.
ld_i_parameter_container_id = 'some text here'.

"populate fields of struture and append to itab
append wa_e_t_message to it_e_t_message.
ld_i_langu = 'some text here'.
ld_i_country = 'some text here'.

Contribute (Add Comments)

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.