POWL_WLOAD 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 POWL_WLOAD 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: APPLID = D .
Selection Text: ENFDEL = Discard old cached results
Selection Text: MAXPJOBS = Max number of parallel jobs
Selection Text: QSPERJOB = Queries per Job
Selection Text: QUERY = D .
Selection Text: SRVGRP = D .
Selection Text: TYPE = D .
Selection Text: USER = D .
Selection Text: USE_DAY = Query last accessed in (days)
Title: Refresh of active POWL queries
Text Symbol: 001 = Query restrictions
Text Symbol: 002 = Processing restrictions
Text Symbol: 003 = Additional settings
Text Symbol: 004 = queries processed
Text Symbol: 005 = jobs processed
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
ENQUEUE_EPOWL_ACT_QUERY call function 'ENQUEUE_EPOWL_ACT_QUERY' exporting mode_powl_act_query = 'X' mandt = sy-mandt query = ls_query-query applid = ls_query-applid username = ls_query-username exceptions foreign_lock = 1 system_failure = 2 others = 3.
POWL_QUERY_REFRESH CALL FUNCTION 'POWL_QUERY_REFRESH' STARTING NEW TASK ls_query-result_cache_id destination in group srvgrp performing come_back on end of task exporting i_query_data = ls_query i_feeder_name = ls_type-feeder i_no_refresh_lock = 'X' i_langu = lv_langu exceptions resource_failure = 1 system_failure = 2 communication_failure = 3 others = 4.
POWL_QUERY_REFRESH_MASS CALL FUNCTION 'POWL_QUERY_REFRESH_MASS' STARTING NEW TASK ls_query-result_cache_id destination in group srvgrp performing come_back_n_queries_at_once on end of task exporting it_queries = lt_query_pack enfdel = enfdel exceptions resource_failure = 1 system_failure = 2 communication_failure = 3 others = 4.
DEQUEUE_EPOWL_ACT_QUERY call function 'DEQUEUE_EPOWL_ACT_QUERY' exporting mode_powl_act_query = 'X' mandt = sy-mandt query = ls_query-query applid = ls_query-applid username = ls_query-username _synchron = ' '.
SAPGUI_PROGRESS_INDICATOR CALL FUNCTION 'SAPGUI_PROGRESS_INDICATOR' EXPORTING percentage = lv_percentage text = lv_text.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.