RFSKPL00 is a standard Executable ABAP Report available within your SAP system (depending on your version and release level). It is used for The Chart of Accounts program is used to display G/L account master data which is not specific to the company code and print out G/L account lists...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 RFSKPL00 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: XSPEP = Only with planning block
Selection Text: XSPEB = Only with posting block
Selection Text: XSPEA = Only with creation block
Selection Text: XLOEV = Only with delete flag
Selection Text: TXT50 = G/L account long text
Selection Text: TITLE = Additional header
Selection Text: SKONTO = G/L account
Selection Text: SD_SAKNR = ?...(SD_SAKNR)
Selection Text: SD_KTOPL = ?...(SD_KTOPL)
Selection Text: SAKNR = ?...(SAKNR)
Selection Text: SAKNO = ?...(SAKNO)
Selection Text: NZKTOPL = Charts of accts not assigned
Selection Text: MUSTR = Sample account
Selection Text: KTOPLAN = Chart of accounts
Selection Text: KTOPL = Chart of accounts
Selection Text: KTOKS = Account group
Selection Text: KOTYP = Cost accounting type
Selection Text: INDEXTYP = ?...(INDEXTYP)
Selection Text: INDEXNAM = ?...(INDEXNAM)
Selection Text: GVTYP = P+L statement account type
Selection Text: BILKT = Group account number
Title: Chart of Accounts
Text Symbol: 103 = Account name
Text Symbol: 102 = Account name is missing
Text Symbol: 101 = Chart of accounts name is missing in log-on language
Text Symbol: 100 = Chart of accounts name is missing in default language
Text Symbol: 010 = No accounts are assigned to the chart of accounts
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
POPUP_NO_LIST * CALL FUNCTION 'POPUP_NO_LIST'.
REUSE_ALV_FIELDCATALOG_MERGE CALL FUNCTION 'REUSE_ALV_FIELDCATALOG_MERGE' EXPORTING I_PROGRAM_NAME = G_REPID I_STRUCTURE_NAME = GC_STRNAM CHANGING CT_FIELDCAT = GT_FIELDCAT EXCEPTIONS INCONSISTENT_INTERFACE = 1 PROGRAM_ERROR = 2 OTHERS = 3.
REUSE_ALV_EVENTS_GET CALL FUNCTION 'REUSE_ALV_EVENTS_GET' EXPORTING I_LIST_TYPE = 0 IMPORTING ET_EVENTS = IT_EVENTS.
FAGL_BATCH_HEADING_PERFORM CALL FUNCTION 'FAGL_BATCH_HEADING_PERFORM' EXPORTING IS_BHDGD = BHDGD IMPORTING EO_FORM_GRID = lo_grid.
REUSE_ALV_COMMENTARY_WRITE * CALL FUNCTION 'REUSE_ALV_COMMENTARY_WRITE' * EXPORTING * IT_LIST_COMMENTARY = LT_LIST_TOP_OF_PAGE.
REUSE_ALV_LIST_DISPLAY CALL FUNCTION 'REUSE_ALV_LIST_DISPLAY' EXPORTING I_CALLBACK_PROGRAM = G_REPID I_CALLBACK_PF_STATUS_SET = 'SET_PF_STATUS' I_CALLBACK_USER_COMMAND = 'USER_COMMAND' IT_FIELDCAT = GT_FIELDCAT[] IT_EVENTS = GT_EVENTS[] IT_SORT = GT_SORT TABLES T_OUTTAB = GT_OUTTAB.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.