Show TOC

Stylesheets for Clickjacking Framing ProtectionLocate this document in the navigation structure

The stylesheets required for frameworks to adapt to clickjacking are of default or custom types. You can customize the parameter values of the custom type.

Default Stylesheet
<style id='SAP-antiClickjackStyle'> body {display: none !important} </style>
<script src = 'http://<host>:<port>/sap.com~tc~lm~itsam~servlet~clickjacking/js/ClickjackingProtection.js'
id = 'SAP-antiClickjackScript'
data-styleId = 'SAP-antiClickjackStyle'
data-checkService = 'http://<host>:<port>/sap.com~tc~lm~itsam~servlet~clickjacking/check'
data-checkDefault = 'ALLOW'
data-deniedMessage = 'This frame cannot be used in'
data-releaseTimeoutMessage = 'No Response from parent'
data-applyProtectionCallback = ''
data-whiteList = ''
type = 'text/javascript'>
</script>
Custom Stylesheet
<style id='MyOwnStyleID'> body {display: none !important} </style>
<script src = 'http://<host>:<port>/sap.com~tc~lm~itsam~servlet~clickjacking/js/ClickjackingProtection.js'
id = 'SAP-antiClickjackScript'
data-styleId = 'MyOwnStyleID'
data-checkService = 'http://<host>:<port>/sap.com~tc~lm~itsam~servlet~clickjacking/check'
data-checkDefault = 'ALLOW'
data-deniedMessage = 'This frame cannot be used in'
data-releaseTimeoutMessage = 'Parent system is not reachable within the defined time'
data-applyProtectionCallback = 'OwnProtectionCallBack'
data-whiteList = 'sap.com,sap.corp'
type = 'text/javascript'>
</script>