RSDDB_UI_START 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 RSDDB_UI_START into the relevant SAP transaction such as SE37 or SE80.
Associated Function Group:
RSDDB_UI
Released Date:
Not Released
Processing type: Normal fucntion module
CALL FUNCTION 'RSDDB_UI_START' "Start module for transaction RSDDB
* EXPORTING
* i_idx_category = " sy-ucomm Function Code that Triggered PAI
* i_bia_index = " rsddbbiaobject BI Name of Object of BIA Index (InfoCube or InfoObject)
* i_skip_first_screen = RS_C_FALSE " rs_bool Skip the first screen
* i_changemode = " char1 Single-Character Indicator
. " RSDDB_UI_START
The ABAP code below is a full code listing to execute function module RSDDB_UI_START 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_i_idx_category) = 'some text here'.
DATA(ld_i_bia_index) = 'some text here'.
DATA(ld_i_skip_first_screen) = 'some text here'.
DATA(ld_i_changemode) = 'some text here'. . CALL FUNCTION 'RSDDB_UI_START' * EXPORTING * i_idx_category = ld_i_idx_category * i_bia_index = ld_i_bia_index * i_skip_first_screen = ld_i_skip_first_screen * i_changemode = ld_i_changemode . " RSDDB_UI_START
IF SY-SUBRC EQ 0. "All OK ENDIF.
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_i_idx_category | TYPE SY-UCOMM , |
| ld_i_bia_index | TYPE RSDDBBIAOBJECT , |
| ld_i_skip_first_screen | TYPE RS_BOOL , |
| ld_i_changemode | TYPE CHAR1 . |
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 RSDDB_UI_START or its description.
RSDDB_UI_START - Start module for transaction RSDDB RSDDB_UI_PROT_SELECT - Call of the screen to select the application log RSDDB_UI_INDEX_DISPLAY - SE16 for Index Data RSDDB_F4_BIA_INDEX - F4 input help for BIA index types RSDC_VIOBJ_TO_SGIOBJ - Converts InfoObjects of type RSD_S_VIOBJ to RSD_S_SGIOBJ RSDC_VIOBJ_TO_IOBJ_SG - Converts InfoObjects from Type RSD_S_VIOBJ to RSDO_S_IOBJ_SG (OO)