COB01F03 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 COB01F03 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.
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
HR_BEN_HANDLE_ERROR CALL FUNCTION 'HR_BEN_HANDLE_ERROR' EXPORTING pernr = p_pernr msg_class = 'RP' msg_number = '050' msg_par1 = '0002' msg_par2 = p_pernr msg_par3 = l_datst msg_par4 = l_datst severity = 8 reaction = p_react TABLES error_table = p_error.
HR_BEN_GET_TEXT_DOMVALUE CALL FUNCTION 'HR_BEN_GET_TEXT_DOMVALUE' EXPORTING domname = 'COB_EVTYP' domvalue = p_event-evtyp reaction = p_react IMPORTING text = my_t5uda-evtxt subrc = p_subrc TABLES error_table = p_error.
HR_BEN_GET_TEXT_DOMVALUE CALL FUNCTION 'HR_BEN_GET_TEXT_DOMVALUE' EXPORTING domname = 'COB_EVSTA' domvalue = p_event-evsta reaction = p_react IMPORTING text = my_t5uda-statx subrc = p_subrc TABLES error_table = p_error.
HR_BEN_HANDLE_ERROR CALL FUNCTION 'HR_BEN_HANDLE_ERROR' EXPORTING pernr = p_pernr msg_class = 'RP' msg_number = '050' msg_par1 = '0094' msg_par2 = p_pernr msg_par3 = l_datst msg_par4 = l_datst severity = p_subrc reaction = p_react TABLES error_table = p_error.
HR_BEN_COB_DROP_DEPENDENT CALL FUNCTION 'HR_BEN_COB_DROP_DEPENDENT' EXPORTING dep_type = p_dsubt dep_id = p_dobjp dep_check_only = true IMPORTING dep_covered = p_quali CHANGING reg_record = i0167.
HR_READ_INFOTYPE CALL FUNCTION 'HR_READ_INFOTYPE' EXPORTING tclas = 'A' pernr = i0167-pernr infty = '0211' BEGDA = wa_my_events-evdat ENDDA = p_event-evdat TABLES infty_tab = lt_p0211 EXCEPTIONS infty_not_found = 1 OTHERS = 2.
HR_BEN_COB_CHECK_DEP_ELIG_REG CALL FUNCTION 'HR_BEN_COB_CHECK_DEP_ELIG_REG' EXPORTING pernr = p_eedat-pernr dep_type = p_dsubt dep_id = p_dobjp barea = i0170-barea bplan = i0170-bplan datum = p_event-covdt reaction = p_react IMPORTING is_eligible = p_quali subrc = p_subrc TABLES error_table = p_error it0021 = i0021 it0106 = i0106.
HR_BEN_COB_GET_SPEN_TARG_AMTS CALL FUNCTION 'HR_BEN_COB_GET_SPEN_TARG_AMTS' EXPORTING qb_benefit_data = qb_ben_data bplan = i0170-bplan desired_curre = us_dollars reaction = p_react IMPORTING target_amounts = target_amounts subrc = p_subrc TABLES error_table = p_error.
HR_BEN_GET_FROM_FEATURE_ELIGR CALL FUNCTION 'HR_BEN_GET_FROM_FEATURE_ELIGR' EXPORTING ee_benefit_data = p_eedat begda = p_datum endda = p_datum bplan = p_bplan reaction = p_react IMPORTING eligr = l_eligr subrc = p_subrc TABLES error_table = p_error.
HR_BEN_SAVE_ERROR_LOG CALL FUNCTION 'HR_BEN_SAVE_ERROR_LOG' EXPORTING repid = sy-repid IMPORTING log_handle = p_loghndl log_number = p_lognr TABLES error_table = error_log.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.