<?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: Is work Queues only way to get timestamp of last run of a process? in Product Forum</title>
    <link>https://community.blueprism.com/t5/Product-Forum/Is-work-Queues-only-way-to-get-timestamp-of-last-run-of-a/m-p/71079#M23684</link>
    <description>Thanks Walter, this seems to be a new perspective of the solution.&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Boni Sahithi&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
    <pubDate>Thu, 02 Sep 2021 06:36:00 GMT</pubDate>
    <dc:creator>BoniSahithi</dc:creator>
    <dc:date>2021-09-02T06:36:00Z</dc:date>
    <item>
      <title>Is work Queues only way to get timestamp of last run of a process?</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Is-work-Queues-only-way-to-get-timestamp-of-last-run-of-a/m-p/71076#M23681</link>
      <description>Hi&lt;BR /&gt;&lt;BR /&gt;I am working with a POC and the process is scheduled to run once everyday. The process fetches emails from previous day's run timestamp to Now() daily.&lt;BR /&gt;Is there any other way to get the last run timestamp of a process, which can be used in the next run of the same process...Appreciate your help..Thanks&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Boni Sahithi&lt;BR /&gt;------------------------------</description>
      <pubDate>Mon, 09 Aug 2021 12:20:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Is-work-Queues-only-way-to-get-timestamp-of-last-run-of-a/m-p/71076#M23681</guid>
      <dc:creator>BoniSahithi</dc:creator>
      <dc:date>2021-08-09T12:20:00Z</dc:date>
    </item>
    <item>
      <title>RE: Is work Queues only way to get timestamp of last run of a process?</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Is-work-Queues-only-way-to-get-timestamp-of-last-run-of-a/m-p/71077#M23682</link>
      <description>Hi Boni,&lt;BR /&gt;&lt;BR /&gt;You could log the value of Now() to a file and use this to record the previous execution time. Reading this file at the start of the process would give you the previous execution time to work from then you could write out the current value of Now() to the file with the time you worked up to ready for the next execution. You would have to take care to ensure file access is restricted to ensure it cannot be modified outside of the process.&lt;BR /&gt;&lt;BR /&gt;Regards&lt;BR /&gt;&lt;BR /&gt;Chris&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Chris McGowan&lt;BR /&gt;Senior Technical Consultant&lt;BR /&gt;Blue Prism&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Mon, 09 Aug 2021 13:21:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Is-work-Queues-only-way-to-get-timestamp-of-last-run-of-a/m-p/71077#M23682</guid>
      <dc:creator>chris.mcgowan</dc:creator>
      <dc:date>2021-08-09T13:21:00Z</dc:date>
    </item>
    <item>
      <title>RE: Is work Queues only way to get timestamp of last run of a process?</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Is-work-Queues-only-way-to-get-timestamp-of-last-run-of-a/m-p/71078#M23683</link>
      <description>Depending on what mail program you use I would recommend another approach, which would also add restartability to your process.&lt;BR /&gt;I would recommend to move every processed mail to another location (eg folder in Outlook) and clean the inbox this way.&lt;BR /&gt;When the process starts it can scan the inbox for existing mails, regardless when they arrived because the mails in the inbox can only have arrived after the previous run.&lt;BR /&gt;If the process terminates for whatever reasons, you won't have to care about if you should consider this run's timestamp or take the previous run's timestamp, since it will not matter.&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Walter Koller&lt;BR /&gt;Solution Manager&lt;BR /&gt;Erste Group IT International GmbH&lt;BR /&gt;Europe/Vienna&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Wed, 11 Aug 2021 08:07:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Is-work-Queues-only-way-to-get-timestamp-of-last-run-of-a/m-p/71078#M23683</guid>
      <dc:creator>Walter.Koller</dc:creator>
      <dc:date>2021-08-11T08:07:00Z</dc:date>
    </item>
    <item>
      <title>RE: Is work Queues only way to get timestamp of last run of a process?</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Is-work-Queues-only-way-to-get-timestamp-of-last-run-of-a/m-p/71079#M23684</link>
      <description>Thanks Walter, this seems to be a new perspective of the solution.&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Boni Sahithi&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Thu, 02 Sep 2021 06:36:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Is-work-Queues-only-way-to-get-timestamp-of-last-run-of-a/m-p/71079#M23684</guid>
      <dc:creator>BoniSahithi</dc:creator>
      <dc:date>2021-09-02T06:36:00Z</dc:date>
    </item>
    <item>
      <title>RE: Is work Queues only way to get timestamp of last run of a process?</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Is-work-Queues-only-way-to-get-timestamp-of-last-run-of-a/m-p/71080#M23685</link>
      <description>Thanks Chris, solution was helpful.&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Boni Sahithi&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Thu, 02 Sep 2021 06:37:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Is-work-Queues-only-way-to-get-timestamp-of-last-run-of-a/m-p/71080#M23685</guid>
      <dc:creator>BoniSahithi</dc:creator>
      <dc:date>2021-09-02T06:37:00Z</dc:date>
    </item>
  </channel>
</rss>

