MKPU2F50 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 MKPU2F50 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!
K_COBK_TAB_CURRENCY_FILL CALL FUNCTION 'K_COBK_TAB_CURRENCY_FILL' TABLES itcobk = lt_cobk.
MESSAGE_SET_DEFAULTLINE CALL FUNCTION 'MESSAGE_SET_DEFAULTLINE' EXPORTING ARBGB = 'KP' msgty = 'I' TXTNR = '506' ZEILE = '123' MODIFY = 'X' EXCEPTIONS OTHERS = 1.
K_OBJECTS_MASTER_READ CALL FUNCTION 'K_OBJECTS_MASTER_READ' TABLES coiob_tab = i_coiob i_periods = perio_tab EXCEPTIONS error_occurs = 1 wrong_object = 2.
MESSAGES_COUNT CALL FUNCTION 'MESSAGES_COUNT' EXPORTING severity_from = 8 severity_to = 16 IMPORTING count = ld_count1.
RWIN_CHECK CALL FUNCTION 'RWIN_CHECK' EXPORTING gjahr = rkpu2-gjahr process = 'K-PLAN1 ' event = 'PRUEFEN ' TABLES tkomp = tkomp_pruefen EXCEPTIONS OTHERS = 0.
RWIN_CHECK CALL FUNCTION 'RWIN_CHECK' EXPORTING gjahr = rkpu2-gjahr process = 'K-PLAN1 ' event = 'PRUEF_PS' TABLES tkomp = tkomp_pruefen EXCEPTIONS OTHERS = 0.
MESSAGES_COUNT CALL FUNCTION 'MESSAGES_COUNT' EXPORTING severity_from = 8 severity_to = 16 IMPORTING count = ld_count2 max_severity = ld_severity.
POPUP_TO_CONFIRM_STEP CALL FUNCTION 'POPUP_TO_CONFIRM_STEP' EXPORTING titel = text-100 "Integrationsprüfungen textline1 = text-101 "Fehler festgestellt textline2 = text-102 "Sichern? IMPORTING answer = answer.
RWIN_CHECK CALL FUNCTION 'RWIN_CHECK' EXPORTING gjahr = rkpu2-gjahr process = 'K-PLAN1 ' event = 'FERTI_PS' TABLES tkomp = tkomp_ferti_ps EXCEPTIONS OTHERS = 0.
RK_PL_REVAL_POST CALL FUNCTION 'RK_PL_REVAL_POST' IN UPDATE TASK EXPORTING datum = sy-datum uzeit = sy-uzeit uname = sy-uname vrgng = act-activity_k * IT823C = IT823C it823c = help_t823c TABLES it823d = ut823d icobk = ucobk icoeja = ucoeja icobk_auf = ucobk_auf icoeja_auf = ucoeja_auf.
FIRST_DAY_IN_PERIOD_GET CALL FUNCTION 'FIRST_DAY_IN_PERIOD_GET' EXPORTING i_gjahr = rkpu2-gjahr i_periv = tka01-lmona i_poper = perio IMPORTING e_date = perio_tab-datab EXCEPTIONS t009_notfound = 1 t009b_notfound = 2.
LAST_DAY_IN_PERIOD_GET CALL FUNCTION 'LAST_DAY_IN_PERIOD_GET' EXPORTING i_gjahr = rkpu2-gjahr i_periv = tka01-lmona i_poper = perio IMPORTING e_date = perio_tab-datbi EXCEPTIONS t009_notfound = 1 t009b_notfound = 2 input_false = 1.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.