SAP Reports / Programs | Basis Components | ABAP Runtime Environment | Syntax, Compiler, Runtime(BC-ABA-LA) SAP BC

RSSYSTDB SAP ABAP Report - Routines for Generating Selection Screens







RSSYSTDB is a standard Executable ABAP Report available within your SAP system (depending on your version and release level). Below is the basic information available for this SAP report including which OBJECTS it interacts with such as TABLES, FUNCTION MODULES, INCLUDES ETC. Also check out the submitted Comments related to this SAP report or see any standard documentation available.

If you would like to execute this report or see the full code listing simply enter RSSYSTDB into the relevant SAP transactions such as SE38 or SE80


ABAP code to call this SAP report using the submit statement

This report can be called from another progam/report simply by using the ABAP SUBMIT statement, see below for example ABAP code snipts of how to do this.






SUBMIT RSSYSTDB. "Basic submit
SUBMIT RSSYSTDB AND RETURN. "Return to original report after report execution complete
SUBMIT RSSYSTDB VIA SELECTION-SCREEN. "Display selection screen of submitted report to user
    See more syntax options for the ABAP SUBMIT statement


Text pool values


Title: Routines for Generating Selection Screens
Text Symbol: 001 = To
Text Symbol: 100 = More...


INCLUDES used within this REPORT RSSYSTDB

INCLUDE RSDBCOM1.
INCLUDE RSDBCSTY.
INCLUDE RSDBCOM3.


TABLES used within REPORT and the associated SELECT statement:





No SAP DATABASE tables are accessed within this REPORT code!


Function Modules used within report and the associated call statement:

RS_DYNPRO_RELEASE_SET CALL FUNCTION 'RS_DYNPRO_RELEASE_SET' EXPORTING * DYNPRO_RELEASE = '4.02'

RS_SCRP_SORT_FIELDLIST CALL FUNCTION 'RS_SCRP_SORT_FIELDLIST' * EXPORTING * COMPRESS_RELATIVE_POSITIONS = ' ' TABLES f = f.

RS_SCRP_PROP_ADD_TO_PROP_LIST CALL FUNCTION 'RS_SCRP_PROP_ADD_TO_PROP_LIST' EXPORTING P_TEXTFIELD = f-fnam * P_TOOLTIPTEXT_TEXTELEM = * P_TOOLTIPTEXT_VARIABLE = CHANGING p_prop_list = l_props_for_label.

RS_SCRP_PROP_WRITE call function 'RS_SCRP_PROP_WRITE' exporting p_prog = key-program p_dnum = key-screen p_dynprofield = f p_prop_list = l_props_for_label changing p_properties = m[] exceptions * PARAMLIST_ERROR = 1 * PROPLIST_ERROR = 2 OTHERS = 1.

DDIF_NAMETAB_GET CALL FUNCTION 'DDIF_NAMETAB_GET' EXPORTING TABNAME = L_TABLENAME ALL_TYPES = 'X' IMPORTING DTELINFO_WA = L_DTELINFO DDOBJTYPE = L_OBJTYPE EXCEPTIONS NOT_FOUND = 1 OTHERS = 2.

DDIF_NAMETAB_GET CALL FUNCTION 'DDIF_NAMETAB_GET' EXPORTING TABNAME = L_TABLENAME2 ALL_TYPES = 'X' IMPORTING DTELINFO_WA = L_DTELINFO DDOBJTYPE = L_OBJTYPE EXCEPTIONS NOT_FOUND = 1 OTHERS = 2.

DDIF_DOMA_GET call function 'DDIF_DOMA_GET' exporting name = domname importing dd01v_wa = dominfo exceptions others = 1.

DD_DOMVALUES_GET CALL FUNCTION 'DD_DOMVALUES_GET' EXPORTING DOMNAME = P_DOMNAME IMPORTING RC = L_SUBRC TABLES DD07V_TAB = L_DD07V EXCEPTIONS WRONG_TEXTFLAG = 1 OTHERS = 2.

RS_SCRP_PROP_ADD_TO_PROP_LIST CALL FUNCTION 'RS_SCRP_PROP_ADD_TO_PROP_LIST' EXPORTING P_TEXTFIELD = f-fnam * P_TOOLTIPTEXT_TEXTELEM = * P_TOOLTIPTEXT_VARIABLE = CHANGING p_prop_list = lt_sel_op_proplist.

RS_SCRP_PROP_WRITE CALL FUNCTION 'RS_SCRP_PROP_WRITE' EXPORTING p_prog = key-program p_dnum = key-screen p_dynprofield = ls_d021s p_prop_list = lt_sel_op_proplist changing p_properties = m[] EXCEPTIONS * PARAMLIST_ERROR = 1 * PROPLIST_ERROR = 2 OTHERS = 1.

DDIF_FIELDINFO_GET call function 'DDIF_FIELDINFO_GET' exporting tabname = l_tabname lfieldname = l_lfieldname all_types = 'X' tables fixed_values = fixed_values exceptions others = 1.



Contribute (Add Comments)

Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.







The contribute/comments section below therefore offer's an opportunity for anyone to add additional information. This can be anything from useful hints, tips and screen shots to relevant SAP notes or anything else you feel is relevant to this report.

This will then be available for everyone to easily find by simply searching on the report name RSSYSTDB or its description.