<?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 filename is changed in schedule in Product Forum</title>
    <link>https://community.blueprism.com/t5/Product-Forum/filename-is-changed-in-schedule/m-p/53343#M8057</link>
    <description>​​Hi Blueprism somehow the filename is changed to Test_07\10\2020.txt from Test_07102020.txt when you run it in the scheduler.
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Is it blueprism or server/setup who change the date to a fileformat that is wrong.?&lt;/P&gt;
Have attached an example and description on the error&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Greetings&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Kristian Holm&lt;BR /&gt;RPA programmer&lt;BR /&gt;PenSam (Pension Company)&lt;BR /&gt;Copenhagen Denmark&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
    <pubDate>Wed, 07 Oct 2020 09:46:00 GMT</pubDate>
    <dc:creator>KristianHolm1</dc:creator>
    <dc:date>2020-10-07T09:46:00Z</dc:date>
    <item>
      <title>filename is changed in schedule</title>
      <link>https://community.blueprism.com/t5/Product-Forum/filename-is-changed-in-schedule/m-p/53343#M8057</link>
      <description>​​Hi Blueprism somehow the filename is changed to Test_07\10\2020.txt from Test_07102020.txt when you run it in the scheduler.
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Is it blueprism or server/setup who change the date to a fileformat that is wrong.?&lt;/P&gt;
Have attached an example and description on the error&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Greetings&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Kristian Holm&lt;BR /&gt;RPA programmer&lt;BR /&gt;PenSam (Pension Company)&lt;BR /&gt;Copenhagen Denmark&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Wed, 07 Oct 2020 09:46:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/filename-is-changed-in-schedule/m-p/53343#M8057</guid>
      <dc:creator>KristianHolm1</dc:creator>
      <dc:date>2020-10-07T09:46:00Z</dc:date>
    </item>
    <item>
      <title>RE: filename is changed in schedule</title>
      <link>https://community.blueprism.com/t5/Product-Forum/filename-is-changed-in-schedule/m-p/53344#M8058</link>
      <description>Hi Kristian,&lt;BR /&gt;&lt;BR /&gt;I think that Today() expression is returning a different result. Running it in studio, it is resulting in 07-10-2020, but from the control room, you are getting 07/10/2020. So, a calc stage to remove the dashes does not do anything. You are getting an error when you try to save the file because those backslashes look like a path, but that file path does not exist.&lt;BR /&gt;&lt;BR /&gt;Instead of a calc stage to get the date in the desired format, try using the Format Date action from Utility - Date and Time Manipulation. Still use Today() for the value of the Date Time input, and for your case "ddMMyyyy" for the format. &lt;BR /&gt;&lt;BR /&gt;Let me know if that works!&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Patrick Aucoin&lt;BR /&gt;Senior Product Consultant&lt;BR /&gt;Blue Prism&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Wed, 07 Oct 2020 14:14:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/filename-is-changed-in-schedule/m-p/53344#M8058</guid>
      <dc:creator>PatrickAucoin</dc:creator>
      <dc:date>2020-10-07T14:14:00Z</dc:date>
    </item>
    <item>
      <title>RE: filename is changed in schedule</title>
      <link>https://community.blueprism.com/t5/Product-Forum/filename-is-changed-in-schedule/m-p/53345#M8059</link>
      <description>Hi Blueprism when you using the format date from Utility - Date and Time object then it is working in the scheduler. &lt;BR /&gt;&lt;BR /&gt;Greetings&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Kristian Holm&lt;BR /&gt;RPA programmer&lt;BR /&gt;PenSam (Pension Company)&lt;BR /&gt;Copenhagen Denmark&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Wed, 07 Oct 2020 18:45:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/filename-is-changed-in-schedule/m-p/53345#M8059</guid>
      <dc:creator>KristianHolm1</dc:creator>
      <dc:date>2020-10-07T18:45:00Z</dc:date>
    </item>
    <item>
      <title>RE: filename is changed in schedule</title>
      <link>https://community.blueprism.com/t5/Product-Forum/filename-is-changed-in-schedule/m-p/53346#M8060</link>
      <description>&lt;P&gt;Hi &lt;A href="https://community.blueprism.com/network/profile?UserKey=c010373d-864d-45ba-80ff-e50ea5840fbe" target="_blank" rel="noopener"&gt;Kristian&lt;/A&gt;,&lt;BR /&gt;&lt;BR /&gt;Have you run scheduler from same machine ?&lt;BR /&gt;&lt;BR /&gt;You can add below logic in your process&lt;/P&gt;
&lt;OL&gt;
&lt;LI&gt;if found "\" then replace with "_" or blank (input will be 23\10\2010 – Output will be 23_10_2010 or 23102010 according to your condition)&lt;/LI&gt;
&lt;LI&gt;If found "-" replace with "_" or blank (input will be 23-10-2010 – Output will be 23_10_2010 or 23102010 according to your condition)&lt;/LI&gt;
&lt;/OL&gt;
Note - Use instr function with calculation stage&lt;BR /&gt;&lt;BR /&gt;I hope it will help you.&lt;BR /&gt;&lt;BR /&gt;Thanks&lt;BR /&gt;Nilesh&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Nilesh Jadhav &lt;BR /&gt;Senior RPA Specialist&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Thu, 08 Oct 2020 14:52:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/filename-is-changed-in-schedule/m-p/53346#M8060</guid>
      <dc:creator>NileshJadhavBP</dc:creator>
      <dc:date>2020-10-08T14:52:00Z</dc:date>
    </item>
  </channel>
</rss>

