<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="https://community.appian.com/cfs-file/__key/system/syndication/rss.xsl" media="screen"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:wfw="http://wellformedweb.org/CommentAPI/"><channel><title>PDF from single DOCX(with fonts)  smartservice</title><link>https://community.appian.com/discussions/f/process/20984/pdf-from-single-docx-with-fonts-smartservice</link><description>even if delete the font configuration in this smart service its taking the font from its previous version. new document is not updating as per the current font configuration . what is the issue? can anyone help me in this pls</description><dc:language>en-US</dc:language><generator>Telligent Community 12</generator><item><title>RE: PDF from single DOCX(with fonts)  smartservice</title><link>https://community.appian.com/thread/99586?ContentTypeID=1</link><pubDate>Wed, 17 Aug 2022 03:58:43 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:66afb000-b956-4fa6-a5eb-7dbcdcd19088</guid><dc:creator>anushac0001</dc:creator><description>&lt;p&gt;Hi Mike,&lt;/p&gt;
&lt;p&gt;&lt;span&gt;I am still facing the same issue with &amp;quot;PDF from single DOCX(with fonts)&amp;quot; smartservice, I am passing &amp;quot;Arial&amp;quot; font documents stored in a constant and passing that as reference, but the generated pdf always has &amp;quot;Times New Roman&amp;quot;, can you please let me know???&lt;/span&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: PDF from single DOCX(with fonts)  smartservice</title><link>https://community.appian.com/thread/81731?ContentTypeID=1</link><pubDate>Mon, 17 May 2021 15:20:18 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:49ce5141-346d-48ab-adbb-b387e9a5c005</guid><dc:creator>Mike Schmitt</dc:creator><description>&lt;p&gt;I&amp;#39;m not sure what plug-in the smart service you&amp;#39;re using is found in, but in at least one other PDF utility I&amp;#39;m used to working with, the smart service does not properly pull the latest version of a versioned document (like a template that you&amp;#39;ve updated with subsequent versions).&lt;/p&gt;
&lt;p&gt;Our workaround to this is to always pass the template doc ID through an expression rule we&amp;#39;ve set up that gets the latest ID for the template (since, behind the scenes, separate IDs are really generated for each version, but only one is easily seen from the UI).&lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="java"&gt;/* UTIL_getLatestDocumentVersion */

todocument(
  tointeger(
    index(
      findcontentbyattribute(
        searchAllContent: false(),
        contentType: &amp;quot;document&amp;quot;,
        attributeName: &amp;quot;name&amp;quot;,
        searchCriteria: document(ri!document, &amp;quot;name&amp;quot;),
        rootFolder: document(ri!document, &amp;quot;folderId&amp;quot;)
      ),
      1,
      null()
    )
  )
)&lt;/pre&gt;&lt;/p&gt;
&lt;p&gt;Note that the above code assumes that you won&amp;#39;t have any duplicated document names within the folder containing your template.&amp;nbsp; Of course I&amp;#39;d always recommend against that anyway.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: PDF from single DOCX(with fonts)  smartservice</title><link>https://community.appian.com/thread/81728?ContentTypeID=1</link><pubDate>Mon, 17 May 2021 14:57:35 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:d6593f08-8ede-4d1e-bb69-313c3f2ad1a5</guid><dc:creator>bhuvanachandrans0002</dc:creator><description>&lt;p&gt;Hi udhay kumar,&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;Are you updating the document used for configuring font documents as a new version?&amp;nbsp;&lt;/p&gt;
&lt;p&gt;If yes, can you try to create a new document for font configuration and use it in this smart service?&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>