REA_FIND_MISSING_SOLPATH is a standard Executable ABAP Report available within your SAP system (depending on your version and release level). It is used for Check for missing solution paths In every BRE run (see transaction
If you would like to execute this report or see the full code listing simply enter REA_FIND_MISSING_SOLPATH into the relevant SAP transactions such as SE38 or SE80
Below is a list of transaction codes which are relevant to this SAP report
MISS - Extract: Check Solution Paths
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: C_SETNO = Backlog-Set
Selection Text: C_ACTCAT = Activity
Title: Check Error Extract for Missing/Inactive Solution Paths
Text Symbol: 014 = Execute Permiss.
Text Symbol: 013 = Solution
Text Symbol: 012 = Cause
Text Symbol: 011 = Solution Path of Error
Text Symbol: 010 = (Error Extract with Solution Path)
Text Symbol: 009 = Skip Sol.
Text Symbol: 008 = Inactive
Text Symbol: 007 = Error Extract with Solution Path
Text Symbol: 006 = Person Responsible
Text Symbol: 005 = Message Number
Text Symbol: 004 = Message Class
Text Symbol: 003 = Error Extracts w/o Solution Path:
Text Symbol: 002 = Error Extracts
Text Symbol: 001 = Enter Backlog Set
INCLUDE: IEAMSG00.
No SAP DATABASE tables are accessed within this REPORT code!
ISU_DB_ERREXTR_SELECT CALL FUNCTION 'ISU_DB_ERREXTR_SELECT' EXPORTING X_ACTCAT = C_ACTCAT X_SETNO = C_SETNO TABLES YT_ERREXTR = IERREXTR_BI EXCEPTIONS NOT_FOUND = 1 SYSTEM_ERROR = 2 OTHERS = 3.
ISU_DB_SOLPATH_SELECT CALL FUNCTION 'ISU_DB_SOLPATH_SELECT' TABLES YT_SOLPATH = I_ALL_SOLPATH EXCEPTIONS NOT_FOUND = 1 SYSTEM_ERROR = 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.
REA_FIND_MISSING_SOLPATH - Check Error Extract for Missing/Inactive Solution Paths REA_FIND_MISSING_SOLPATH - Check Error Extract for Missing/Inactive Solution Paths REA_EVER_READ_ARCHIVE - Report REA_EVER_READ_ARCHIVE REA_EVER_READ_ARCHIVE - Report REA_EVER_READ_ARCHIVE REA_EVER_DELETE_F01 - Include REA_EVER_DELETE_F01 REA_EVER_DELETE - Delete Archived Utility Contracts