RFGLRE_ITEMS is a standard Executable ABAP Report available within your SAP system (depending on your version and release level). It is used for G/L account line items from drilldown reports using the report-report interface The report is used to display G/L account line items from drilldown reports...see full standard documentation available for this report. Also check out the submitted Comments related to this SAP report and the details below to see which OBJECTS it interacts with such as TABLES, FUNCTION MODULES, INCLUDES ETC.
If you would like to execute this report or see the full code listing simply enter RFGLRE_ITEMS 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.
Title: G/L Account Line Items
Text Symbol: 001 = & records selected
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
RSTI_SELECTION_IMPORT CALL FUNCTION 'RSTI_SELECTION_IMPORT' TABLES IT_SEL = GT_SEL IT_FIELDS = GT_FIELDS EXCEPTIONS NO_SELECTION_DATA = 1 OTHERS = 2.
RGRE_ERGSL_TO_RACCT_CONVERT CALL FUNCTION 'RGRE_ERGSL_TO_RACCT_CONVERT' EXPORTING I_BS_VERSION = L_VERSN I_BS_ITEM = LR_ERGSL-LOW "H1169179 TABLES T_ACCOUNTS = LT_ACCOUNTS EXCEPTIONS BS_VERSION_NOT_EXIST = 1 OTHERS = 2.
FI_COMPANY_CODE_DATA CALL FUNCTION 'FI_COMPANY_CODE_DATA' EXPORTING I_BUKRS = LR_BUKRS-LOW IMPORTING E_T001 = T001.
READ_KONTENPLAN CALL FUNCTION 'READ_KONTENPLAN' EXPORTING KONTENPLAN = T001-KTOPL SACHKONTO = LR_SAKNR-LOW IMPORTING KONTENPLAN_WA = SKA1.
FIRST_AND_LAST_DAY_IN_YEAR_GET CALL FUNCTION 'FIRST_AND_LAST_DAY_IN_YEAR_GET' EXPORTING I_GJAHR = L_GJAHR I_PERIV = T001-PERIV IMPORTING E_LAST_DAY = L_STIDA EXCEPTIONS INPUT_FALSE = 1 T009_NOTFOUND = 2 T009B_NOTFOUND = 3 OTHERS = 4.
LAST_DAY_IN_PERIOD_GET CALL FUNCTION 'LAST_DAY_IN_PERIOD_GET' EXPORTING I_GJAHR = L_GJAHR I_PERIV = T001-PERIV I_POPER = L_PERDE IMPORTING E_DATE = L_STIDA EXCEPTIONS INPUT_FALSE = 1 T009_NOTFOUND = 2 T009B_NOTFOUND = 3 OTHERS = 4.
FIRST_AND_LAST_DAY_IN_YEAR_GET CALL FUNCTION 'FIRST_AND_LAST_DAY_IN_YEAR_GET' EXPORTING I_GJAHR = L_GJAHR I_PERIV = T001-PERIV IMPORTING E_LAST_DAY = L_STIDA EXCEPTIONS INPUT_FALSE = 1 T009_NOTFOUND = 2 T009B_NOTFOUND = 3 OTHERS = 4.
GLRE_RSTISEL_TO_FREESEL_CONV CALL FUNCTION 'GLRE_RSTISEL_TO_FREESEL_CONV' EXPORTING I_APPLCLASS = 'FBR ' IMPORTING ET_EXPRESSIONS = GT_EXPRESSIONS TABLES IT_SEL = GT_SEL IT_FIELDS = GT_FIELDS EXCEPTIONS NO_SELECTION_DATA = 1 OTHERS = 2.
GLRE_RSTISEL_TO_RSPARAMS_CONV CALL FUNCTION 'GLRE_RSTISEL_TO_RSPARAMS_CONV' EXPORTING I_APPLCLASS = 'FBR ' TABLES IT_SEL = GT_SEL IT_FIELDS = GT_FIELDS ET_RSPARAMS = GT_RSPARAMS EXCEPTIONS NO_SELECTION_DATA = 1 OTHERS = 2.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.