MEFG_DELETE_USELESS_FORMSE01 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 MEFG_DELETE_USELESS_FORMSE01 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: Include MEFG_DEL_FORMS_TO_FORMCLASSE01
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
EFG_AUTHORITY_CHECK CALL FUNCTION 'EFG_AUTHORITY_CHECK' EXPORTING X_FORMCLASS = GT_EFRM-FORMCLASS X_WMODE = CO_CHANGE EXCEPTIONS NOT_AUTHORIZED = 1 OTHERS = 2.
EFG_DB_EFCL_SELECT CALL FUNCTION 'EFG_DB_EFCL_SELECT' EXPORTING X_FORMCLASS = GT_EFRM-FORMCLASS * X_LANGU = SY-LANGU * X_ACTUAL = ' ' * IMPORTING * Y_EFCL = * Y_DESCRIPT = * TABLES * YT_EFCLSTR = * YT_EFCLSTRT = EXCEPTIONS FORMCLASS_NOT_FOUND = 1 STRUCTURE_NOT_FOUND = 2 NOT_QUALIFIED = 3 SYSTEM_ERROR = 4 OTHERS = 5.
EFG_DB_FORM_SELECT CALL FUNCTION 'EFG_DB_FORM_SELECT' EXPORTING X_CLIENT = GT_EFRM-CLIENT X_FORMKEY = GT_EFRM-FORMKEY X_ACTUAL = 'X' X_NO_FORMCLASS = 'X' IMPORTING Y_FORM = L_FORM EXCEPTIONS NOT_FOUND = 1 NOT_QUALIFIED = 2 FAILED = 3 OTHERS = 4.
EFG_DB_FORM_UPDATE CALL FUNCTION 'EFG_DB_FORM_UPDATE' EXPORTING X_FORM = L_FORM X_UPD_MODE = CO_UPD_DELETE EXCEPTIONS UPDATE_FAILED = 1 NOT_QUALIFIED = 2 OTHERS = 3.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.