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. |
|