<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>question Re: Need to generate Word Document in Community Central forum</title>
    <link>https://www.servicenow.com/community/community-central-forum/need-to-generate-word-document/m-p/3316008#M3670</link>
    <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://www.servicenow.com/community/user/viewprofilepage/user-id/312979"&gt;@Avinash44&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I recently worked on a requirement where I needed to &lt;STRONG&gt;generate an official letter (Word format)&lt;/STRONG&gt; from a record in a &lt;STRONG&gt;custom table&lt;/STRONG&gt; in ServiceNow. I’m sharing the full solution here in case it helps someone with a similar use case.&lt;/P&gt;&lt;P&gt;The best part? &lt;STRONG&gt;No scripting required&lt;/STRONG&gt; – this is all done using ServiceNow's built-in &lt;STRONG&gt;Document Templates&lt;/STRONG&gt; feature.&amp;nbsp;&lt;/P&gt;&lt;HR /&gt;&lt;H3&gt;&amp;nbsp;Use Case&lt;/H3&gt;&lt;P&gt;Let’s say you have a custom table like u_request_letter where users submit request forms. You want to create a downloadable &lt;STRONG&gt;.docx letter&lt;/STRONG&gt; for each record (such as approval letters, certificates, summaries, etc.).&lt;/P&gt;&lt;HR /&gt;&lt;H3&gt;&amp;nbsp;Steps to Implement&lt;/H3&gt;&lt;H4&gt;&lt;span class="lia-unicode-emoji" title=":small_blue_diamond:"&gt;🔹&lt;/span&gt; Step 1: Activate Document Templates Plugin&lt;/H4&gt;&lt;OL&gt;&lt;LI&gt;&lt;P&gt;Go to &lt;STRONG&gt;System Definition &amp;gt; Plugins&lt;/STRONG&gt;&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;Search for: Document Templates&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;Activate the plugin: com.glide.document_generator&lt;/P&gt;&lt;/LI&gt;&lt;/OL&gt;&lt;HR /&gt;&lt;H4&gt;&lt;span class="lia-unicode-emoji" title=":small_blue_diamond:"&gt;🔹&lt;/span&gt; Step 2: Create a Word (.docx) Template&lt;/H4&gt;&lt;OL&gt;&lt;LI&gt;&lt;P&gt;Open Microsoft Word&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;Write your letter format and use placeholders like ${user_name}, ${request_number}, etc.&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;Save the file as: Request_Letter_Template.docx&lt;/P&gt;&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;&lt;span class="lia-unicode-emoji" title=":memo:"&gt;📝&lt;/span&gt; Example content:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;nginx&lt;/DIV&gt;&lt;DIV class=""&gt;&lt;SPAN&gt;&lt;SPAN class=""&gt;Dear&lt;/SPAN&gt; &lt;SPAN class=""&gt;${user_name}&lt;/SPAN&gt;, Your request (&lt;SPAN class=""&gt;${request_number}&lt;/SPAN&gt;) has been approved. Request Type: &lt;SPAN class=""&gt;${request_type}&lt;/SPAN&gt; Status: &lt;SPAN class=""&gt;${state}&lt;/SPAN&gt; Description: &lt;SPAN class=""&gt;${short_description}&lt;/SPAN&gt; Regards, ServiceNow Team&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;HR /&gt;&lt;H4&gt;&lt;span class="lia-unicode-emoji" title=":small_blue_diamond:"&gt;🔹&lt;/span&gt; Step 3: Create the Document Template in ServiceNow&lt;/H4&gt;&lt;OL&gt;&lt;LI&gt;&lt;P&gt;Go to &lt;STRONG&gt;Document Templates &amp;gt; Document Templates&lt;/STRONG&gt;&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;Click &lt;STRONG&gt;New&lt;/STRONG&gt;&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;Set the table to your custom table (e.g., u_request_letter)&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;Upload your .docx file&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;Submit the form&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;Open it again and click &lt;STRONG&gt;Auto-map fields&lt;/STRONG&gt;&lt;/P&gt;&lt;/LI&gt;&lt;/OL&gt;&lt;HR /&gt;&lt;H4&gt;&lt;span class="lia-unicode-emoji" title=":small_blue_diamond:"&gt;🔹&lt;/span&gt; Step 4: (Optional) Add a Button to Generate the Document&lt;/H4&gt;&lt;P&gt;To let users generate the letter directly from the form:&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;&lt;P&gt;Go to &lt;STRONG&gt;System Definition &amp;gt; UI Actions&lt;/STRONG&gt;&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;Create a new UI Action:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;&lt;P&gt;Table: Your custom table&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;Name: Generate Letter&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;Action type: Form Button&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;Script:&lt;/P&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;javascript&lt;/DIV&gt;&lt;DIV class=""&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class=""&gt;&lt;SPAN&gt;&lt;SPAN class=""&gt;var&lt;/SPAN&gt; generator = &lt;SPAN class=""&gt;new&lt;/SPAN&gt; sn_docgen.&lt;SPAN class=""&gt;DocumentGenerator&lt;/SPAN&gt;(); &lt;SPAN class=""&gt;var&lt;/SPAN&gt; output = generator.&lt;SPAN class=""&gt;generateTemplate&lt;/SPAN&gt;(&lt;SPAN class=""&gt;'&amp;lt;YOUR_TEMPLATE_SYS_ID&amp;gt;'&lt;/SPAN&gt;, current.&lt;SPAN class=""&gt;sys_id&lt;/SPAN&gt;); action.&lt;SPAN class=""&gt;setRedirectURL&lt;/SPAN&gt;(output.&lt;SPAN class=""&gt;url&lt;/SPAN&gt;); &lt;/SPAN&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;Replace &amp;lt;YOUR_TEMPLATE_SYS_ID&amp;gt; with the actual Sys ID of your uploaded template.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;/LI&gt;&lt;/OL&gt;&lt;H3&gt;Final Output&lt;/H3&gt;&lt;P&gt;Now when you click the &lt;STRONG&gt;"Generate Letter"&lt;/STRONG&gt; button on a record, ServiceNow will generate a Word document with values filled in from the record. You can also use &lt;STRONG&gt;Flow Designer&lt;/STRONG&gt; to send this as an email attachment if needed.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;H3&gt;Pro Tips&lt;/H3&gt;&lt;UL&gt;&lt;LI&gt;&lt;P&gt;You can use dot-walking for related fields like ${caller.name}.&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;Make sure field names in the template match the ones in your table.&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;The document can also be auto-generated through Flow using the &lt;STRONG&gt;Generate Document&lt;/STRONG&gt; action.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Happy building!&amp;nbsp;&lt;BR /&gt;— Saadat Ali—&lt;/P&gt;</description>
    <pubDate>Wed, 09 Jul 2025 16:40:03 GMT</pubDate>
    <dc:creator>ali bhatti</dc:creator>
    <dc:date>2025-07-09T16:40:03Z</dc:date>
    <item>
      <title>Need to generate Word Document</title>
      <link>https://www.servicenow.com/community/community-central-forum/need-to-generate-word-document/m-p/3315756#M3665</link>
      <description>&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am looking for an option/suggestion that, whether in ServiceNow, is it possible to generate Word document. I have a requirement that, Client has shared some pre-defined templates and in that, we need to map certain values from the record (Case table).&lt;BR /&gt;So by surfing in the internet, I found that, in &lt;STRONG&gt;Document Templates,&amp;nbsp;&lt;/STRONG&gt;we can able to achieve it by installing some plugins. I tried installing those and tried creating sample document templates, but still I am not sure what configuration am I missing, as the values are not mapping.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;So if anyone worked on this and have some insights on this, please provide me the explanation and steps also if that needs to be followed, so that it will be really helpful.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Below are the things I tried from my end:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;1. Created one sample word document (.docx) and inside that I have added some random paragraph along with field which needs to be mapped with Case table.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Content present in the word doc ,for example:&lt;/P&gt;&lt;P&gt;The Number is ${number}.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Also, I tried with multiple combinations. For eg: ${number} / {{number}} / number / {number}. But still no luck.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;2. Created new document template in servicenow by selecting Word Template and attached the above word doc in the document field.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;3. Tried clicking the "Parse word document" related link, but it doesn't create any. So I tried with manual mapping and here I can see couple of fields "Document Field", "Field Name" and in these fields, I provided values with multiple combinations as per above (number, {{number}}, ${number}...) and in Mapping field, I selected Number.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;4. Once I added the mapping manually, I can see Preview Button appeared in the Document Template, I selected respective Case record and clicked on "Generate Preview", it generates a word document and attached in the same document template and when I check the preview doc, I dont see anything got mapped.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Whatever I entered in the word document, I can still see the same.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I know its very big message but just wanted to let you all know, what i tried. So if anyone could provide insights on this, it will be really helpful.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 09 Jul 2025 14:09:08 GMT</pubDate>
      <guid>https://www.servicenow.com/community/community-central-forum/need-to-generate-word-document/m-p/3315756#M3665</guid>
      <dc:creator>Avinash44</dc:creator>
      <dc:date>2025-07-09T14:09:08Z</dc:date>
    </item>
    <item>
      <title>Re: Need to generate Word Document</title>
      <link>https://www.servicenow.com/community/community-central-forum/need-to-generate-word-document/m-p/3315796#M3666</link>
      <description>&lt;P&gt;&lt;a href="https://www.servicenow.com/community/user/viewprofilepage/user-id/312979"&gt;@Avinash44&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Document template can only generate PDF and not Word file.&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="AnkurBawiskar_0-1752070793224.png" style="width: 400px;"&gt;&lt;img src="https://www.servicenow.com/community/image/serverpage/image-id/454651iBA2270D1BF710FF8/image-size/medium?v=v2&amp;amp;px=400" role="button" title="AnkurBawiskar_0-1752070793224.png" alt="AnkurBawiskar_0-1752070793224.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;Word document can be generated as part of separate application Legal Service Delivery but it's a paid plugin I believe&lt;/P&gt;
