Post Incident Report downloading failing from within Major Incident WorkbenchIssue When downloading a PDF of the Post Incident Report we get a an export failed error regardless of browser.ResolutionIt might not work as the oauth creds could have been expired or oauth setup might not be there.Use the fix script , which is shipped as part of 'com.snc.whtp' plugin.<?xml version="1.0" encoding="UTF-8"?><glidefix description="Register the oauth application for WHTP"><script>(function() {var gr = new GlideRecord('oauth_entity');gr.initialize();gr.type = 'client';gr.name = 'WebKit HTML to PDF';gr.comments = 'Used by the service WebKit HTML to PDF'// keep in sync with WHTPClient.javagr.client_id = '1624ac93b46221009eb8191f0e41680d';var builder = new SNC.OAuthEntityBuilder(gr);builder.autoSetClientSecret(20);gr.insert();gs.print('Created new OAuth application: ' + gr.name);})();</script></glidefix>Also if the record 'WebKit HTML to PDF' on the Application Registries (oauth_entry) table is missing. Import the record to the affected instance