SAP Reports / Programs | Basis Components | BW Service API(BC-BW) SAP BC

RSSG_BROWSER SAP ABAP Report - Simple Data Browser with ALV







RSSG_BROWSER is a standard Executable ABAP Report available within your SAP system (depending on your version and release level). It is used for Simple Data Browser This program provides a simple data Browser for any table of your choice...see full standard documentation available for this report. Also check out the submitted Comments related to this SAP report and the details below to see which OBJECTS it interacts with such as TABLES, FUNCTION MODULES, INCLUDES ETC.

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


Transaction Code(s):

Below is a list of transaction codes which are relevant to this SAP report

RSSG_BROWSER - Simple Data Browser


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 RSSG_BROWSER. "Basic submit
SUBMIT RSSG_BROWSER AND RETURN. "Return to original report after report execution complete
SUBMIT RSSG_BROWSER VIA SELECTION-SCREEN. "Display selection screen of submitted report to user
    See more syntax options for the ABAP SUBMIT statement


Text pool values


Selection Text: P_TABNM = D Table Name
Title: Simple Data Browser with ALV


INCLUDES used within this REPORT RSSG_BROWSER

No INCLUDES are used within this REPORT code!


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_HELP_HANDLING CALL FUNCTION 'RS_HELP_HANDLING' EXPORTING dynpfield = 'P_TABNM' dynpname = sy-dynnr object = 'TB ' progname = g_repid suppress_selection_screen = 'X'.

RSS_PROGRAM_GENERATE CALL FUNCTION 'RSS_PROGRAM_GENERATE' EXPORTING i_uni_idc25 = g_guid25 i_program_class = g_c_progclass_browser i_timestamp = g_timestamp i_db_commit = rssg_c_true i_use_metaclass = rssg_c_true i_with_header_comment = rssg_c_true IMPORTING e_program_name = g_program_name e_program_generated = g_program_generated EXCEPTIONS invalid_program_class = 1 invalid_unique_id = 2 generation_error = 3 template_not_found = 4 template_syntax_error = 5 program_syntax_error = 6 foreign_lock = 7 system_failure = 8 internal_error = 9.

RSS_SYSTEM_GET_UNIQUE_ID CALL FUNCTION 'RSS_SYSTEM_GET_UNIQUE_ID' IMPORTING e_uni_idc25 = l_s_rssgtbid-guid25.

RSS_PROGRAM_CREATE CALL FUNCTION 'RSS_PROGRAM_CREATE' EXPORTING i_uni_idc25 = l_s_rssgtbid-guid25 i_program_class = g_c_progclass_browser.

DB_COMMIT CALL FUNCTION 'DB_COMMIT'.

DDIF_FIELDINFO_GET CALL FUNCTION 'DDIF_FIELDINFO_GET' EXPORTING tabname = i_tabname IMPORTING x030l_wa = l_s_x030l EXCEPTIONS not_found = 1 internal_error = 2 OTHERS = 3.

DDIF_FIELDINFO_GET CALL FUNCTION 'DDIF_FIELDINFO_GET' EXPORTING tabname = e_tabname TABLES dfies_tab = e_t_fields EXCEPTIONS not_found = 2 internal_error = 3 OTHERS = 4.

RSS_PROGRAM_DELETE CALL FUNCTION 'RSS_PROGRAM_DELETE' EXPORTING i_uni_idc25 = l_guid25 i_program_class = g_c_progclass_browser i_with_variants = rssg_c_true i_no_commit = rssg_c_true EXCEPTIONS invalid_program_class = 1 deletion_rejected = 2 OTHERS = 3.

DB_COMMIT CALL FUNCTION 'DB_COMMIT'.



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 RSSG_BROWSER or its description.