HVECSIE0 is a standard Executable ABAP Report available within your SAP system (depending on your version and release level). It is used for Program that generates form 14-02 from the Venezuelan Social Insurance Institute (IVSS), that contains the information required for the registration and control of insured employees...see full standard documentation available for this report. Also check out the submitted Comments related to this SAP report and the details below to see which OBJECTS it interacts with such as TABLES, FUNCTION MODULES, INCLUDES ETC.
If you would like to execute this report or see the full code listing simply enter HVECSIE0 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_M17_CSIE0 - IVSS report 14-02
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.
Report 14-02 of Statutory Social Insurance (SSO)
Selection Text: RP_REAS4 = Family member declaration
Selection Text: RP_REAS3 = Change in ID card number
Selection Text: RP_REAS2 = Data modification
Selection Text: RP_REAS1 = Registration in IVSS
Selection Text: PX_LFVAR = Form variant
Selection Text: PX_LFORM = Form
Selection Text: FORM = Form
Title: IVSS report 14-02
Text Symbol: E02 = Error on adding element to error list
Text Symbol: 020 = Gend. next of kin
Text Symbol: 018 = Housing dev.
Text Symbol: 017 = Apmt.
Text Symbol: 016 = Flr
Text Symbol: 014 = the name
Text Symbol: 013 = of Co.code/Company
Text Symbol: 012 = the SSO number
Text Symbol: 011 = the ID card
Text Symbol: 010 = the Nationality
Text Symbol: 009 = the sex (F/M)
Text Symbol: 008 = the date of birth
Text Symbol: 007 = the function code
Text Symbol: 006 = the function name
Text Symbol: 005 = Function code entered
Text Symbol: 004 = Full name entered
Text Symbol: 003 = Reason for action entered
Text Symbol: 002 = Reason for report
Text Symbol: 001 = Report data
INCLUDE: PCFTBVE0.
INCLUDE: PCCONVE0.
INCLUDE: PCCLSVE0.
INCLUDE PMSELVE0. "YRAM1083412
No SAP DATABASE tables are accessed within this REPORT code!
HRVE_F4SEARCH_SAPSCRIPT CALL FUNCTION 'HRVE_F4SEARCH_SAPSCRIPT' EXPORTING irepid = c_program_name fieldname = 'FORM' IMPORTING oform = form.
HR_LEAVING_DATE CALL FUNCTION 'HR_LEAVING_DATE' EXPORTING persnr = p_pernr TABLES leaving_dates = fire_events EXCEPTIONS leaving_date_not_found = 1 pernr_not_assigned = 2 OTHERS = 3.
HRVE_GET_BASIC_SALARY CALL FUNCTION 'HRVE_GET_BASIC_SALARY' EXPORTING p_date = p_sso1402-pdate IMPORTING p_basic_sal = basic_sal TABLES p_p0008 = p0008 EXCEPTIONS error_at_indirect_evaluation = 1 error_basic_salary_vklas = 2 error_invalid_date = 3 OTHERS = 4.
HRVE_GET_PAYROLL_TYPE CALL FUNCTION 'HRVE_GET_PAYROLL_TYPE' EXPORTING pernum = p_sso1402-pernr beg_date = p_sso1402-pdate end_date = p_sso1402-pdate IMPORTING payroll_type = ptype EXCEPTIONS not_found = 1 OTHERS = 2.
CONVERT_TO_LOCAL_CURRENCY CALL FUNCTION 'CONVERT_TO_LOCAL_CURRENCY' EXPORTING date = gv_currency_rate_date foreign_amount = p_sso1402-wslry foreign_currency = p0008-waers local_currency = gv_calc_currency IMPORTING local_amount = p_sso1402-wslry EXCEPTIONS OTHERS = 99.
HR_ENTRY_DATE CALL FUNCTION 'HR_ENTRY_DATE' EXPORTING persnr = p_pernr endda = pv_endda TABLES entry_dates = hire_events EXCEPTIONS entry_date_not_found = 1 pernr_not_assigned = 2 OTHERS = 3.
HRCA_COMPANYCODE_GETDETAIL CALL FUNCTION 'HRCA_COMPANYCODE_GETDETAIL' EXPORTING companycode = p_bukrs language = pve00_langu IMPORTING comp_name = p_butxt EXCEPTIONS not_found = 1 OTHERS = 2.
HR_99S_APPCORRONDA call function 'HR_99S_APPCORRONDA' exporting p_molga = '17' p_cogrp = 'VLC' p_corr_nr = '00000001' P_val_date = p_p_sso1402_pdate p_act_date = p_p_sso1402_pdate p_simulation = 'X' importing p_aplicate = CONDITION_AP EXCEPTIONS ERROR_LOCKING = 1 OTHERS = 2.
HR_FEATURE_BACKFIELD call function 'HR_FEATURE_BACKFIELD' exporting feature = 'VETRA' struc_content = pme01 importing back = input exceptions dummy = 1 error_operation = 2 no_backvalue = 3 feature_not_generated = 4 invalid_sign_in_funid = 5 field_in_report_tab_in_pe03 = 6 others = 7.
RP_EDIT_NAME CALL FUNCTION 'RP_EDIT_NAME' EXPORTING format = '01' langu = sy-langu molga = '17' pp0021 = p_0021 tclas = 'A' IMPORTING edit_name = p_name retcode = p_return_code.
H99B_OPEN_LFORM_JOB CALL FUNCTION 'H99B_OPEN_LFORM_JOB' EXPORTING i_molga = hr99b_form_sel-molga i_fogroup = hr99b_form_sel-fogroup i_folname = hr99b_form_sel-folname i_fovariant = hr99b_form_sel-fovariant options = l_options EXCEPTIONS OTHERS = 99.
H99B_OUTPUT_LFORM CALL FUNCTION 'H99B_OUTPUT_LFORM' EXPORTING i_molga = hr99b_form_sel-molga i_fogroup = hr99b_form_sel-fogroup i_folname = hr99b_form_sel-folname i_fovariant = hr99b_form_sel-fovariant i_data_struc = i_data EXCEPTIONS OTHERS = 99.
H99B_CLOSE_LFORM_JOB CALL FUNCTION 'H99B_CLOSE_LFORM_JOB' EXCEPTIONS OTHERS = 99.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.