SAP Reports / Programs

ICL_DATA_EXTRACT1 SAP ABAP Report - Extract Costs from Claims (Demonstration Scenario)







ICL_DATA_EXTRACT1 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_DATA_EXTRACT1 into the relevant SAP transactions such as SE38 or SE80


ABAP code to call this SAP report using the submit statement

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.






SUBMIT ICL_DATA_EXTRACT1. "Basic submit
SUBMIT ICL_DATA_EXTRACT1 AND RETURN. "Return to original report after report execution complete
SUBMIT ICL_DATA_EXTRACT1 VIA SELECTION-SCREEN. "Display selection screen of submitted report to user
    See more syntax options for the ABAP SUBMIT statement


Text pool values


Selection Text: GP_COSTS = Variant just costs
Selection Text: GP_DISP = Display extracted data
Selection Text: GP_DOWNL = Download to local file
Selection Text: GP_FNAME = D Name of file
Selection Text: GP_MONTH = Month
Selection Text: GP_TTPAY = Var.: Payment (closed)
Selection Text: GP_YEAR = D Year
Selection Text: GR_BENT = Benefit types considered
Selection Text: GR_INC = D Incident Type
Title: Extract Costs from Claims (Demonstration Scenario)
Text Symbol: 001 = datasetinfo nobs=
Text Symbol: 002 = label="Month=
Text Symbol: 003 = "
Text Symbol: 004 = Input
Text Symbol: 005 = cards;
Text Symbol: 011 = ReportCat.
Text Symbol: 012 = Output
Text Symbol: 020 = Output length is too big, lines will be cut off


INCLUDES used within this REPORT ICL_DATA_EXTRACT1

No INCLUDES are used within this REPORT code!


TABLES used within REPORT and the associated SELECT statement:





No SAP DATABASE tables are accessed within this REPORT code!


Function Modules used within report and the associated call statement:

WS_DOWNLOAD * CALL FUNCTION 'WS_DOWNLOAD' * EXPORTING * filename = gp_fname * filetype = 'DAT' * IMPORTING * filelength = gv_filelength * TABLES * data_tab = gt_extract * EXCEPTIONS * file_open_error = 1 * file_write_error = 2 * invalid_filesize = 3 * invalid_type = 4 * no_batch = 5 * unknown_error = 6 * invalid_table_width = 7 * gui_refuse_filetransfer = 8 * customer_error = 9 * OTHERS = 10.

ADDR_GET CALL FUNCTION 'ADDR_GET' EXPORTING address_selection = ls_addr1_sel IMPORTING address_value = ls_address_value EXCEPTIONS OTHERS = 4.

ICLC_TICL083_SELECT CALL FUNCTION 'ICLC_TICL083_SELECT' EXPORTING i_cltype = gs_ticl056-cltype i_generat = gs_ticl056-generat i_version = gs_ticl056-version i_subcltype = gs_ticl056-subcltype i_bentype = gs_ticl056-bentype TABLES t_ticl083 = gt_ticl083.

BUP_PARTNER_GET * CALL FUNCTION 'BUP_PARTNER_GET' * EXPORTING * i_partner = iclpartocc-bpartner * IMPORTING * e_but000_address = p_bus000_ext * EXCEPTIONS * OTHERS = 4.

ICL_PARTNER_GET CALL FUNCTION 'ICL_PARTNER_GET' EXPORTING i_partner = iclpartocc-bpartner IMPORTING e_but000_address = p_bus000_ext EXCEPTIONS NOT_FOUND = 1 WRONG_PARAMETERS = 2 OTHERS = 3.

ICLC_TICL056_SELECT CALL FUNCTION 'ICLC_TICL056_SELECT' EXPORTING i_cltype = iclclaim-claimtype i_generat = iclclaim-cltypeg i_version = iclclaim-cltypev i_subcltype = iclsubcl-subcltype i_bentype = '*' TABLES t_ticl056 = gt_ticl056 EXCEPTIONS OTHERS = 4.

ICLC_ICL_GET_ORG_UNIT CALL FUNCTION 'ICLC_ICL_GET_ORG_UNIT' EXPORTING iv_agent = lv_owner iv_xsuppress_popup = 'X' TABLES et_objec = lt_objec EXCEPTIONS OTHERS = 4.

ICL_SUPPL_VENDOR_ROLES_SET CALL FUNCTION 'ICL_SUPPL_VENDOR_ROLES_SET'.

ICL_SUPPL_VENDOR_ROLES_GET CALL FUNCTION 'ICL_SUPPL_VENDOR_ROLES_GET' TABLES rt_vendor_roles = grt_vendor_roles.



Contribute (Add Comments)

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 ICL_DATA_EXTRACT1 or its description.