<?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>AI skill document extraction</title><link>https://community.appian.com/discussions/f/rules/29756/ai-skill-document-extraction</link><description>Hi All, 
 We have a scenario to extract data from PDF. In interface we have a screen to upload file and on submit starting a process using a!start process to extract data from that file. It is working fine from developer mode. 
 when we add that screen</description><dc:language>en-US</dc:language><generator>Telligent Community 12</generator><item><title>RE: AI skill document extraction</title><link>https://community.appian.com/thread/118058?ContentTypeID=1</link><pubDate>Thu, 24 Aug 2023 06:46:46 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:fee10f13-9738-4489-84b0-090b1f80ff8f</guid><dc:creator>Sri Ram Kaja</dc:creator><description>&lt;p&gt;Hi,&lt;/p&gt;
&lt;p&gt;&lt;a href="https://docs.appian.com/suite/help/23.3/fnc_system_a_submituploadedfiles.html"&gt;a!submitUploadedFiles() Function - Appian 23.3&lt;/a&gt;, Please go through the link. In examples, you can see how to&amp;nbsp;Upload a file outside of a start form or task and start a process.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="text"&gt;
    a!buttonArrayLayout(
      buttons: {
        a!buttonWidget(
          label: &amp;quot;Submit&amp;quot;,
          style: &amp;quot;PRIMARY&amp;quot;,
          saveInto: a!startProcess(
            /* Replace this with a constant of type Process Model that writes the image ID */
            processModel: cons!PROCESS_MODEL_CONSTANT,
            processParameters: {
              vehicle: local!data
            },
            /* Only upload the files if the process completes successfully */
            onSuccess: a!submitUploadedFiles(
              onSuccess: a!save(local!submissionSuccessful, true),
              onError: a!save(local!submissionSuccessful, false)
            ),
            onError: a!save(local!submissionSuccessful, false)
          )
        )
      },
      align: &amp;quot;START&amp;quot;
    )&lt;/pre&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: AI skill document extraction</title><link>https://community.appian.com/thread/118057?ContentTypeID=1</link><pubDate>Thu, 24 Aug 2023 06:32:58 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:b740900e-611b-4363-84d1-64cb5734e58a</guid><dc:creator>priyankabandi</dc:creator><description>&lt;p&gt;We are using same button for submitting file and starting a process. Is there any alternative way.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: AI skill document extraction</title><link>https://community.appian.com/thread/118053?ContentTypeID=1</link><pubDate>Thu, 24 Aug 2023 05:09:11 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:35303072-7ebd-4007-b39b-72aa97075056</guid><dc:creator>venkateswarak7510</dc:creator><description>&lt;p&gt;&lt;img alt=" " src="/resized-image/__size/320x240/__key/communityserver-discussions-components-files/15/image-3.png" /&gt;&lt;/p&gt;
&lt;p&gt;We should not use start process for data extraction as file will not be uploaded to appian until the action is completed so if you want to extract file upload file and complete action in the interface or you can use a!submituploadedfiles() function in a!save before starting the process&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;img alt=" " src="/resized-image/__size/320x240/__key/communityserver-discussions-components-files/15/image4.png" /&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>