PM_PS_INTEGRATION 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 PM_PS_INTEGRATION into the relevant SAP transactions such as SE38 or SE80
Below is a list of transaction codes which are relevant to this SAP report
ADPMPS2 - PM/PS Integration
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.
Title: PM/PS Integration
Text Symbol: 001 = Order Assignment to Project
Text Symbol: 002 = Orders
Text Symbol: 003 = Network
Text Symbol: 004 = Functional location
Text Symbol: 005 = Project definition
Text Symbol: 010 = Selection Variants for Order Selection
Text Symbol: 011 = Selection Variants for Project Selection
Text Symbol: 019 = Legend
Text Symbol: 020 = Project definition
Text Symbol: 021 = WBS element
Text Symbol: 022 = Network
Text Symbol: 023 = Network activity
Text Symbol: 024 = Order
Text Symbol: 025 = Order Operation
Text Symbol: 050 = Result
Text Symbol: 051 = Assignments Saved
Text Symbol: 052 = See Error Log
Text Symbol: 291 = Save Changes?
Text Symbol: 300 = Job Definition
Text Symbol: 301 = No job has been defined
Text Symbol: 302 = Go back anyway?
INCLUDE PMPS_TOP.
INCLUDE PMPS_RFW.
INCLUDE PMPS_INI.
No SAP DATABASE tables are accessed within this REPORT code!
SAPGUI_PROGRESS_INDICATOR CALL FUNCTION 'SAPGUI_PROGRESS_INDICATOR' EXPORTING percentage = l_prog text = text-001 EXCEPTIONS OTHERS = 1.
POPUP_TO_CONFIRM_STEP CALL FUNCTION 'POPUP_TO_CONFIRM_STEP' EXPORTING textline1 = text-291 titel = text-001 IMPORTING answer = answer.
DEQUEUE_ALL CALL FUNCTION 'DEQUEUE_ALL'.
FUNCTION_EXISTS * CALL FUNCTION 'FUNCTION_EXISTS' * EXPORTING * funcname = 'MEB_FUNC_ACTIVE' * EXCEPTIONS * function_not_exist = 1 * OTHERS = 2.
MEB_FUNC_ACTIVE * CALL FUNCTION 'MEB_FUNC_ACTIVE' * IMPORTING * e_meb_active = l_meb_active.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.