SAP Reports / Programs

RSMONGWY_CHANGE_PARAMETER SAP ABAP Report - Program for switching between gateway parameters







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


ABAP code to call this SAP report using the submit statement

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.






SUBMIT RSMONGWY_CHANGE_PARAMETER. "Basic submit
SUBMIT RSMONGWY_CHANGE_PARAMETER AND RETURN. "Return to original report after report execution complete
SUBMIT RSMONGWY_CHANGE_PARAMETER VIA SELECTION-SCREEN. "Display selection screen of submitted report to user
    See more syntax options for the ABAP SUBMIT statement


Text pool values


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!


INCLUDES used within this REPORT RSMONGWY_CHANGE_PARAMETER

INCLUDE TSKHINCL.
INCLUDE LSGWYDEF.


TABLES used within REPORT and the associated SELECT statement:





No SAP DATABASE tables are accessed within this REPORT code!


Function Modules used within report and the associated call statement:

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.



Contribute (Add Comments)

Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.







The contribute/comments section below therefore offer's an opportunity for anyone to add additional information. This can be anything from useful hints, tips and screen shots to relevant SAP notes or anything else you feel is relevant to this report.

This will then be available for everyone to easily find by simply searching on the report name RSMONGWY_CHANGE_PARAMETER or its description.