RSMONGWY_CHANGE_PARAMETER 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 RSMONGWY_CHANGE_PARAMETER 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: Program for switching between gateway parameters
Text Symbol: 001 = Dynamic Changes of Profile Parameters
Text Symbol: 002 = Change
Text Symbol: 003 = Cancel
Text Symbol: 004 = Param. Name
Text Symbol: 005 = Old value
Text Symbol: 006 = New value
Text Symbol: 101 = Unknown OP code
Text Symbol: 102 = Communication error
Text Symbol: 103 = No authorization to change parameters
Text Symbol: 104 = Changes only allowed within system
Text Symbol: 105 = Parameter & cannot be changed
Text Symbol: 106 = Parameter & not found
Text Symbol: 107 = Invalid value # for parameter &
Text Symbol: 108 = Error in Shared Memory of Profile Params
Text Symbol: 109 = Unexpected error
Text Symbol: 110 = Parameter & changed
Text Symbol: 111 = Log
Text Symbol: 112 = Parameter & cannot be changed dynamically
Text Symbol: 113 = Changes are not permanent and are lost when the gateway is restarted!
INCLUDE TSKHINCL.
INCLUDE LSGWYDEF.
No SAP DATABASE tables are accessed within this REPORT code!
GWY_READ_PARAMETER CALL FUNCTION 'GWY_READ_PARAMETER' EXPORTING GWHOST = ACTGWHOST GWSERV = ACTGWSERV TABLES PARAMETER = GWPARAMS EXCEPTIONS OTHERS = 1.
PFL_SHOW_PARAMETER_DOCU CALL FUNCTION 'PFL_SHOW_PARAMETER_DOCU' EXPORTING PARAMETER_NAME = PARANAME EXCEPTIONS OTHERS = 1.
GWY_CHANGE_PARAMETER CALL FUNCTION 'GWY_CHANGE_PARAMETER' EXPORTING GWHOST = ACTGWHOST GWSERV = ACTGWSERV PARAMETER_NAME = PNAME PARAMETER_VALUE = PVALUE EXCEPTIONS GWY_UNKNOWN_OPCODE = 1 GWY_COMMUNICATION_FAILURE = 2 GWY_NOT_AUTHORIZED = 3 GWY_NOT_IN_SAME_SYSTEM = 4 GWY_NOT_CHANGEABLE = 5 GWY_NOT_FOUND = 6 GWY_INVALID_VALUE = 7 GWY_SHMPRF_ERROR = 8 OTHERS = 9.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.
RSMONGWY_CHANGE_PARAMETER - Program for switching between gateway parameters RSMONGWY_CHANGE_PARAMETER - Program for switching between gateway parameters RSMONGWY_ALV_INIT_ALV - Include RSMONGWY_ALV_INIT_ALV RSMONGWY_ALV_INIT - RSMONGWYALVINIT RSMONGWY_ALV - Gateway Monitor RSMONGWY_ALV - Gateway Monitor