MNT11FCN 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 MNT11FCN 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 MNT11FCN
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
POPUP_TO_CONFIRM CALL FUNCTION 'POPUP_TO_CONFIRM' EXPORTING titlebar = text-s11 * DIAGNOSE_OBJECT = ' ' text_question = text-s10 * TEXT_BUTTON_1 = 'Ja'(001) * ICON_BUTTON_1 = ' ' * TEXT_BUTTON_2 = 'Nein'(002) * ICON_BUTTON_2 = ' ' * DEFAULT_BUTTON = '1' * DISPLAY_CANCEL_BUTTON = 'X' * USERDEFINED_F1_HELP = ' ' * START_COLUMN = 25 * START_ROW = 6 * POPUP_TYPE = * IV_QUICKINFO_BUTTON_1 = ' ' * IV_QUICKINFO_BUTTON_2 = ' ' IMPORTING answer = l_reply * TABLES * PARAMETER = EXCEPTIONS text_not_found = 1 OTHERS = 2.
SCROLLING_IN_TABLE CALL FUNCTION 'SCROLLING_IN_TABLE' EXPORTING entry_act = tc_0331-top_line * ENTRY_FROM = 1 entry_to = sy-tfill * LAST_PAGE_FULL = 'X' loops = line_count ok_code = ok-code * OVERLAPPING = ' ' * PAGE_ACT = 0 * PAGE_GO = 0 IMPORTING * entries_sum = entry_new = tc_0331-top_line * pages_sum = * page_new = EXCEPTIONS no_entry_or_page_act = 1 no_entry_to = 2 no_ok_code_or_page_go = 3 OTHERS = 4.
ISH_NTDC_READ CALL FUNCTION 'ISH_NTDC_READ' EXPORTING i_einri = ntpk-einri i_tarif = ntpk-tarif i_talst = ntpk-talst IMPORTING et_ntdc = lt_ntdc EXCEPTIONS einri_not_found = 1 service_not_found = 2 OTHERS = 3.
ISH_NTDC_DB_UPDATE CALL FUNCTION 'ISH_NTDC_DB_UPDATE' IN UPDATE TASK EXPORTING * I_TCODE = SY-TCODE * I_USER = SY-UNAME * I_DATE = SY-DATUM * I_TIME = SY-UZEIT it_xntdc = lt_rvntdc it_yntdc = lt_rvntdc.
F4IF_INT_TABLE_VALUE_REQUEST CALL FUNCTION 'F4IF_INT_TABLE_VALUE_REQUEST' EXPORTING retfield = 'VTRTY' value_org = 'S' dynpprog = 'SAPMNT11' dynpnr = '0331' dynprofield = 'RNTDC_CN-VTRTY' TABLES value_tab = lt_vtrty_t return_tab = ret_tab EXCEPTIONS parameter_error = 1 no_values_found = 2 OTHERS = 3.
ISH_TNK01_CHECK CALL FUNCTION 'ISH_TNK01_CHECK' EXPORTING ss_einri = ntpk-einri ss_tarid = ntpk-tarif IMPORTING ss_tnk01 = ls_tnk01 EXCEPTIONS not_found = 1 OTHERS = 2.
ISH_VTRTY_CHECK CALL FUNCTION 'ISH_VTRTY_CHECK' EXPORTING ss_einri = ntpk-einri ss_vtrty = rntdc_cn-vtrty IMPORTING ss_tn16 = ls_tn16 EXCEPTIONS not_found = 1 OTHERS = 2.
ISH_READ_NKTR CALL FUNCTION 'ISH_READ_NKTR' EXPORTING kostr = rntdc_cn-kostr IMPORTING nktr_e = ls_nktr EXCEPTIONS ngpa_not_found = 1 ngpa_no_authority = 2 not_found = 3 no_authority = 4 missing_institution = 5 missing_par_for_copay = 6 OTHERS = 7.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.