RFFMLI_RW_BCS is a standard Executable ABAP Report available within your SAP system (depending on your version and release level). It is used for This program acts as an interface from the Report Writer drilldown to the FM Actuals Line Items Report (Document Journal)
If you would like to execute this report or see the full code listing simply enter RFFMLI_RW_BCS 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: S_YEAR = D .
Selection Text: S_WRKFLW = D .
Selection Text: S_VERS = D .
Selection Text: S_VALTYP = D .
Selection Text: S_USD = D .
Selection Text: S_RWRTTP = D .
Selection Text: S_RVRGNG = D .
Selection Text: S_RSTATS = D .
Selection Text: S_RRCTY = D .
Selection Text: S_RLDNR = Posting Ledger
Selection Text: S_RHKONT = D .
Selection Text: S_RCFLEV = D .
Selection Text: S_RBUKRS = D .
Selection Text: S_RBTART = D .
Selection Text: S_PROCES = D .
Selection Text: S_PERIOD = D .
Selection Text: S_MEAS = D .
Selection Text: S_GRANT = D .
Selection Text: S_FUND = D .
Selection Text: S_FUNC = D .
Selection Text: S_FCTR = D .
Selection Text: S_DISTKE = D .
Selection Text: S_CSHYR = D .
Selection Text: S_CMMT = D .
Selection Text: S_BUDTYP = D .
Selection Text: S_BUDPER = D .
Selection Text: S_BUDCAT = D .
Selection Text: S_ALLOCT = D .
Selection Text: P_VARI = D .
Selection Text: P_SIGNUI = Convert sign to user interface
Selection Text: P_MAXSEL = D .
Selection Text: P_FMAREA = D .
Title: Search actuals line items document
Text Symbol: P05 = Description
Text Symbol: L03 = Currency
Text Symbol: L02 = Budget Category
Text Symbol: L01 = FM Area
Text Symbol: 004 = Layout Selection
INCLUDE IFMKU_DRILLDOWN_TOP.
INCLUDE IFMLI_RW_DRILLDOWN_TOP.
INCLUDE IFMKU_POPUP0300_PBO.
INCLUDE IFMKU_POPUP0300_PAI.
INCLUDE IFMKU_RW_DRILLDOWN_PBO.
No SAP DATABASE tables are accessed within this REPORT code!
FM_FIKRS_CHECK_MD_YEAR_DEPEND CALL FUNCTION 'FM_FIKRS_CHECK_MD_YEAR_DEPEND' EXPORTING i_fikrs = p_fmarea IMPORTING e_flg_year_pos = g_flg_year_pos EXCEPTIONS input_error = 1 not_found = 2 OTHERS = 3.
FMAVC_GET_SOURCE_LEDGERS CALL FUNCTION 'FMAVC_GET_SOURCE_LEDGERS' EXPORTING i_aldnr = l_rldnr IMPORTING e_sldnr0 = l_pldnr EXCEPTIONS OTHERS = 1.
FMBAS_ASSIGN_CEFFYEAR_BUD CALL FUNCTION 'FMBAS_ASSIGN_CEFFYEAR_BUD' EXPORTING i_fm_area = p_fmarea i_pldnr = l_pldnr i_fiscyear = g_year_fr i_ceffyear = '9999' IMPORTING e_ceffyear_bud_max = l_ceyr_max EXCEPTIONS OTHERS = 1.
BUKU_GET_BUDCAT CALL FUNCTION 'BUKU_GET_BUDCAT' EXPORTING i_flg_with_texts = space i_applic = 'FM' IMPORTING e_t_budcat = lt_budcat.
FMAVC_GET_ALDNR_FOR_BUDCAT CALL FUNCTION 'FMAVC_GET_ALDNR_FOR_BUDCAT' EXPORTING i_budcat = lf_budcat IMPORTING e_t_aldnr = lt_aldnr 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.