Dashbords or multi-pivot report PDF export not working DescriptionIf an instance has some ui scripts customizations it could break Export to PDF of a dashboard or Export to PDF of multi-pivot reports.Steps to Reproduce <!-- p.p1 {margin: 0.0px 0.0px 0.0px 0.0px; font: 10.0px 'Lucida Grande'; color: #404040; -webkit-text-stroke: #404040} p.p2 {margin: 0.0px 0.0px 0.0px 0.0px; font: 10.0px 'Lucida Grande'; color: #404040; -webkit-text-stroke: #404040; min-height: 12.0px} p.p3 {margin: 0.0px 0.0px 0.0px 0.0px; font: 10.0px 'Lucida Grande'; color: #404040; -webkit-text-stroke: #404040; background-color: #c72585} span.s1 {font-kerning: none; background-color: #c72585} span.s2 {font-kerning: none} --> Assumption: User who has admin right logged into a ServiceNow instance. Pre-Conditions: The instance should support Homepage export to PDF enabled using the WHTP server. Flow of Events: Create new homepage or open an existing homepageExport to pdf the dashboard Post-Condition: The export shows an error and PDF is not generatedWorkaroundExporting to PDF is a process that renders the Page converts it to a PDF. The rendering part is problematic and for some cases it is found some Global UI Scripts had some issues with that. To avoid the issue, change global UI scripts so they only run when not exporting to pdf. To do this: if (window.location.href.indexOf('WHTP') == -1) { .... // add your code here } As an alternative to using GlideAjax, use jQuery.ajax() or plain JavaScript ajax calls. Some customers have other customizations that could affect as well, check this Knowledge article: KB0623392 KB0623141 Related Problem: PRB1240966