MPACAF04 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 MPACAF04 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!
RH_INTERNAL_ACTIVE_WF_PLVAR CALL FUNCTION 'RH_INTERNAL_ACTIVE_WF_PLVAR' EXPORTING ACT_MANDT = SY-MANDT IMPORTING ACTIVE_PLVAR = l_active_plvar EXCEPTIONS NO_ACTIVE_PLVAR_FOUND = 1 OTHERS = 2.
HR_GET_OBJECTS_DIALOG CALL FUNCTION 'HR_GET_OBJECTS_DIALOG' EXPORTING window_title = 'Personenselektion'(f70) * STARTING_X = 1 * STARTING_Y = 1 * ENDING_X = 110 * ENDING_Y = 30 * CUSTOM_EXIT_BUTTON = ' ' * CE_BUTTON_TEXT = * SHOW_VALUE_SELECTION = 'X' * SHOW_VALUE_OUTPUT = ' ' * SHOW_TEXT_SELECTION = ' ' * SHOW_TEXT_OUTPUT = ' ' * SHOW_SELECTION = ' ' * SHOW_OUTPUT = ' ' * LOCK_EVALUATION_PERIOD = ' ' * HIDE_EVALUATION_PERIOD = ' ' * LOCK_EVALUATION_SET = ' ' * HIDE_EVALUATION_SET = ' ' * RECURSIVE_SELECTION_POSSIBLE = 'X' * HIDE_FOOTER = ' ' infoset = l_sgname workspace = l_wsid plvar = l_active_plvar otype = c_otype * GROUPID = ' ' * SELID_FIXED = ' ' * SELID_IN = * SELID_FOR_SAVE = * SAVE_SELID_ON_EXIT = ' ' * SAVE_WITHOUT_GROUPID = ' ' * NO_SAVE_MESSAGE = ' ' * SELECT_ON_EXIT = ' ' objects_in = li_pernr_in * condition_table_in = * OUTPUT_FIELDS_IN = * DOCKING_RATIO = 40 IMPORTING * OUTPUT_FIELDS_OUT = * SELID_SAVED_OUT = objects_out = li_pernr_out CHANGING begda = c_refda endda = c_refda * TIMED = ' ' * TRANSPORT = 'X' EXCEPTIONS action_canceled = 1 ce_button_pressed = 2 * NO_FUNCAREA_FOR_SELECTION = 3 "CHBAL0K051095 BEGDA_GREATER_ENDDA = 4 INTERNAL_ERROR = 5 NO_HR_FUNCAREA = 6 NO_SELECTION_FOR_FUNCAREA = 7 WRONG_OTYPE_IN_FUNCAREA = 8 FUNCAREA_NOT_FOUND = 9 ONLY_SELID_OR_CONDITIONS = 10 MISSING_SELID_FIELD_IN_FA = 11 OTHERS = 12.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.