RPCVDID5 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 RPCVDID5 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.
INCLUDE RPCVDID5_BV. "N1827443
No SAP DATABASE tables are accessed within this REPORT code!
HR_GET_VALIDITY_OF_APPLICATION CALL FUNCTION 'HR_GET_VALIDITY_OF_APPLICATION' EXPORTING i_molga = calcmolga i_appl = 'SVEA' i_date = aper-begda IMPORTING e_valid = l_valid.
HR_GET_VALIDITY_OF_APPLICATION CALL FUNCTION 'HR_GET_VALIDITY_OF_APPLICATION' EXPORTING i_molga = calcmolga i_appl = 'SVAU' i_date = aper-begda IMPORTING e_valid = l_valid.
HR_ENTRY_DATE CALL FUNCTION 'HR_ENTRY_DATE' EXPORTING persnr = pernr-pernr * begda = l_begda "N1676493 * endda = aper-endda "N1676493 endda = aper-endda "N1727319 * IMPORTING "N1688438 * entrydate = l_einda "N1688438 IMPORTING "N1727319 entrydate = l_einda "N1727319 * TABLES "N1727319 "N1688438 * entry_dates = lt_einda[] "N1727319 "N1688438 EXCEPTIONS entry_date_not_found = 1 pernr_not_assigned = 2 OTHERS = 3.
HR_CALC_MONTH CALL FUNCTION 'HR_CALC_MONTH' EXPORTING delta = '-6' CHANGING periode = l_per EXCEPTIONS invalid_period = 1 undefined_point = 2 OTHERS = 3.
HR_READ_INFOTYPE CALL FUNCTION 'HR_READ_INFOTYPE' EXPORTING pernr = pernr-pernr infty = '0013' begda = l_begda endda = l_endda TABLES infty_tab = lt_p0013[] EXCEPTIONS infty_not_found = 1 OTHERS = 2.
HR_READ_INFOTYPE CALL FUNCTION 'HR_READ_INFOTYPE' EXPORTING pernr = pernr-pernr infty = '2001' begda = l_begda endda = l_endda TABLES infty_tab = lt_p2001[] EXCEPTIONS infty_not_found = 1 OTHERS = 2.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.