CHANGE_SETTINGS SAP Method of class CL_PROXY_WB_SETTINGS
Below is documentation, parameters and attributes of ABAP Method CHANGE_SETTINGS within SAP class CL_PROXY_WB_SETTINGS. There is also a number of example ABAP code snipts to help you use the functionality of this method.
This method is available within SAP systems depending on your version and release level, you can view further information by entering the class name CL_PROXY_WB_SETTINGS into the relevant SAP transactions such as SE24 or SE80, and then selecting the method you are interested in.
Method Type - Static
This is a Static Method so you can call it directlyThe following technical details of method CHANGE_SETTINGS can also be found below:
- Importing parameters
- Exporting parameters
- Changing parameters
- Returning parameters
- Exceptions
- Coding Examples
Parameters of Method CHANGE_SETTINGS
.| Name | Type | Data Type | Description | Default Value |
| PRX_EXPERT | Importing | TYPE PRX_BOOLEAN | ABAP Proxies: Boolean Value ('X' = True, Space = False) | |
| PRX_SPDI | Importing | TYPE PRX_BOOLEAN | ABAP Proxies: Boolean Value ('X' = True, Space = False) | |
| PRX_TREE_ORDER | Importing | TYPE PRX_UI_WB_TREE_ORDER | ||
| PRX_XML_TAB | Importing | TYPE PRX_BOOLEAN | ABAP Proxies: Boolean Value ('X' = True, Space = False) |
Exceptions of Method CHANGE_SETTINGS
This method does not have any exceptionsExample ABAP coding
DATA: lv_PRX_EXPERT TYPE PRX_BOOLEAN,
lv_PRX_SPDI TYPE PRX_BOOLEAN,
lv_PRX_TREE_ORDER TYPE PRX_UI_WB_TREE_ORDER,
lv_PRX_XML_TAB TYPE PRX_BOOLEAN,
lv_other TYPE c.
CALL METHOD CL_PROXY_WB_SETTINGS=>CHANGE_SETTINGS(
EXPORTING
PRX_EXPERT = lv_PRX_EXPERT
PRX_SPDI = lv_PRX_SPDI
PRX_TREE_ORDER = lv_PRX_TREE_ORDER
PRX_XML_TAB = lv_PRX_XML_TAB ).
Links to Related Class(s)
CL_PROXY...Full list of available SAP object classes
Search for further information about these or an SAP related objects