PROTOCTOT_451 is a standard Executable ABAP Report available within your SAP system (depending on your version and release level). It is used for Evaluation of (parallel) error log (for statistical backlog sets) Use this report for evaluating a parallel billing run...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 PROTOCTOT_451 into the relevant SAP transactions such as SE38 or SE80
Below is a list of transaction codes which are relevant to this SAP report
PROT451 - Evaluate Error Log (Parallel Run)
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: AKTYP = Activity
Selection Text: C_LANGU = Language
Selection Text: C_MESS = Display message text
Selection Text: C_SORT = Sort Accord. to Frequency
Selection Text: S_LAUFD = Date ID
Selection Text: S_LAUFI = Identification
Title: Evaluate Error Log (Parallel Run)
Text Symbol: 012 = Start Information
Text Symbol: 011 = Language
Text Symbol: 010 = Display Message Text
Text Symbol: 009 = Sort Accord. to Frequency
Text Symbol: 008 = Activity
Text Symbol: 007 = Identification
Text Symbol: 006 = Date ID
Text Symbol: 005 = Mass Run Evaluation
Text Symbol: 004 = Program Completed
Text Symbol: 003 = End of Error list
Text Symbol: 002 = Message
Text Symbol: 001 = Start of Error List
Text Symbol: 013 = User
Text Symbol: 018 = End Complete Error Message of all Selected Mass Runs
Text Symbol: 017 = Start Complete Error List of All Selected Mass Runs
Text Symbol: 016 = There Are no Error Messages in the Log
Text Symbol: 015 = Time
Text Symbol: 014 = Date
INCLUDE REAPROT02DAT.
No SAP DATABASE tables are accessed within this REPORT code!
APPL_LOG_READ_DB_WITH_LOGNO CALL FUNCTION 'APPL_LOG_READ_DB_WITH_LOGNO' TABLES LOGNUMBERS = IT_LOGNR MESSAGES = I_BALM.
ISU_DB_ERPL_SELECT CALL FUNCTION 'ISU_DB_ERPL_SELECT' EXPORTING X_LAUFD = PLAUFD X_LAUFI = PLAUFI X_AKTYP = PAKTYP TABLES YT_ERPL = PIT_ERPL EXCEPTIONS NOT_FOUND = 1 NOT_QUALIFIED = 2 SYSTEM_ERROR = 3 OTHERS = 4.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.