FGRW2F12 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 FGRW2F12 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: Generate Selection Screen
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
G_SETCLASS_GET_TABLE_FIELD CALL FUNCTION 'G_SETCLASS_GET_TABLE_FIELD' EXPORTING setclass = variables-setclass IMPORTING class_prop = class_prop.
G_FIELD_READ CALL FUNCTION 'G_FIELD_READ' EXPORTING table = i_s_common_fields-like_table fieldname = i_s_common_fields-like_field IMPORTING field_attr = l_s_dfies EXCEPTIONS not_found = 1.
G_MATCHCODE_GET CALL FUNCTION 'G_MATCHCODE_GET' EXPORTING tabname = i_s_common_fields-like_table fieldname = i_s_common_fields-like_field IMPORTING mc_object = mc_object EXCEPTIONS no_mc_object_found = 1.
G_FIELD_READ CALL FUNCTION 'G_FIELD_READ' EXPORTING * table = l_s_common_fields-like_table "DEL 395638 * fieldname = l_s_common_fields_like_field "DEL 395638 table = l_like_table "INS 395638 fieldname = l_like_field "INS 395638 IMPORTING field_attr = l_s_dfies EXCEPTIONS not_found = 1.
G_MATCHCODE_GET CALL FUNCTION 'G_MATCHCODE_GET' EXPORTING * tabname = l_s_common_fields-like_table "DEL 395638 * fieldname = l_s_common_fields-like_field "DEL 395638 tabname = l_like_table "INS 395638 fieldname = l_like_field "INS 395638 IMPORTING mc_object = mc_object EXCEPTIONS no_mc_object_found = 01.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.