PCMSIMX3 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 PCMSIMX3 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!
HR_GET_BUSINESS_ADD_IN * call function 'HR_GET_BUSINESS_ADD_IN' * exporting * exit_name = 'HR_MX_VSDI_BIMONTHLY' * importing * is_implemented = l_is_implemented * changing * instance = l_badi_instance.
CU_READ_RGDIR call function 'CU_READ_RGDIR' EXPORTING PERSNR = pernr-pernr TABLES IN_RGDIR = l_rgdir.
CD_SELECT_DATE_RANGE call function 'CD_SELECT_DATE_RANGE' exporting fpper_begda = p_start_cperiod fpper_endda = p_end_cperiod tables in_rgdir = l_rgdir out_rgdir = p_rgdir.
CD_SELECT_VOID call function 'CD_SELECT_VOID' * EXPORTING * VOID_INDICATOR = ' ' tables in_rgdir = p_rgdir out_rgdir = l_rgdir.
CD_SELECT_SRTZA call function 'CD_SELECT_SRTZA' exporting record_type = 'A' tables in_rgdir = l_rgdir out_rgdir = p_rgdir.
PYXX_READ_PAYROLL_RESULT CALL FUNCTION 'PYXX_READ_PAYROLL_RESULT' EXPORTING employeenumber = pernr-pernr sequencenumber = wa_rgdir-seqnr CHANGING payroll_result = payroll_result EXCEPTIONS OTHERS = 0.
HRMX_LAST_DAY_OF_MONTH CALL FUNCTION 'HRMX_LAST_DAY_OF_MONTH' EXPORTING I_DATE = cv_bi_endda IMPORTING E_DAYS_OF_MONTH = lv_days.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.