HCOCOAV0 is a standard Executable ABAP Report available within your SAP system (depending on your version and release level). It is used for This report is important for checking entries in the COAVA table...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 HCOCOAV0 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_M38_COAV - Leave report - COAVA
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.
Selection Text: SO_TYPEN = Ty. of Social Insurance entity
Selection Text: SO_ENTIT = Social Insurance entity
Selection Text: SO_BRANC = Branch
Selection Text: P_PTYPE = Type of integrated form
Selection Text: P_DAPAY = Payment date
Title: Leave report - COAVA
Text Symbol: RTF = Rich Text Format (*.RTF)|*.RTF|
Text Symbol: S01 = Output
Text Symbol: S02 = SAP List Viewer
Text Symbol: S03 = Layout variant
Text Symbol: S04 = ALV grid control
Text Symbol: S05 = Self-assessment form
Text Symbol: S06 = PC file template
Text Symbol: S07 = Self-assessment Integrated Form
Text Symbol: S08 = Output archive
Text Symbol: S12 = Normal form
Text Symbol: S13 = Retro acctg
Text Symbol: S14 = Correction
Text Symbol: S15 = of
Text Symbol: S16 = Self-assessment Electronic Integrated Form
Text Symbol: S17 = Class.
Text Symbol: SLS = List
Text Symbol: ST1 = Other sel.
Text Symbol: T01 = AFP name
Text Symbol: T02 = EPS name
Text Symbol: T03 = CAJA name
Text Symbol: T04 = ARP name
Text Symbol: TXT = Texto files (*.TXT)|*.TXT|
Text Symbol: R02 = PERIOD &1/&2
Text Symbol: 008 = Record No.
Text Symbol: 009 = Do you really want to
Text Symbol: 010 = print curr. self-assessment result?
Text Symbol: 011 = Caution
Text Symbol: 012 = Reported mo.
Text Symbol: 013 = Prev.pgm Data medium exchange
Text Symbol: 014 = has been triggered
Text Symbol: 015 = LEAVE REPORT
Text Symbol: 016 = COAVA TABLE
INCLUDE: RPCCCD09,
PCSCRCO0,
PCERMCO0.
No SAP DATABASE tables are accessed within this REPORT code!
BAPI_CURRENCY_GETDECIMALS CALL FUNCTION 'BAPI_CURRENCY_GETDECIMALS' EXPORTING currency = pco00_cuky IMPORTING currency_decimals = gv_curdec return = gv_return.
SAPGUI_PROGRESS_INDICATOR CALL FUNCTION 'SAPGUI_PROGRESS_INDICATOR' EXPORTING text = gv_ind_text percentage = 100 EXCEPTIONS OTHERS = 0.
REUSE_ALV_VARIANT_F4 CALL FUNCTION 'REUSE_ALV_VARIANT_F4' EXPORTING is_variant = ov_template i_save = 'A' IMPORTING e_exit = lv_rc es_variant = ov_template EXCEPTIONS not_found = 1 program_error = 2 OTHERS = 3.
REUSE_ALV_GRID_DISPLAY CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY' EXPORTING i_callback_program = gv_repid i_callback_pf_status_set = slis_ev_pf_status_set " PF_STATUS_SET i_callback_user_command = slis_ev_user_command " USER_COMMAND i_structure_name = gs_struct is_layout = ls_layout it_fieldcat = lt_fieldcat[] i_save = gc_on it_events = lt_events_top is_variant = grid_template TABLES t_outtab = p_output EXCEPTIONS program_error = 1 OTHERS = 2.
REUSE_ALV_FIELDCATALOG_MERGE CALL FUNCTION 'REUSE_ALV_FIELDCATALOG_MERGE' EXPORTING i_program_name = iv_repname * I_INTERNAL_TABNAME = i_structure_name = gs_struct * I_CLIENT_NEVER_DISPLAY = 'X' * I_INCLNAME = PRONAME CHANGING ct_fieldcat = xt_fieldcat EXCEPTIONS inconsistent_interface = 1 program_error = 2 OTHERS = 3.
REUSE_ALV_EVENTS_GET CALL FUNCTION 'REUSE_ALV_EVENTS_GET' EXPORTING i_list_type = 0 IMPORTING et_events = xt_event_top.
REUSE_ALV_COMMENTARY_WRITE CALL FUNCTION 'REUSE_ALV_COMMENTARY_WRITE' EXPORTING it_list_commentary = gt_alv_list_top_of_page[].
CALL FUNCTION 'POPUP_TO_CONFIRM_WITH_MESSAGE' EXPORTING defaultoption = 'N' diagnosetext1 = text-011 diagnosetext2 = text-013 diagnosetext3 = text-014 textline1 = text-009 textline2 = text-010 titel = text-112 IMPORTING answer = answer EXCEPTIONS OTHERS = 0.
REUSE_ALV_VARIANT_EXISTENCE CALL FUNCTION 'REUSE_ALV_VARIANT_EXISTENCE' CHANGING cs_variant = ov_template EXCEPTIONS not_found = 1 OTHERS = 2.
REUSE_ALV_VARIANT_EXISTENCE CALL FUNCTION 'REUSE_ALV_VARIANT_EXISTENCE' EXPORTING i_save = 'A' CHANGING cs_variant = ov_template EXCEPTIONS not_found = 1 OTHERS = 2.
HR_DISPLAY_ERROR_LIST CALL FUNCTION 'HR_DISPLAY_ERROR_LIST' EXPORTING no_popup = 'X' no_print = space no_img = space EXCEPTIONS invalid_linesize = 1 OTHERS = 2.
PYXX_READ_PAYROLL_RESULT CALL FUNCTION 'PYXX_READ_PAYROLL_RESULT' EXPORTING clusterid = t500l-relid employeenumber = p_pernr sequencenumber = pt_rgdir-seqnr read_only_international = ' ' check_read_authority = ' ' CHANGING payroll_result = pt_results EXCEPTIONS OTHERS = 1.
CU_READ_RGDIR CALL FUNCTION 'CU_READ_RGDIR' EXPORTING persnr = p_pernr_pernr TABLES in_rgdir = p_rgdir EXCEPTIONS no_record_found = 1 OTHERS = 2.
CD_SELECT_VOID CALL FUNCTION 'CD_SELECT_VOID' EXPORTING void_indicator = ' ' TABLES in_rgdir = p_in_rgdir out_rgdir = p_out_rgdir EXCEPTIONS OTHERS = 1.
CD_SELECT_DATE_RANGE CALL FUNCTION 'CD_SELECT_DATE_RANGE' EXPORTING fpper_begda = p_begda fpper_endda = p_endda TABLES in_rgdir = p_in_rgdir out_rgdir = p_out_rgdir EXCEPTIONS OTHERS = 1.
CD_SELECT_SRTZA CALL FUNCTION 'CD_SELECT_SRTZA' EXPORTING record_type = cd_c-actual TABLES in_rgdir = p_in_rgdir out_rgdir = p_out_rgdir EXCEPTIONS OTHERS = 1.
GET_ACCESSIBILITY_MODE CALL FUNCTION 'GET_ACCESSIBILITY_MODE' IMPORTING accessibility = gx_acc_mode_on EXCEPTIONS OTHERS = 1.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.
The contribute/comments section below therefore offer's an opportunity for anyone to add additional information. This can be anything from useful hints, tips and screen shots to relevant SAP notes or anything else you feel is relevant to this report.
This will then be available for everyone to easily find by simply searching on the report name HCOCOAV0 or its description.