&lt;P&gt;&lt;A href="https://www.servicenow.com/docs/bundle/store-release-notes/page/release-notes/store/employee-service-management/store-rn-esm-word-doc-templates.html" target="_blank" rel="noopener"&gt;Word Document Templates release notes&lt;/A&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If my response helped please mark it correct and close the thread so that it benefits future readers.&lt;/P&gt;</description>
      <pubDate>Wed, 09 Jul 2025 14:21:15 GMT</pubDate>
      <guid>https://www.servicenow.com/community/community-central-forum/need-to-generate-word-document/m-p/3315796#M3666</guid>
      <dc:creator>Ankur Bawiskar</dc:creator>
      <dc:date>2025-07-09T14:21:15Z</dc:date>
    </item>
    <item>
      <title>Re: Need to generate Word Document</title>
      <link>https://www.servicenow.com/community/community-central-forum/need-to-generate-word-document/m-p/3316008#M3670</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://www.servicenow.com/community/user/viewprofilepage/user-id/312979"&gt;@Avinash44&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I recently worked on a requirement where I needed to &lt;STRONG&gt;generate an official letter (Word format)&lt;/STRONG&gt; from a record in a &lt;STRONG&gt;custom table&lt;/STRONG&gt; in ServiceNow. I’m sharing the full solution here in case it helps someone with a similar use case.&lt;/P&gt;&lt;P&gt;The best part? &lt;STRONG&gt;No scripting required&lt;/STRONG&gt; – this is all done using ServiceNow's built-in &lt;STRONG&gt;Document Templates&lt;/STRONG&gt; feature.&amp;nbsp;&lt;/P&gt;&lt;HR /&gt;&lt;H3&gt;&amp;nbsp;Use Case&lt;/H3&gt;&lt;P&gt;Let’s say you have a custom table like u_request_letter where users submit request forms. You want to create a downloadable &lt;STRONG&gt;.docx letter&lt;/STRONG&gt; for each record (such as approval letters, certificates, summaries, etc.).&lt;/P&gt;&lt;HR /&gt;&lt;H3&gt;&amp;nbsp;Steps to Implement&lt;/H3&gt;&lt;H4&gt;&lt;span class="lia-unicode-emoji" title=":small_blue_diamond:"&gt;🔹&lt;/span&gt; Step 1: Activate Document Templates Plugin&lt;/H4&gt;&lt;OL&gt;&lt;LI&gt;&lt;P&gt;Go to &lt;STRONG&gt;System Definition &amp;gt; Plugins&lt;/STRONG&gt;&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;Search for: Document Templates&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;Activate the plugin: com.glide.document_generator&lt;/P&gt;&lt;/LI&gt;&lt;/OL&gt;&lt;HR /&gt;&lt;H4&gt;&lt;span class="lia-unicode-emoji" title=":small_blue_diamond:"&gt;🔹&lt;/span&gt; Step 2: Create a Word (.docx) Template&lt;/H4&gt;&lt;OL&gt;&lt;LI&gt;&lt;P&gt;Open Microsoft Word&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;Write your letter format and use placeholders like ${user_name}, ${request_number}, etc.&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;Save the file as: Request_Letter_Template.docx&lt;/P&gt;&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;&lt;span class="lia-unicode-emoji" title=":memo:"&gt;📝&lt;/span&gt; Example content:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;nginx&lt;/DIV&gt;&lt;DIV class=""&gt;&lt;SPAN&gt;&lt;SPAN class=""&gt;Dear&lt;/SPAN&gt; &lt;SPAN class=""&gt;${user_name}&lt;/SPAN&gt;, Your request (&lt;SPAN class=""&gt;${request_number}&lt;/SPAN&gt;) has been approved. Request Type: &lt;SPAN class=""&gt;${request_type}&lt;/SPAN&gt; Status: &lt;SPAN class=""&gt;${state}&lt;/SPAN&gt; Description: &lt;SPAN class=""&gt;${short_description}&lt;/SPAN&gt; Regards, ServiceNow Team&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;HR /&gt;&lt;H4&gt;&lt;span class="lia-unicode-emoji" title=":small_blue_diamond:"&gt;🔹&lt;/span&gt; Step 3: Create the Document Template in ServiceNow&lt;/H4&gt;&lt;OL&gt;&lt;LI&gt;&lt;P&gt;Go to &lt;STRONG&gt;Document Templates &amp;gt; Document Templates&lt;/STRONG&gt;&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;Click &lt;STRONG&gt;New&lt;/STRONG&gt;&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;Set the table to your custom table (e.g., u_request_letter)&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;Upload your .docx file&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;Submit the form&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;Open it again and click &lt;STRONG&gt;Auto-map fields&lt;/STRONG&gt;&lt;/P&gt;&lt;/LI&gt;&lt;/OL&gt;&lt;HR /&gt;&lt;H4&gt;&lt;span class="lia-unicode-emoji" title=":small_blue_diamond:"&gt;🔹&lt;/span&gt; Step 4: (Optional) Add a Button to Generate the Document&lt;/H4&gt;&lt;P&gt;To let users generate the letter directly from the form:&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;&lt;P&gt;Go to &lt;STRONG&gt;System Definition &amp;gt; UI Actions&lt;/STRONG&gt;&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;Create a new UI Action:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;&lt;P&gt;Table: Your custom table&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;Name: Generate Letter&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;Action type: Form Button&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;Script:&lt;/P&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;javascript&lt;/DIV&gt;&lt;DIV class=""&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class=""&gt;&lt;SPAN&gt;&lt;SPAN class=""&gt;var&lt;/SPAN&gt; generator = &lt;SPAN class=""&gt;new&lt;/SPAN&gt; sn_docgen.&lt;SPAN class=""&gt;DocumentGenerator&lt;/SPAN&gt;(); &lt;SPAN class=""&gt;var&lt;/SPAN&gt; output = generator.&lt;SPAN class=""&gt;generateTemplate&lt;/SPAN&gt;(&lt;SPAN class=""&gt;'&amp;lt;YOUR_TEMPLATE_SYS_ID&amp;gt;'&lt;/SPAN&gt;, current.&lt;SPAN class=""&gt;sys_id&lt;/SPAN&gt;); action.&lt;SPAN class=""&gt;setRedirectURL&lt;/SPAN&gt;(output.&lt;SPAN class=""&gt;url&lt;/SPAN&gt;); &lt;/SPAN&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;Replace &amp;lt;YOUR_TEMPLATE_SYS_ID&amp;gt; with the actual Sys ID of your uploaded template.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;/LI&gt;&lt;/OL&gt;&lt;H3&gt;Final Output&lt;/H3&gt;&lt;P&gt;Now when you click the &lt;STRONG&gt;"Generate Letter"&lt;/STRONG&gt; button on a record, ServiceNow will generate a Word document with values filled in from the record. You can also use &lt;STRONG&gt;Flow Designer&lt;/STRONG&gt; to send this as an email attachment if needed.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;H3&gt;Pro Tips&lt;/H3&gt;&lt;UL&gt;&lt;LI&gt;&lt;P&gt;You can use dot-walking for related fields like ${caller.name}.&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;Make sure field names in the template match the ones in your table.&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;The document can also be auto-generated through Flow using the &lt;STRONG&gt;Generate Document&lt;/STRONG&gt; action.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Happy building!&amp;nbsp;&lt;BR /&gt;— Saadat Ali—&lt;/P&gt;</description>
      <pubDate>Wed, 09 Jul 2025 16:40:03 GMT</pubDate>
      <guid>https://www.servicenow.com/community/community-central-forum/need-to-generate-word-document/m-p/3316008#M3670</guid>
      <dc:creator>ali bhatti</dc:creator>
      <dc:date>2025-07-09T16:40:03Z</dc:date>
    </item>
    <item>
      <title>Re: Need to generate Word Document</title>
      <link>https://www.servicenow.com/community/community-central-forum/need-to-generate-word-document/m-p/3316734#M3673</link>
      <description>&lt;P&gt;Hi Ankur,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks for the reply. Actually I have tried installing document templates plugin as well in my PDI and tried the above things. But still I couldnt find a way to achieve this.&lt;/P&gt;</description>
      <pubDate>Thu, 10 Jul 2025 08:52:07 GMT</pubDate>
      <guid>https://www.servicenow.com/community/community-central-forum/need-to-generate-word-document/m-p/3316734#M3673</guid>
      <dc:creator>Avinash44</dc:creator>
      <dc:date>2025-07-10T08:52:07Z</dc:date>
    </item>
    <item>
      <title>Re: Need to generate Word Document</title>
      <link>https://www.servicenow.com/community/community-central-forum/need-to-generate-word-document/m-p/3316762#M3674</link>
      <description>&lt;P&gt;Hi Ali,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have installed the Document Template plugin and tried the above mentioned steps. I just have one query, while creating document template, which type you have selected? Is it HTML Template or Word Template?&lt;/P&gt;&lt;P&gt;And if it's a Word template, there it's asking a document field to upload a word document and I have uploaded the sample doc and once I submit the request, I dont see any field mapping button functioanlity which you referred. Rather I can see related link called "Parse Word Document" and if I click that, nothing is doing actaully. Then I had to manually map and in that mapping only, I have tried multiple combinations but still it is not working.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Maybe, could you check the screenshot once which I shared above, so that you will see what exaclty I am seeing in the document templates and you could assist me.&lt;/P&gt;</description>
      <pubDate>Thu, 10 Jul 2025 09:07:17 GMT</pubDate>
      <guid>https://www.servicenow.com/community/community-central-forum/need-to-generate-word-document/m-p/3316762#M3674</guid>
      <dc:creator>Avinash44</dc:creator>
      <dc:date>2025-07-10T09:07:17Z</dc:date>
    </item>
    <item>
      <title>Re: Need to generate Word Document</title>
      <link>https://www.servicenow.com/community/community-central-forum/need-to-generate-word-document/m-p/3316765#M3675</link>
      <description>&lt;P&gt;&lt;a href="https://www.servicenow.com/community/user/viewprofilepage/user-id/312979"&gt;@Avinash44&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;that's what I mentioned, you cannot generate DOC using that plugin.&lt;/P&gt;
