MP1794F1 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 MP1794F1 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 MP1794F1
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.
CONVERT_DATE_TO_EXTERNAL CALL FUNCTION 'CONVERT_DATE_TO_EXTERNAL' EXPORTING date_internal = p1794-begda IMPORTING date_external = lv_begda EXCEPTIONS date_internal_is_invalid = 1 OTHERS = 2.
CONVERT_DATE_TO_EXTERNAL CALL FUNCTION 'CONVERT_DATE_TO_EXTERNAL' EXPORTING date_internal = p1794-endda IMPORTING date_external = lv_endda EXCEPTIONS date_internal_is_invalid = 1 OTHERS = 2.
POPUP_TO_CONFIRM CALL FUNCTION 'POPUP_TO_CONFIRM' EXPORTING titlebar = lv_title * DIAGNOSE_OBJECT = ' ' text_question = lv_question * TEXT_BUTTON_1 = 'Ja'(001) * ICON_BUTTON_1 = ' ' * TEXT_BUTTON_2 = 'Nein'(002) * ICON_BUTTON_2 = ' ' default_button = '1' display_cancel_button = abap_false * USERDEFINED_F1_HELP = ' ' * START_COLUMN = 25 * START_ROW = 6 * POPUP_TYPE = * IV_QUICKINFO_BUTTON_1 = ' ' * IV_QUICKINFO_BUTTON_2 = ' ' IMPORTING answer = lv_answer EXCEPTIONS text_not_found = 1 OTHERS = 2.
REUSE_ALV_POPUP_TO_SELECT * CALL FUNCTION 'REUSE_ALV_POPUP_TO_SELECT' * EXPORTING ** i_title = gv_title * i_zebra = 'X' ** I_SCREEN_START_COLUMN = 0 ** I_SCREEN_START_LINE = 0 ** I_SCREEN_END_COLUMN = 0 ** I_SCREEN_END_LINE = 0 * i_checkbox_fieldname = 'SELECT' * i_scroll_to_sel_line = 'X' * i_tabname = '1' * it_fieldcat = lt_fieldcat * i_callback_program = sy-repid * is_private = ls_private * IMPORTING * es_selfield = ls_selfield * e_exit = l_exit * TABLES * t_outtab = pt_f4table * EXCEPTIONS * program_error = 1 * OTHERS = 2.
F4IF_INT_TABLE_VALUE_REQUEST **** CALL FUNCTION 'F4IF_INT_TABLE_VALUE_REQUEST' **** EXPORTING **** retfield = pv_fldname1 **** dynpprog = sy-repid **** dynpnr = sy-dynnr ***** dynprofield = 'TAB' ***** window_title = gv_title **** value_org = 'S' **** multiple_choice = abap_true **** TABLES **** value_tab = pt_f4table **** return_tab = lt_rettab **** EXCEPTIONS **** parameter_error = 1 **** no_values_found = 2 **** OTHERS = 3.
HR_ES_CHECK_NIF_CIF CALL FUNCTION 'HR_ES_CHECK_NIF_CIF' EXPORTING p_valor = pv_nif p_check_nif = abap_true p_check_cif = abap_true p_check_nie = abap_true IMPORTING p_subrc = pv_subrc EXCEPTIONS program_error = 1 OTHERS = 2.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.