<?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>topic Re: Error and providing back files in Alteryx Server Discussions</title>
    <link>https://community.alteryx.com/t5/Alteryx-Server-Discussions/Error-and-providing-back-files/m-p/613590#M6990</link>
    <description>&lt;P&gt;Thanks for this and will be able to resolve the issue using a bit of a blend.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I tried getting the user to input a file directory, however, when the directory is their c:\ drive from the server's perspective, it can't write to their machine and doesn't know where this address is. That solution does work if it's a network directory.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;So what we have done is set up a folder on the network where the individuals required have read-only access, then getting the workflow to write to the file prior to the comment tool erroring and then pointing the users to that directory within the comment error.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks for the help, it contributed to the final solution.&lt;/P&gt;</description>
    <pubDate>Mon, 03 Aug 2020 16:11:34 GMT</pubDate>
    <dc:creator>TimTim</dc:creator>
    <dc:date>2020-08-03T16:11:34Z</dc:date>
    <item>
      <title>Error and providing back files</title>
      <link>https://community.alteryx.com/t5/Alteryx-Server-Discussions/Error-and-providing-back-files/m-p/611761#M6948</link>
      <description>&lt;P&gt;Hi,&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I've built a workflow to run on the Alteryx server. What it does it to check some data quality and load the data into a SQL server.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;However, if I find any errors in the data, I write these out to a 'log' file (excel) and use a comment tool to kill the process so that the data never makes it to the SQL server.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The bit that I'm getting stuck on is, how do I give the user back the log file, as on a successful run of the workflow it can be provided back, but is there no capability to provide this log file back if it errors?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="TimTim_0-1596039761864.png" style="width: 400px;"&gt;&lt;img src="https://community.alteryx.com/t5/image/serverpage/image-id/125951i8D8B2CE082C8B74A/image-size/medium?v=v2&amp;amp;px=400" role="button" title="TimTim_0-1596039761864.png" alt="TimTim_0-1596039761864.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 29 Jul 2020 16:24:57 GMT</pubDate>
      <guid>https://community.alteryx.com/t5/Alteryx-Server-Discussions/Error-and-providing-back-files/m-p/611761#M6948</guid>
      <dc:creator>TimTim</dc:creator>
      <dc:date>2020-07-29T16:24:57Z</dc:date>
    </item>
    <item>
      <title>Re: Error and providing back files</title>
      <link>https://community.alteryx.com/t5/Alteryx-Server-Discussions/Error-and-providing-back-files/m-p/611867#M6951</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.alteryx.com/t5/user/viewprofilepage/user-id/105550"&gt;@TimTim&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;There are a couple of ways you could handle creating output for the user.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;One option is to have the user input a file directory (using a Text Input Tool) to the app, which will then be used to configure the output path. Then log will be written to whatever location is provided.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Another option is to always have it write out a log file that can either give a status of success or enumerate the errors present. This will require logic to ensure that the file is written before the message tool ends the process.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I hope this is helpful.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 29 Jul 2020 19:48:29 GMT</pubDate>
      <guid>https://community.alteryx.com/t5/Alteryx-Server-Discussions/Error-and-providing-back-files/m-p/611867#M6951</guid>
      <dc:creator>JustinBabbitt</dc:creator>
      <dc:date>2020-07-29T19:48:29Z</dc:date>
    </item>
    <item>
      <title>Re: Error and providing back files</title>
      <link>https://community.alteryx.com/t5/Alteryx-Server-Discussions/Error-and-providing-back-files/m-p/613590#M6990</link>
      <description>&lt;P&gt;Thanks for this and will be able to resolve the issue using a bit of a blend.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I tried getting the user to input a file directory, however, when the directory is their c:\ drive from the server's perspective, it can't write to their machine and doesn't know where this address is. That solution does work if it's a network directory.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;So what we have done is set up a folder on the network where the individuals required have read-only access, then getting the workflow to write to the file prior to the comment tool erroring and then pointing the users to that directory within the comment error.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks for the help, it contributed to the final solution.&lt;/P&gt;</description>
      <pubDate>Mon, 03 Aug 2020 16:11:34 GMT</pubDate>
      <guid>https://community.alteryx.com/t5/Alteryx-Server-Discussions/Error-and-providing-back-files/m-p/613590#M6990</guid>
      <dc:creator>TimTim</dc:creator>
      <dc:date>2020-08-03T16:11:34Z</dc:date>
    </item>
  </channel>
</rss>

