Now Experience Workspace - Export Record Form into PDF.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-07-2021 08:51 AM
Dear all,
Do you know how we can export a record in PDF? In UI16, we have the this option to download a single record into PDF format.
By in Workspace, such option does not exist in the form.
Does anyone know how can we generate PDF in Agent Workspace / Now Experience Workspace?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-07-2021 09:49 AM
Hi Michael,
It can export the list of records in PDF but not seen anything for single record in workspace.
Please mark my answer as Correct & Helpful, if applicable.
Thanks
Sandeep
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-07-2021 09:58 AM
I believe Browser "print" is the only option.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-07-2021 05:47 PM
Found this topic. so create a UI action to do so.
https://community.servicenow.com/community?id=community_question&sys_id=9e8f3b64dbc26450fa192183ca96191b
Thanks guys.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-08-2021 09:45 AM
function onClick(g_form) {
var url = '/' + g_form.getTableName() + '.do?sys_id=' +
g_form.getUniqueValue() + '&sysparm_view=Workspace&sysparm_media=print';
top.window.open(url, '_blank');
OR
g_navigation.openPopup(url); //This also works
}