RFCLLIB00 is a standard Executable ABAP Report available within your SAP system (depending on your version and release level). It is used for You use this report to prepare a list of cash flows in the G/L accounts that you have marked as
If you would like to execute this report or see the full code listing simply enter RFCLLIB00 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_SINGLE = Show Line Items
Selection Text: S_MONAT = Period
Selection Text: S_BUDAT = Posting Date
Selection Text: P_CUI = CUI Number
Title: Cash Journal (Chile, Peru)
Text Symbol: 768 = Acct
Text Symbol: 767 = G/L Acct
Text Symbol: 766 = Crcy
Text Symbol: 765 = Crcy
Text Symbol: 764 = Credit
Text Symbol: 763 = Credit
Text Symbol: 762 = Debit
Text Symbol: 761 = Debit
Text Symbol: 760 = P
Text Symbol: 759 = Month
Text Symbol: 758 = Year
Text Symbol: 757 = Fiscal Yr
Text Symbol: 756 = Doc.
Text Symbol: 755 = Doc. No.
Text Symbol: 747 = LC
Text Symbol: 746 = L Crcy
Text Symbol: 728 = CB
Text Symbol: 727 = Cl. Bal.
Text Symbol: 726 = Cr CB
Text Symbol: 725 = Cr CB
Text Symbol: 724 = Dr CB
Text Symbol: 723 = Dr CB
Text Symbol: 722 = Cr Tr.
Text Symbol: 721 = Cr Trans.
Text Symbol: 769 = Descr.
Text Symbol: 901 = List Format
Text Symbol: 900 = General
Text Symbol: 899 = Date:
Text Symbol: 898 = Company Code
Text Symbol: 897 = Period
Text Symbol: 896 = Tax Number
Text Symbol: 890 = DT
Text Symbol: 889 = Doc. Type
INCLUDE ALV_LIBRO_DE_CAJA.
No SAP DATABASE tables are accessed within this REPORT code!
POPUP_DISPLAY_TEXT CALL FUNCTION 'POPUP_DISPLAY_TEXT' EXPORTING LANGUAGE = SY-LANGU POPUP_TITLE = text-777 * START_COLUMN = 10 * START_ROW = 3 TEXT_OBJECT = 'RFCLLIB_XX_CUI' * HELP_MODAL = 'X' * IMPORTING * CANCELLED = EXCEPTIONS TEXT_NOT_FOUND = 1 OTHERS = 2 .
FAGL_GET_ITEMS_BSIS * CALL FUNCTION 'FAGL_GET_ITEMS_BSIS' * EXPORTING * i_selection = gt_selection_full * I_BLOCKSIZE = gd_max_pack_lines * I_BLOCK_DATA = gusl_c_true * i_read_bseg = ld_read_bseg * i_max_lines = gd_max_lines * IMPORTING * FLAG_CURSOR_OPEN = gd_cursor_open * CHANGING * c_t_faglpose = it_sel.
FAGL_GET_ITEMS_BSEG CALL FUNCTION 'FAGL_GET_ITEMS_BSEG' EXPORTING i_selection = gt_selection_full I_BLOCKSIZE = gd_max_pack_lines I_BLOCK_DATA = gusl_c_true i_max_lines = gd_max_lines IMPORTING FLAG_CURSOR_OPEN = gd_cursor_open CHANGING c_t_faglpose = it_sel.
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 RFCLLIB00 or its description.