GENFORMS 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 GENFORMS 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.
'***INCLUDE CIFII001 .'.
No SAP DATABASE tables are accessed within this REPORT code!
DDIF_FIELDINFO_GET CALL FUNCTION 'DDIF_FIELDINFO_GET' EXPORTING tabname = is_cifobjinfo-f1tabname fieldname = is_cifobjinfo-f1fldname TABLES dfies_tab = lt_dfies EXCEPTIONS OTHERS = 1.
DDIF_FIELDINFO_GET CALL FUNCTION 'DDIF_FIELDINFO_GET' EXPORTING tabname = is_cifselopt-tabname fieldname = is_cifselopt-fieldname TABLES dfies_tab = lt_fieldinfo EXCEPTIONS not_found = 1 internal_error = 2 OTHERS = 3.
CIF_PROGRAM_INSERT CALL FUNCTION 'CIF_PROGRAM_INSERT' EXPORTING application = 'C' * AUTHORIZATION_GROUP = ' ' development_class = i_devclass * EDIT_LOCK = ' ' * LOG_DB = ' ' program_name = i_name program_type = i_type temporary = 'X' title_string = i_title transport_number = gv_corrnum TABLES SOURCE = it_code EXCEPTIONS already_exists = 1 cancelled = 2 name_not_allowed = 3 permission_error = 4 OTHERS = 5.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.