ICL_CLAIM_FILE_WCOMP_LIB 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 ICL_CLAIM_FILE_WCOMP_LIB 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 EMSG.
INCLUDE IEFGMAC3.
No SAP DATABASE tables are accessed within this REPORT code!
ICL_CORR_GET CALL FUNCTION 'ICL_CORR_GET' IMPORTING e_claim = wa_claim.
ICL_CORR_GET CALL FUNCTION 'ICL_CORR_GET' IMPORTING t_reserve_item = yt_res.
ICL_CORR_GET CALL FUNCTION 'ICL_CORR_GET' TABLES t_iclpayi = yt_payi.
ICL_CORR_GET CALL FUNCTION 'ICL_CORR_GET' TABLES t_item = yt_items.
ICL_CORR_GET CALL FUNCTION 'ICL_CORR_GET' IMPORTING t_froi = yt_froi_wc.
ICL_CORR_GET CALL FUNCTION 'ICL_CORR_GET' TABLES t_subcl = yt_subclaims.
ICL_CORR_GET CALL FUNCTION 'ICL_CORR_GET' IMPORTING t_pol = yt_pol.
ICL_CORR_GET CALL FUNCTION 'ICL_CORR_GET' IMPORTING t_archive = yt_arch.
ICL_CLAIM_GET CALL FUNCTION 'ICL_CLAIM_GET' IMPORTING e_claim = wa_claim EXCEPTIONS unsupported_structure = 1 OTHERS = 2.
ICLC_TICL015T_GET CALL FUNCTION 'ICLC_TICL015T_GET' EXPORTING i_langu = sy-langu i_complex = wa_claim-complex IMPORTING e_complexn = lv_complexn EXCEPTIONS none_found = 1 no_text = 2 OTHERS = 3.
ICL_CORR_GET CALL FUNCTION 'ICL_CORR_GET' IMPORTING t_froi_clai = yt_froi_wc.
ICL_CORR_GET CALL FUNCTION 'ICL_CORR_GET' IMPORTING t_froi_empl = yt_froi_wc.
ICL_CORR_GET CALL FUNCTION 'ICL_CORR_GET' IMPORTING t_pol = lt_pol.
ICL_POL_GET * CALL FUNCTION 'ICL_POL_GET' * IMPORTING * es_pol = ls_pol.
ICL_CORR_GET CALL FUNCTION 'ICL_CORR_GET' IMPORTING t_subcl_status = lt_status_sub.
ICL_CORR_GET CALL FUNCTION 'ICL_CORR_GET' IMPORTING e_claim_status = ls_status_claim.
ICL_CORR_GET CALL FUNCTION 'ICL_CORR_GET' IMPORTING t_pol_new = yt_pols.
DDUT_DOMVALUES_GET CALL FUNCTION 'DDUT_DOMVALUES_GET' EXPORTING name = lv_name langu = sy-langu TABLES dd07v_tab = lt_ldd07v 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.