RS_BGRFC_PERFORMANCE_MONITOR is a standard Executable ABAP Report available within your SAP system (depending on your version and release level). It is used for bgRFC Performance Monitor gives you an overview of the bgRFC units in the system...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 RS_BGRFC_PERFORMANCE_MONITOR into the relevant SAP transactions such as SE38 or SE80
Below is a list of transaction codes which are relevant to this SAP report
SBGRFCPERFMON - bgRFC Performance Monitor
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: P_TASKS = Number of Tasks
Selection Text: P_OUB = Monitor Outbound Scenario
Selection Text: P_INB = Monitor Inbound Scenario
Selection Text: P_GROUP = Parallelized Logon Group
Title: bgRFC Performance Monitor
Text Symbol: QSS = SYSFAIL Q Units
Text Symbol: QUL = Queues per Unit
Text Symbol: QUS = Queues per Unit
Text Symbol: QXL = Executable Type Q Units
Text Symbol: QXS = Executable Q Units
Text Symbol: SCI = Scenario
Text Symbol: TAL = Total Number of Type T Units
Text Symbol: TAS = Total T Units
Text Symbol: TEL = Type T Units in Execution
Text Symbol: TES = Exec. T Units
Text Symbol: TOL = Type T Units, Other States
Text Symbol: TOS = Other T Units
Text Symbol: TQL = Time of Oldest Exec. Type Q Unit
Text Symbol: TQS = Q Unit Time
Text Symbol: TSI = Parallelization
Text Symbol: TSL = Type T Units, SYSFAIL State
Text Symbol: TSS = SYSFAIL T Units
Text Symbol: TTL = Time of Oldest Exec. Type T Unit
Text Symbol: TTS = T Unit Time
Text Symbol: UAL = Total Number of Units
Text Symbol: UAS = Total Units
Text Symbol: CTL = Client
Text Symbol: CTS = Client
Text Symbol: NDL = Name of Destination
Text Symbol: NDS = Dest.
Text Symbol: NQL = Number of Queues
Text Symbol: NQS = Number of Queues
Text Symbol: OQL = Date of Oldest Executable Type Q Unit
Text Symbol: OQS = Q Unit Date
Text Symbol: OTL = Date of Oldest Executable Type T Unit
Text Symbol: OTS = T Unit Date
Text Symbol: PMT = bgRFC Performance Monitor
Text Symbol: QAL = Total Number of Type Q Units
INCLUDE RS_BGRFC_PERFORM_MONITOR_TOP . " GLOBAL DATA
INCLUDE BGRFC_MONITORING_CONSTANTS.
INCLUDE RS_BGRFC_PERFORM_MONITOR_F01 . " FORM-ROUTINES "#EC INCL_OK
INCLUDE RS_BGRFC_PERFORM_MON_CLS_DEF.
INCLUDE RS_BGRFC_PERFORM_MON_CLS_IMPL.
No SAP DATABASE tables are accessed within this REPORT code!
AUTHORITY_CHECK_TCODE CALL FUNCTION 'AUTHORITY_CHECK_TCODE' EXPORTING TCODE = sy-TCODE EXCEPTIONS OK = 1 NOT_OK = 2 OTHERS = 3.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.