PSHLP_CACHE_ADMIN 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 PSHLP_CACHE_ADMIN into the relevant SAP transactions such as SE38 or SE80
Below is a list of transaction codes which are relevant to this SAP report
PSHLP90 - Administrator Workbench
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: PROJ_ID = D .
Selection Text: NTWK = Network
Selection Text: EXP_DATE = Expiry Date
Title: Program ZPS_ADMIN
Text Symbol: 038 = TREX-Based Cache
Text Symbol: 037 = Cache
Text Symbol: 036 = TREX-Based Cache Overview
Text Symbol: 035 = Refresh Overview
Text Symbol: 034 = Status of Object in the Cache
Text Symbol: 033 = Loading in Process
Text Symbol: 032 = Layout
Text Symbol: 031 = Export
Text Symbol: 030 = Print
Text Symbol: 029 = Filter
Text Symbol: 028 = Find More
Text Symbol: 027 = Find
Text Symbol: 026 = Sort in Descending Order
Text Symbol: 025 = Sort in Ascending Order
Text Symbol: 024 = Invalid
Text Symbol: 023 = Valid
Text Symbol: 019 = Update Invalid Projects/Netwks
Text Symbol: 018 = Launch Project Editor
Text Symbol: 017 = Delete Projects/Networks
Text Symbol: 016 = Project
Text Symbol: 015 = Status
Text Symbol: 014 = Deletion Confirmation
Text Symbol: 013 = Do you want to remove the projects/networks?
Text Symbol: 011 = Cache Overview
Text Symbol: 010 = Network
Text Symbol: 009 = Expiry Date
Text Symbol: 008 = Load Date
Text Symbol: 007 = Data Loss
Text Symbol: 006 = Do you want to save your changes?
Text Symbol: 005 = No
Text Symbol: 004 = Yes
Text Symbol: 003 = Administrator: Project/Network Selection
INCLUDE PSHLP_CACHE_ADMIN_TOP.
No SAP DATABASE tables are accessed within this REPORT code!
RS_SET_SELSCREEN_STATUS CALL FUNCTION 'RS_SET_SELSCREEN_STATUS' EXPORTING p_status = 'ADMIN_STATUS_TREX' TABLES p_exclude = lt_fcode.
RS_SET_SELSCREEN_STATUS CALL FUNCTION 'RS_SET_SELSCREEN_STATUS' EXPORTING p_status = 'ADMIN_STATUS' TABLES p_exclude = lt_fcode.
PSHLP_LOG_FM CALL FUNCTION 'PSHLP_LOG_FM' EXPORTING im_dynnr = '410'.
PSHLP_LOG_FM CALL FUNCTION 'PSHLP_LOG_FM' EXPORTING im_dynnr = '420'.
PSHLP_CACHE_FG_LOAD CALL FUNCTION 'PSHLP_CACHE_FG_LOAD' EXPORTING it_objnr = lt_objnr iv_expiry_date = exp_date IMPORTING ev_error = lv_error.
PSHLP_CACHE_FG_LOAD CALL FUNCTION 'PSHLP_CACHE_FG_LOAD' IN BACKGROUND TASK EXPORTING it_objnr = lt_objnr iv_expiry_date = exp_date.
PSHLP_CACHE_FG_LOAD CALL FUNCTION 'PSHLP_CACHE_FG_LOAD' EXPORTING it_objnr = lt_objnr iv_expiry_date = exp_date.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.