HSKTLEA1 is a standard Executable ABAP Report 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 HSKTLEA1 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 RPC2RX00.
INCLUDE PC2RXSK0.
INCLUDE HSKLXXL0.
INCLUDE HSKLXXL2.
INCLUDE HSKLXXL1.
INCLUDE HSKLXXL3.
INCLUDE MPZDAT03.
INCLUDE RPC1PC00.
INCLUDE RPPPXD00.
INCLUDE RPPPXM00.
No SAP DATABASE tables are accessed within this REPORT code!
HR_SK_DETERMINATION_PERIODS CALL FUNCTION 'HR_SK_DETERMINATION_PERIODS' EXPORTING PERNR = P0001-PERNR FROM_PERIOD = BEG_DATE TO_PERIOD = END_DATE TABLES OUT_RGTAB = MYRGDIR EXCEPTIONS RGDIR_EMPTY = 1 WRONG_INTERVAL = 2 OTHERS = 3.
HR_SK_DETERMINATION_PERIODS CALL FUNCTION 'HR_SK_DETERMINATION_PERIODS' EXPORTING PERNR = PERNR-PERNR FROM_PERIOD = BEG_PER TO_PERIOD = END_PER TABLES OUT_RGTAB = MYRGDIR EXCEPTIONS RGDIR_EMPTY = 1 WRONG_INTERVAL = 2 OTHERS = 3.
HR_GET_LEAVE_DATA CALL FUNCTION 'HR_GET_LEAVE_DATA' EXPORTING PERNR = PERNR-PERNR TABLES XANSP = XANSP * URART_SEL = URART_SEL * I0005 = P0005 * I0083 = P0083 * I0003 = P0003 * I0001 = P0001 EXCEPTIONS INFTY_0005_NOT_DEFINED = 1 INFTY_0003_NOT_DEFINED = 2 INFTY_0083_NOT_DEFINED = 3 MISSING_AUTHORITY = 4 OLD_NE_NEW_PC_VERSION_NR = 5 INFTY_0001_NOT_DEFINED = 6 OTHERS = 7 .
HR_GET_QUOTA_DATA CALL FUNCTION 'HR_GET_QUOTA_DATA' EXPORTING PERNR = pernr-pernr QTYPE = '1' MOD = 'B' BEGDA = '18000101' ENDDA = '99991231' DEDUBEG = beg_year DEDUEND = end_year IMPORTING RETCD = retc TABLES ABWKO = abwko EXCEPTIONS INFTY_NOT_FOUND = 1 MISSING_AUTHORITY = 2 WRONG_PARAMETER = 3 OTHERS = 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.