&lt;P&gt;it's clearly mentioned in Docs.&lt;/P&gt;
&lt;P&gt;If my response helped please mark it correct and close the thread so that it benefits future readers.&lt;/P&gt;</description>
      <pubDate>Thu, 10 Jul 2025 09:08:46 GMT</pubDate>
      <guid>https://www.servicenow.com/community/community-central-forum/need-to-generate-word-document/m-p/3316765#M3675</guid>
      <dc:creator>Ankur Bawiskar</dc:creator>
      <dc:date>2025-07-10T09:08:46Z</dc:date>
    </item>
    <item>
      <title>Re: Need to generate Word Document</title>
      <link>https://www.servicenow.com/community/community-central-forum/need-to-generate-word-document/m-p/3319973#M3702</link>
      <description>&lt;P&gt;Sure Ankur. Thanks.&lt;/P&gt;&lt;P&gt;I just want to ask one more thing, Client is expecting a functionality that , the document which we are generating (PDF) currently, which has some pre-defined template and binded with field values and if required, client will update that document on their end and once they updated it, from ServiceNow, we need to auto-populate certain values from the record in the updated template.&lt;/P&gt;&lt;P&gt;Is it really possible to update the template after its updated by client? As they are going to update only if its required. How to deal with this sceanrio?&lt;/P&gt;</description>
      <pubDate>Mon, 14 Jul 2025 09:28:09 GMT</pubDate>
      <guid>https://www.servicenow.com/community/community-central-forum/need-to-generate-word-document/m-p/3319973#M3702</guid>
      <dc:creator>Avinash44</dc:creator>
      <dc:date>2025-07-14T09:28:09Z</dc:date>
    </item>
    <item>
      <title>Re: Need to generate Word Document</title>
      <link>https://www.servicenow.com/community/community-central-forum/need-to-generate-word-document/m-p/3320003#M3704</link>
      <description>&lt;P&gt;&lt;a href="https://www.servicenow.com/community/user/viewprofilepage/user-id/312979"&gt;@Avinash44&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Once the document template is published whatever documents (PDF) will be generated will be based on those field mappings.&lt;/P&gt;
