FCIWDWNLD20 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 FCIWDWNLD20 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.
Selection Text: PA_PRACQ = Future Period
Selection Text: PA_PERIV = Fiscal year variant
Selection Text: PA_MSL = Quantity
Selection Text: PA_KSL = GC
Selection Text: PA_ITEM = Item
Selection Text: PA_ITCLG = Cons chart
Selection Text: PA_HSL = LC
Selection Text: PA_HDATT = Target hierarchy
Selection Text: PA_HDATF = Source hierarchy
Selection Text: PA_FPER = Year/period
Selection Text: PA_DOCTY = Document type
Selection Text: PA_DIMEN = Dimension
Selection Text: PA_CONGR = Consolidation group
Selection Text: PA_COICU = Investee
Selection Text: PA_BUPTR = Partner
Selection Text: PA_BUNIT = Consolidation unit
Selection Text: SO_RVERS = Version
Selection Text: SO_ITCLG = Cons chart
Selection Text: PA_RGCUR = Group currency
Selection Text: PA_RLCUR = Local Currency
Selection Text: PA_RLEVL = Posting level
Selection Text: PA_RTCUR = Transaction currency
Selection Text: PA_RUNIT = Unit of measure
Selection Text: PA_RVERS = Version
Selection Text: PA_SITEM = Subitem
Selection Text: PA_SITYP = SI cat.
Selection Text: PA_TSL = Value in TC
Selection Text: PA_YRACQ = Year of acquisition
Selection Text: PA_YTDG = YTD GC
Selection Text: PA_YTDL = YTD LC
Selection Text: PA_YTDQ = YTD QTY
Selection Text: PA_YTDT = YTD TC
Selection Text: SO_BUNIT = Consolidation unit
Selection Text: SO_CONGR = Top Group
Selection Text: SO_DIMEN = Dimension
Selection Text: SO_FISCP = Fiscal year/per.
Title: Download transaction data using ALV
Text Symbol: T02 = Key figs
INCLUDE LFCIWXT3.
INCLUDE LFCIWXT2.
INCLUDE LFCIWXT1.
INCLUDE LFCIWXT0.
No SAP DATABASE tables are accessed within this REPORT code!
FCIW_BIW_GET_DATA_A CALL FUNCTION 'FCIW_BIW_GET_DATA_A' EXPORTING i_requnr = '1' i_isource = '0EC_CS_1' i_maxsize = 10000 i_initflag = 'X' i_updmode = 'F' i_datapakid = '1' TABLES i_t_select = lt_sel i_t_fields = lt_fields EXCEPTIONS no_more_data = 1 error_passed_to_mess_handler = 2 OTHERS = 3.
FCIW_BIW_GET_DATA_A CALL FUNCTION 'FCIW_BIW_GET_DATA_A' EXPORTING i_requnr = '1' i_isource = '0EC_CS_1' i_maxsize = 1000 i_initflag = ' ' i_updmode = 'F' i_datapakid = '1' TABLES e_t_fciw_s_bw_exsrc_01 = lt_exsrc_a EXCEPTIONS no_more_data = 1 error_passed_to_mess_handler = 2 OTHERS = 3.
REUSE_ALV_LIST_DISPLAY CALL FUNCTION 'REUSE_ALV_LIST_DISPLAY' EXPORTING i_structure_name = 'FCIW_S_BW_EXSRC_01' TABLES t_outtab = lt_exsrc_b.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.