MEWKEF99 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 MEWKEF99 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!
EWU_PAKET_GET CALL FUNCTION 'EWU_PAKET_GET' CHANGING paket = lcx_cbop-general-paket EXCEPTIONS active_paket_not_found = 1 OTHERS = 2.
POPUP_GET_VALUES_DB_CHECKED CALL FUNCTION 'POPUP_GET_VALUES_DB_CHECKED' EXPORTING popup_title = l_char IMPORTING returncode = d_retcd TABLES fields = it_sval EXCEPTIONS error_in_fields = 1.
RKE_POPUP_TEXT_DECIDE_VARTEXT CALL FUNCTION 'RKE_POPUP_TEXT_DECIDE_VARTEXT' EXPORTING object_id = 'NA' object = 'MQ416' na_shorttext = 'X' IMPORTING answer = d_answer.
POPUP_GET_VALUES_DB_CHECKED CALL FUNCTION 'POPUP_GET_VALUES_DB_CHECKED' EXPORTING popup_title = ld_text IMPORTING returncode = d_retcd TABLES fields = it_sval EXCEPTIONS error_in_fields = 1.
GET_EWWU_WAERS_40 CALL FUNCTION 'GET_EWWU_WAERS_40' EXPORTING confirm_cust = 'X' IMPORTING eurowaers = pcx_euro-tcurr eurokurst = pcx_euro-kurst eurodatum = pcx_euro-datum euroinvdt = pcx_euro-gdatu TABLES ewucurrs = pcx_euro-cur EXCEPTIONS customizing_not_found = 1 customizing_not_confirmed = 2 no_waers_found = 3 OTHERS = 4.
POPUP_TO_CONFIRM_STEP CALL FUNCTION 'POPUP_TO_CONFIRM_STEP' EXPORTING textline1 = text-021 titel = p_title IMPORTING answer = d_answer.
READ_EXCHANGE_RATE CALL FUNCTION 'READ_EXCHANGE_RATE' EXPORTING date = sy-datum foreign_currency = p_tcurr local_currency = lwa_curs-waers type_of_rate = 'M' IMPORTING exchange_rate = lwa_curs-ukurs foreign_factor = lwa_curs-ffact local_factor = lwa_curs-tfact EXCEPTIONS no_rate_found = 1 no_factors_found = 2 no_spread_found = 3 derived_2_times = 4 overflow = 5 OTHERS = 6.
READ_EXCHANGE_RATE CALL FUNCTION 'READ_EXCHANGE_RATE' EXPORTING date = sy-datum foreign_currency = lwa_curs-waers local_currency = p_tcurr type_of_rate = 'M' IMPORTING exchange_rate = lwa_curs-ukurs foreign_factor = lwa_curs-ffact local_factor = lwa_curs-tfact EXCEPTIONS no_rate_found = 1 no_factors_found = 2 no_spread_found = 3 derived_2_times = 4 overflow = 5 OTHERS = 6.
MAINTAIN_PAST_EXRATES * CALL FUNCTION 'MAINTAIN_PAST_EXRATES' * IMPORTING * maintainance_ok = g_flag_pr_ok * TABLES * rg_waers = rgx_waers * EXCEPTIONS * maintainance_canceled = 1 * euro_customizing_incomplete = 2 * no_waers = 3 * no_authority = 4.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.