POWL_D03 is a standard Executable ABAP Report available within your SAP system (depending on your version and release level). It is used for This report checks the mapping consistency and existence of POWL table entries, such as application IDs, POWL types and queries...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 POWL_D03 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: ANY = Any Previously Saved Results
Selection Text: ANY_VAL = Date/ Time/ User
Selection Text: CHK_REF = Check If Query Refreshed After
Selection Text: COMP = Compare Any Two Results
Selection Text: COMPLAST = Compare Current with Last
Selection Text: CURRENT = Current Selection Results
Selection Text: LAST = Last Saved Res of Current User
Selection Text: P_APPLID = Application ID
Selection Text: P_DATE = Last Query Refresh After
Selection Text: P_PTYP = POWL Type
Selection Text: P_QUERY = Query ID
Selection Text: RES1 = Result 1
Selection Text: RES2 = Result 2
Selection Text: SAVE_RES = Save Current Results
Selection Text: SHOW_ALL = Display All Results
Selection Text: SHOW_ERR = Display Only Differences
Title: Check Consistency of POWL Table Entries
Text Symbol: 044 = Chk If Query Refreshed After
Text Symbol: 043 = Outdated Query
Text Symbol: 042 = Default View doesn't exist
Text Symbol: 041 = Category doesn't exist
Text Symbol: 040 = Last refresh after
Text Symbol: 039 = Not reg. in personalizn. frmwrk.
Text Symbol: 037 = Date/ Time/ User
Text Symbol: 036 = Query
Text Symbol: 035 = No restrictions entered
Text Symbol: 034 = Selection Restrictions
Text Symbol: 002 = Display Options
Text Symbol: 007 = Select Options for Current Results
Text Symbol: 008 = Display Options For Compare Results
Text Symbol: 009 = Type not assigned to this ApplID
Text Symbol: 010 = Type doesn't exist
Text Symbol: 011 = Query doesn't exist
Text Symbol: 012 = OK
Text Symbol: 013 = Query not assigned to an ApplID
Text Symbol: 014 = Not assigned to a query
Text Symbol: 015 = Not assigned to an application ID
Text Symbol: 016 = Not assigned to a query/ applid
INCLUDE POWL_D03_TOP.
No SAP DATABASE tables are accessed within this REPORT code!
RS_REFRESH_FROM_SELECTOPTIONS CALL FUNCTION 'RS_REFRESH_FROM_SELECTOPTIONS' EXPORTING curr_report = sy-repid * IMPORTING * SP = TABLES selection_table = lt_selcrit * EXCEPTIONS * NOT_FOUND = 1 * NO_REPORT = 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.