Now Experience Workspace - Export Record Form into PDF.

Michael Chang1
Tera Guru

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. 

find_real_file.png

By in Workspace, such option does not exist in the form. find_real_file.png

 

 

 Does anyone know how can we generate PDF in Agent Workspace / Now Experience Workspace?

 

5 REPLIES 5

Community Alums
Not applicable

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

Sai Kumar B
Mega Sage
Mega Sage

@Michael Chang 

I believe Browser "print" is the only option.

Michael Chang1
Tera Guru

Found this topic. so create a UI action to do so.

https://community.servicenow.com/community?id=community_question&sys_id=9e8f3b64dbc26450fa192183ca96191b 

 

Thanks guys. 

@Michael Chang yeah you try that approach

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
   
}