R_PS_CONFIGCHANGE is a standard Executable ABAP Report available within your SAP system (depending on your version and release level). It is used for Configuration Changes for Networks If a network is created by copying a configurable standard network and is manually assigned to a sales document, the characteristic value assignment can be copied from the sales document...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 R_PS_CONFIGCHANGE 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.
Title: R_PS_CONFIGCHANGE
Text Symbol: 001 = Execution mode
Text Symbol: 002 = Networks with configuration change necessary
Text Symbol: 003 = Change comparison executed completely
Text Symbol: 004 = Network
Text Symbol: 005 = Sales document
Text Symbol: 006 = Item
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
STATUS_CHECK CALL FUNCTION 'STATUS_CHECK' EXPORTING OBJNR = ITAB-I_OBJNR STATUS = 'I0393' EXCEPTIONS OBJECT_NOT_FOUND = 1 STATUS_NOT_ACTIVE = 2.
RPY_MESSAGE_COMPOSE CALL FUNCTION 'RPY_MESSAGE_COMPOSE' EXPORTING LANGUAGE = SY-LANGU MESSAGE_ID = 'COCMN' MESSAGE_NUMBER = '111' MESSAGE_VAR1 = MSGV1 IMPORTING MESSAGE_TEXT = MSGTEXT.
RPY_MESSAGE_COMPOSE CALL FUNCTION 'RPY_MESSAGE_COMPOSE' EXPORTING LANGUAGE = SY-LANGU MESSAGE_ID = 'COCMN' MESSAGE_NUMBER = '112' MESSAGE_VAR1 = MSGV1 IMPORTING MESSAGE_TEXT = MSGTEXT.
HELP_OBJECT_SHOW CALL FUNCTION 'HELP_OBJECT_SHOW' EXPORTING DOKCLASS = 'NA' DOKLANGU = SY-LANGU DOKNAME = 'CN011' CALLED_BY_PROGRAM = SY-CPROG MSG_VAR_1 = MSGV1 MSG_VAR_2 = MSGV2 TABLES LINKS = LINKS_DUMMY.
HELP_OBJECT_SHOW CALL FUNCTION 'HELP_OBJECT_SHOW' EXPORTING DOKCLASS = 'NA' DOKLANGU = SY-LANGU DOKNAME = 'COCMN031' CALLED_BY_PROGRAM = SY-CPROG TABLES LINKS = LINKS_DUMMY.
HELP_OBJECT_SHOW CALL FUNCTION 'HELP_OBJECT_SHOW' EXPORTING DOKCLASS = 'NA' DOKLANGU = SY-LANGU DOKNAME = 'COCMN111' CALLED_BY_PROGRAM = SY-CPROG TABLES LINKS = LINKS_DUMMY.
HELP_OBJECT_SHOW CALL FUNCTION 'HELP_OBJECT_SHOW' EXPORTING DOKCLASS = 'NA' DOKLANGU = SY-LANGU DOKNAME = 'COCM021' CALLED_BY_PROGRAM = SY-CPROG TABLES LINKS = LINKS_DUMMY.
HELP_OBJECT_SHOW CALL FUNCTION 'HELP_OBJECT_SHOW' EXPORTING DOKCLASS = 'NA' DOKLANGU = SY-LANGU DOKNAME = 'COCMN111' CALLED_BY_PROGRAM = SY-CPROG MSG_VAR_1 = MSGV1 TABLES LINKS = LINKS_DUMMY.
HELP_OBJECT_SHOW CALL FUNCTION 'HELP_OBJECT_SHOW' EXPORTING DOKCLASS = 'NA' DOKLANGU = SY-LANGU DOKNAME = 'COCMN112' CALLED_BY_PROGRAM = SY-CPROG MSG_VAR_1 = MSGV1 TABLES LINKS = LINKS_DUMMY.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.