FGRWIE02 is a standard ABAP INCLUDE 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 FGRWIE02 into the relevant SAP transactions such as SE38 or SE80
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.
Title: New Report Call
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
G_REPORT_GET_DIMENSIONS CALL FUNCTION 'G_REPORT_GET_DIMENSIONS' EXPORTING dim_type = 'S' TABLES dim_data_tab = dim_data_tab EXCEPTIONS rc_interface_not_initialized = 1 rc_invalid_dim_type = 2 OTHERS = 3.
G_FIELD_READ CALL FUNCTION 'G_FIELD_READ' EXPORTING add_flag = 'X' fieldname = wa_dim_data-f_name table = rep_table IMPORTING field_attr = field_attr.
G_REPORT_GET_DIMENSION_TABLE CALL FUNCTION 'G_REPORT_GET_DIMENSION_TABLE' EXPORTING dim_field = wa_dim_data-f_name TABLES val_tab = val_tab.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.