MEREP_SBUILDER_GENFORMS03 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 MEREP_SBUILDER_GENFORMS03 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.
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
MEREP_SCENARIO_COPY CALL FUNCTION 'MEREP_SCENARIO_COPY' EXPORTING scenario = prf_syncbo EXCEPTIONS * no_scenario_found = 1 * blank_scenario = 2 OTHERS = 0 .
POPUP_TO_CONFIRM_STEP CALL FUNCTION 'POPUP_TO_CONFIRM_STEP' EXPORTING defaultoption = gcs_answer-no textline1 = ldf_textline1 textline2 = text-126 titel = text-125 cancel_display = gcf_off IMPORTING answer = ldf_answer.
POPUP_TO_CONFIRM_STEP CALL FUNCTION 'POPUP_TO_CONFIRM_STEP' EXPORTING defaultoption = gcs_answer-no textline1 = text-135 *** textline2 = text-126 titel = prs_401-scenario cancel_display = gcf_on IMPORTING answer = ldf_answer.
MEREP_RDB_GENERATOR CALL FUNCTION 'MEREP_RDB_GENERATOR' EXPORTING i_syncbo = prs_401-scenario.
MEREP_MAIN_GENERATOR CALL FUNCTION 'MEREP_MAIN_GENERATOR' EXPORTING scenario = prs_401-scenario IMPORTING return = lds_return.
MEREP_RDB_D01_RESET CALL FUNCTION 'MEREP_RDB_D01_RESET' * in update task EXPORTING scenario = prf_syncbo.
MEREP_RDB_S01_RESET CALL FUNCTION 'MEREP_RDB_S01_RESET' * in update task EXPORTING scenario = prf_syncbo.
MEREP_RDB_T01_RESET CALL FUNCTION 'MEREP_RDB_T01_RESET' * in update task EXPORTING scenario = prf_syncbo.
MEREP_RDB_V01_RESET CALL FUNCTION 'MEREP_RDB_V01_RESET' * in update task EXPORTING i_syncbo = prf_syncbo.
MEREP_RDB_D01_EXIST CALL FUNCTION 'MEREP_RDB_D01_EXIST' EXPORTING i_syncbo = prf_syncbo EXCEPTIONS not_exist = 1.
MEREP_RDB_S01_EXIST CALL FUNCTION 'MEREP_RDB_S01_EXIST' EXPORTING i_syncbo = prf_syncbo EXCEPTIONS not_exist = 1.
MEREP_RDB_T01_EXIST CALL FUNCTION 'MEREP_RDB_T01_EXIST' EXPORTING i_syncbo = prf_syncbo EXCEPTIONS not_exist = 1.
MEREP_RDB_V01_EXIST CALL FUNCTION 'MEREP_RDB_V01_EXIST' EXPORTING i_syncbo = prf_syncbo EXCEPTIONS not_exist = 1.
MEREP_EXIT_HANDLING CALL FUNCTION 'MEREP_EXIT_HANDLING' EXPORTING scenario = prs_401-scenario gfmtype = ldf_gfmtype EXCEPTIONS scenario_not_specified = 1 invalid_scenario = 2 generate_first = 3 OTHERS = 4.
F4IF_INT_TABLE_VALUE_REQUEST CALL FUNCTION 'F4IF_INT_TABLE_VALUE_REQUEST' EXPORTING retfield = 'GFMTYPE' value_org = 'C' TABLES value_tab = ldt_value field_tab = ldt_dfies return_tab = ldt_return.
F4IF_INT_TABLE_VALUE_REQUEST CALL FUNCTION 'F4IF_INT_TABLE_VALUE_REQUEST' EXPORTING retfield = 'GFUNCNAME' value_org = 'C' TABLES value_tab = ldt_value field_tab = ldt_dfies return_tab = ldt_return.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.