R_PS_SUBMITCONFIGCHANGE 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 R_PS_SUBMITCONFIGCHANGE 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_SUBMITCONFIGCHANGE
Text Symbol: 001 = Change executed completely
Text Symbol: 002 = Posting error
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
CO_OCM_CONFIGURATION_CHANGE CALL FUNCTION 'CO_OCM_CONFIGURATION_CHANGE' EXPORTING AUFNR_IMP = S_AUFNR EXCEPTIONS ENQUEUE_FAILED = 1 CREATE_FAILED = 2 NOT_ALLOWED = 3 NO_PROFILE = 4 ERROR_MESSAGE = 5.
STATUS_CHECK CALL FUNCTION 'STATUS_CHECK' EXPORTING OBJNR = S_OBJNR STATUS = 'I0393' EXCEPTIONS OBJECT_NOT_FOUND = 1 STATUS_NOT_ACTIVE = 2.
ENQUEUE_ESORDER CALL FUNCTION 'ENQUEUE_ESORDER' EXPORTING AUFNR = S_AUFNR _SCOPE = '2' EXCEPTIONS FOREIGN_LOCK = 1 SYSTEM_FAILURE = 2.
RPY_MESSAGE_COMPOSE CALL FUNCTION 'RPY_MESSAGE_COMPOSE' EXPORTING LANGUAGE = SY-LANGU MESSAGE_ID = 'CN' MESSAGE_NUMBER = 011 MESSAGE_VAR1 = S_MSGV1 MESSAGE_VAR2 = S_MSGV2 IMPORTING MESSAGE_TEXT = S_MSGTEXT.
RPY_MESSAGE_COMPOSE CALL FUNCTION 'RPY_MESSAGE_COMPOSE' EXPORTING LANGUAGE = SY-LANGU MESSAGE_ID = 'COCMN' MESSAGE_NUMBER = 031 IMPORTING MESSAGE_TEXT = S_MSGTEXT.
RPY_MESSAGE_COMPOSE CALL FUNCTION 'RPY_MESSAGE_COMPOSE' EXPORTING LANGUAGE = SY-LANGU MESSAGE_ID = 'COCMN' MESSAGE_NUMBER = 111 IMPORTING MESSAGE_TEXT = S_MSGTEXT.
RPY_MESSAGE_COMPOSE CALL FUNCTION 'RPY_MESSAGE_COMPOSE' EXPORTING LANGUAGE = SY-LANGU MESSAGE_ID = 'COCM' MESSAGE_NUMBER = 021 IMPORTING MESSAGE_TEXT = S_MSGTEXT.
CO_ZV_ORDER_POST CALL FUNCTION 'CO_ZV_ORDER_POST' EXPORTING COMMIT_FLAG = 'X' EXT_FLG = 'X' TRANS_TYP = 'V' NO_GUI_MESSAGE = 'X' NO_DIALOG = 'X' EXCEPTIONS NO_CHANGE = 1 UPDATE_REJECT = 2 BUDGET_REJECT = 3 ERROR_MESSAGE = 4.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.