PS_SUMM_PROTOCOL 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 PS_SUMM_PROTOCOL into the relevant SAP transactions such as SE38 or SE80
Below is a list of transaction codes which are relevant to this SAP report
CJH2 - Project Inheritance Log
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: P_DISVAR = Layout
Title: Project Inheritance Log
Text Symbol: BAV = Settings
Text Symbol: 051 = To network
Text Symbol: 050 = Network
Text Symbol: 049 = To sales order
Text Symbol: 048 = Sales order
Text Symbol: 047 = To WBS element
Text Symbol: 046 = WBS element
Text Symbol: 045 = To project
Text Symbol: 044 = Project
Text Symbol: 020 = Selection
Text Symbol: 011 = Inheritance Evaluation: Log
Text Symbol: 010 = Inheritance Evaluation: Result
Text Symbol: 002 = Time
Text Symbol: 001 = Date
INCLUDE PS_SUMM_INHERIT_F01.
INCLUDE PS_SUMM_PROTOCOL_F01.
No SAP DATABASE tables are accessed within this REPORT code!
MESSAGES_INITIALIZE CALL FUNCTION 'MESSAGES_INITIALIZE'.
PS_SUMM_READ_AND_EXTEND_PSERB CALL FUNCTION 'PS_SUMM_READ_AND_EXTEND_PSERB' TABLES IT_OBJECTS = S_ONR00 ET_PSERB = S_PSERB EXCEPTIONS NO_VALID_INPUT = 1 INHERITATION_ERROR = 2.
OBJECT_IDENTIFICATION_GET CALL FUNCTION 'OBJECT_IDENTIFICATION_GET' EXPORTING OBJNR = S_PSERB-OBJNR IMPORTING IDENTIFICATION = OBJID.
DDIF_NAMETAB_GET CALL FUNCTION 'DDIF_NAMETAB_GET' EXPORTING TABNAME = 'PSERB' TABLES DFIES_TAB = S_DFIES.
REUSE_ALV_LIST_DISPLAY CALL FUNCTION 'REUSE_ALV_LIST_DISPLAY' EXPORTING I_CALLBACK_PROGRAM = SY-CPROG I_BUFFER_ACTIVE = con_on I_CALLBACK_PF_STATUS_SET = 'ALV_SET_PF_STATUS' I_CALLBACK_USER_COMMAND = 'ALV_USER_COMMAND' IT_EVENTS = LT_EVENTS[] IT_FIELDCAT = S_FIELDCAT[] IS_VARIANT = GD_DISVARIANT IS_LAYOUT = GS_LAYOUT I_SAVE = 'A' TABLES T_OUTTAB = S_PSERB_EXT.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.