HTRIKB04 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 HTRIKB04 into the relevant SAP transactions such as SE38 or SE80
Below is a list of transaction codes which are relevant to this SAP report
PC00_M47_IKB4 - Employee's accident report
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.
Employee's incident report form
Selection Text: P_ERKEK = Number of men
Selection Text: P_ESHUK = Number of ex-convicts
Selection Text: P_FORM = Name of smartform
Selection Text: P_G1 = I.day
Selection Text: P_G2 = II.day
Selection Text: P_G3 = III.day
Selection Text: P_G4 = After three days
Selection Text: P_HUKUM = Number of convicts
Selection Text: P_ISSAYI = Number of employees certified
Selection Text: P_ISTHD = Employment status
Selection Text: P_ISYER = Size of work center
Selection Text: P_KADIN = Number of women
Selection Text: P_KSOLU = Number of dead after incident
Selection Text: P_MAHIS = Content of job
Selection Text: P_OGRNM = Education level
Selection Text: P_OZURL = Number of disabled employees
Selection Text: P_STAJR = Number of trainees
Selection Text: P_TARIHS = Accident date
Selection Text: P_TRRMD = Number of terror victims
Selection Text: P_U1 = Loss of limb
Selection Text: P_U2 = Slightly injured
Selection Text: P_VEKIL = Representative of the employer
Selection Text: P_COCUK = Number of children
Selection Text: P_CLMSK = Work type
Selection Text: P_BELGET = Edit date
Selection Text: P_BELGES = Number of documents
Title: Employee's incident report
Text Symbol: 001 = WP incident report form
Text Symbol: 002 = Loss of limb
Text Symbol: 003 = SlightInjure
Text Symbol: 004 = I.DAY
Text Symbol: 005 = II.DAY
Text Symbol: 006 = III.DAY
Text Symbol: 007 = More than 3 day
Text Symbol: 008 = WITNESSES
Text Symbol: 009 = Name of 1.witness
Text Symbol: 010 = Name of 2.witness
INCLUDE RPC2CD00.
No SAP DATABASE tables are accessed within this REPORT code!
HR_TR_LAST_DAY_OF_MONTHS CALL FUNCTION 'HR_TR_LAST_DAY_OF_MONTHS' EXPORTING day_in = s_begda IMPORTING last_day_of_month = s_endda EXCEPTIONS day_in_no_date = 1 OTHERS = 2.
CU_READ_RGDIR CALL FUNCTION 'CU_READ_RGDIR' EXPORTING PERSNR = P0000-PERNR IMPORTING MOLGA = C_MOLGA TABLES IN_RGDIR = RGDIR EXCEPTIONS NO_RECORD_FOUND = 1 OTHERS = 2.
HR_TR_CALC_MONTHS_AND_PERIODS CALL FUNCTION 'HR_TR_CALC_MONTHS_AND_PERIODS' EXPORTING P_BEGDA = g_BEGDA P_ENDDA = g_ENDDA P_ACTAY = ' ' IMPORTING P_MONTHS = l_ay TABLES P_FPPER = PY_PERIO.
HR_TR_GBDAT_AGE CALL FUNCTION 'HR_TR_GBDAT_AGE' EXPORTING i_pernr = pernr-pernr i_datum = p_tarihs i_use_tech = 'X' IMPORTING o_age = d_age EXCEPTIONS no_date_of_birth_found = 1 OTHERS = 2.
SSF_FUNCTION_MODULE_NAME CALL FUNCTION 'SSF_FUNCTION_MODULE_NAME' EXPORTING formname = p_form * variant = ' ' * direct_call = ' ' IMPORTING fm_name = fm_name EXCEPTIONS no_form = 1 no_function_module = 2 OTHERS = 3.
PYXX_READ_PAYROLL_RESULT CALL FUNCTION 'PYXX_READ_PAYROLL_RESULT' EXPORTING CLUSTERID = 'TR' EMPLOYEENUMBER = PERNR-PERNR SEQUENCENUMBER = SEQNR CHECK_READ_AUTHORITY = 'X' CHANGING PAYROLL_RESULT = PY_RESULT EXCEPTIONS ILLEGAL_ISOCODE_OR_CLUSTERID = 1 ERROR_GENERATING_IMPORT = 2 IMPORT_MISMATCH_ERROR = 3 SUBPOOL_DIR_FULL = 4 NO_READ_AUTHORITY = 5 NO_RECORD_FOUND = 6 VERSIONS_DO_NOT_MATCH = 7 OTHERS = 8.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.