&lt;P&gt;if they move that template to Draft and edit and change the mappings System cannot automatically generate new documents (PDF) with the new mappings and attach to the earlier records.&lt;/P&gt;
&lt;P&gt;It has to be done manually or via a custom solution.&lt;/P&gt;
&lt;P&gt;I believe I have answered your original question and subsequent question as well.&lt;/P&gt;
&lt;P&gt;If my response helped please mark it correct and close the thread so that it benefits future readers.&lt;/P&gt;</description>
      <pubDate>Mon, 14 Jul 2025 09:55:43 GMT</pubDate>
      <guid>https://www.servicenow.com/community/community-central-forum/need-to-generate-word-document/m-p/3320003#M3704</guid>
      <dc:creator>Ankur Bawiskar</dc:creator>
      <dc:date>2025-07-14T09:55:43Z</dc:date>
    </item>
    <item>
      <title>Re: Need to generate Word Document</title>
      <link>https://www.servicenow.com/community/community-central-forum/need-to-generate-word-document/m-p/3389516#M4846</link>
      <description>&lt;P&gt;the plugin you mentioned doesn't exists&lt;BR /&gt;The field you mentioned for the document templates also doesn't exists&lt;/P&gt;</description>
      <pubDate>Wed, 24 Sep 2025 13:34:04 GMT</pubDate>
      <guid>https://www.servicenow.com/community/community-central-forum/need-to-generate-word-document/m-p/3389516#M4846</guid>
      <dc:creator>M_48</dc:creator>
      <dc:date>2025-09-24T13:34:04Z</dc:date>
    </item>
    <item>
      <title>Re: Need to generate Word Document</title>
      <link>https://www.servicenow.com/community/community-central-forum/need-to-generate-word-document/m-p/3389520#M4847</link>
      <description>&lt;P&gt;Hi Ankur,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'm looking for the plugin that gives me the possibility to export to a word document. I found the plugin sn_doc_word, but it's not clear to me how it works? Is it something I can use on any table or is that plugin linked to contract management only? Thanks in advance for your help.&lt;/P&gt;</description>
      <pubDate>Wed, 24 Sep 2025 13:37:20 GMT</pubDate>
      <guid>https://www.servicenow.com/community/community-central-forum/need-to-generate-word-document/m-p/3389520#M4847</guid>
      <dc:creator>M_48</dc:creator>
      <dc:date>2025-09-24T13:37:20Z</dc:date>
    </item>
    <item>
      <title>Re: Need to generate Word Document</title>
      <link>https://www.servicenow.com/community/community-central-forum/need-to-generate-word-document/m-p/3414049#M5246</link>
      <description>&lt;P&gt;I am having the same issue as you described, did you manage to find a way?&lt;/P&gt;</description>
      <pubDate>Tue, 28 Oct 2025 08:07:14 GMT</pubDate>
      <guid>https://www.servicenow.com/community/community-central-forum/need-to-generate-word-document/m-p/3414049#M5246</guid>
      <dc:creator>Reema707</dc:creator>
      <dc:date>2025-10-28T08:07:14Z</dc:date>
    </item>
    <item>
      <title>Re: Need to generate Word Document</title>
      <link>https://www.servicenow.com/community/community-central-forum/need-to-generate-word-document/m-p/3504296#M6298</link>
      <description>&lt;P&gt;Hi Avinash,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Based on what you described, this does not seem to be a configuration issue on your side.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The standard &lt;STRONG&gt;ServiceNow Document Templates&lt;/STRONG&gt; capability is mainly designed for &lt;STRONG&gt;PDF generation&lt;/STRONG&gt;, and support for generating &lt;STRONG&gt;Word (.docx)&lt;/STRONG&gt; documents directly from record data is very limited and inconsistent. That is why placeholders such as &lt;CODE&gt;${number}&lt;/CODE&gt; are not being mapped.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;In most implementations there are three common approaches:&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;1. Use Document Templates for PDF output&lt;/STRONG&gt;&lt;BR /&gt;This is the native approach supported by the platform.&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;2. Build a custom solution&lt;/STRONG&gt;&lt;BR /&gt;Some organizations create a scripted solution that reads a template and injects field values. However this requires maintenance and often becomes fragile over time.&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;3. Use a dedicated ServiceNow Store application&lt;/STRONG&gt;&lt;BR /&gt;There are applications specifically designed to generate Word/PDF documents from ServiceNow records using Word templates with field mappings (for example Office Templater).&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Also note that if the client updates the template later, previously generated documents will not automatically be regenerated unless additional logic is implemented.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;So the behavior you are seeing is expected with the standard Document Template functionality. Hope this helps.&lt;/P&gt;</description>
      <pubDate>Mon, 09 Mar 2026 14:50:30 GMT</pubDate>
      <guid>https://www.servicenow.com/community/community-central-forum/need-to-generate-word-document/m-p/3504296#M6298</guid>
      <dc:creator>Florisvmuijen</dc:creator>
      <dc:date>2026-03-09T14:50:30Z</dc:date>
    </item>
  </channel>
</rss>

