MEREPMI_MSD_FORMS_300 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 MEREPMI_MSD_FORMS_300 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!
SCROLLING_IN_TABLE CALL FUNCTION 'SCROLLING_IN_TABLE' EXPORTING entry_act =
-top_line entry_from = 1 entry_to = -lines last_page_full = 'X' loops = ok_code = p_ok overlapping = 'X' IMPORTING entry_new = l_tc_new_top_line EXCEPTIONS * NO_ENTRY_OR_PAGE_ACT = 01 * NO_ENTRY_TO = 02 * NO_OK_CODE_OR_PAGE_GO = 03 OTHERS = 0.
MEREP_GET_SCENARIO CALL FUNCTION 'MEREP_GET_SCENARIO' EXPORTING language = sy-langu all_flag = 'X' * PUBLISHED_ONLY = ' ' * IMPORTING * RETURN = TABLES scenario_id = lt_syncbo_si_class scenario = lt_scenario_class scenario_relation = lt_scenario_rl_class structure_list = lt_syncbo_sl_class EXCEPTIONS invalid_scenario = 1 OTHERS = 2 .
DDIF_FIELDINFO_GET CALL FUNCTION 'DDIF_FIELDINFO_GET' EXPORTING tabname = p_tabname TABLES dfies_tab = lt_fieldtab * FIXED_VALUES = EXCEPTIONS not_found = 1 internal_error = 2 OTHERS = 3 .
F4IF_INT_TABLE_VALUE_REQUEST CALL FUNCTION 'F4IF_INT_TABLE_VALUE_REQUEST' EXPORTING retfield = 'SCENARIO' "Feld das zurueckgeliefert wird value_org = 'S' "Struktur multiple_choice = 'X' "Mehrfachauswahl callback_form = space "'F4CALLBACK' callback_program = sy-repid TABLES value_tab = pt_outtab "Werte pro Zeile field_tab = pt_fieldtab "Felder pro zeile return_tab = pt_returntab."Wertrueckgabe
MI_LIST_DEPLOYMENTS CALL FUNCTION 'MI_LIST_DEPLOYMENTS' "#EC * TABLES i_valuetab = lt_valuetab e_returntable = lt_returntab EXCEPTIONS valuetab_initial = 1 OTHERS = 2.
POPUP_TO_CONFIRM CALL FUNCTION 'POPUP_TO_CONFIRM' EXPORTING titlebar = p_titel * DIAGNOSE_OBJECT = ' ' text_question = p_question text_button_1 = text-003 "Ja text_button_2 = text-004 "Nein default_button = '2' display_cancel_button = space * USERDEFINED_F1_HELP = ' ' start_column = 25 start_row = 6 popup_type = 'I' IMPORTING answer = l_answer * TABLES * PARAMETER = EXCEPTIONS text_not_found = 1 OTHERS = 2 .
MI_MSD_CHECK_STRING_OF_CODE CALL FUNCTION 'MI_MSD_CHECK_STRING_OF_CODE' EXPORTING i_namespace = p_namespace i_name = p_name i_version = p_version EXCEPTIONS namespace_illegal = 1 name_illegal = 2 version_illegal = 3 no_values_delivered = 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.