InterviewSolution
| 1. |
If Customization Doesn’t Run Properly, Is It Possible To Disable All Customization By Providing A Configuration? |
|
Answer» If a CUSTOMIZATION doesn’t run properly, all customization can be disabled by providing a single CONFIGURATION. In support situation, this can be done by setting a breakpoint early in sap-ui-core.js and then executing the following CODE in the Console − -window[“sap-ui-config”]= window[“sap-ui-config”]||{}; -window[“sap-ui-config”][“xx-disableCustomizing”] = true; For security REASON this setting is not possible using a URL parameter. To dump the complete extensibility data, use the following command in the browser Console: sap.ui.core.CustomizingConfiguration.log() As a result, an object is returned in the Console which contains the customizing configuration, structured by TYPE of customization and view name. If a Customization doesn’t run properly, all customization can be disabled by providing a single configuration. In support situation, this can be done by setting a breakpoint early in sap-ui-core.js and then executing the following code in the Console − -window[“sap-ui-config”]= window[“sap-ui-config”]||{}; -window[“sap-ui-config”][“xx-disableCustomizing”] = true; For security reason this setting is not possible using a URL parameter. To dump the complete extensibility data, use the following command in the browser Console: sap.ui.core.CustomizingConfiguration.log() As a result, an object is returned in the Console which contains the customizing configuration, structured by type of customization and view name. |
|