RFPRSHOW 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 RFPRSHOW 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: SO_BELNR = Document Numbers
Selection Text: SO_BUKRS = Company codes
Selection Text: SO_GJAHR = Fiscal years
Selection Text: SO_KUNNR = Customers
Selection Text: SO_LIFNR = Vendors
Selection Text: SO_RACCT = General ledger accounts
Selection Text: SO_RLDNR = Ledger
Title: Database Analysis FI-AP/AR
Text Symbol: 001 = Table GLT0
Text Symbol: 002 = Tables BSIS and BSAS
Text Symbol: 003 = Table BSEG
Text Symbol: 004 = Table BKPF
Text Symbol: 005 = Table KNC1
Text Symbol: 006 = Table KNC3
Text Symbol: 007 = Tables BSID and BSAD
Text Symbol: 008 = Table LFC1
Text Symbol: 009 = Table LFC3
Text Symbol: 010 = Tables BSIK and BSAK
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
REUSE_ALV_FIELDCATALOG_MERGE CALL FUNCTION 'REUSE_ALV_FIELDCATALOG_MERGE' EXPORTING I_STRUCTURE_NAME = 'DD02T' CHANGING CT_FIELDCAT = LT_FIELDCAT EXCEPTIONS OTHERS = 1.
REUSE_ALV_LIST_DISPLAY CALL FUNCTION 'REUSE_ALV_LIST_DISPLAY' EXPORTING I_CALLBACK_PROGRAM = 'RFPRSHOW' I_CALLBACK_USER_COMMAND = 'MAIN_CALLBACK' IT_FIELDCAT = LT_FIELDCAT TABLES T_OUTTAB = LT_TABLES 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.