<?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 Issue in date handling in Blue Prism 7.4 in Product Forum</title>
    <link>https://community.blueprism.com/t5/Product-Forum/Issue-in-date-handling-in-Blue-Prism-7-4/m-p/121293#M53386</link>
    <description>&lt;P&gt;Hi community,&lt;/P&gt;&lt;P&gt;I'm currently migrating processes from Blue Prism 6.10 to version 7.4 and encountered an unexpected behavior related to date conversion.&lt;/P&gt;&lt;P&gt;In previous versions, I was able to assign a date string in the format dd/MM/yy&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;(e.g., extracted from a website) directly to a&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;STRONG&gt;data item of type Date&lt;/STRONG&gt;, and Blue Prism would parse it correctly.&lt;/P&gt;&lt;P&gt;However, in version 7.4, doing the same results in a conversion error or an invalid format exception. The exact same string that worked before is now rejected.&lt;/P&gt;&lt;P&gt;Has anyone else experienced this change? Is there any known regional setting or recommended workaround to force recognition of this date format?&lt;/P&gt;&lt;P&gt;Thanks in advance!&lt;/P&gt;</description>
    <pubDate>Tue, 01 Jul 2025 14:11:46 GMT</pubDate>
    <dc:creator>Federico.Tobares</dc:creator>
    <dc:date>2025-07-01T14:11:46Z</dc:date>
    <item>
      <title>Issue in date handling in Blue Prism 7.4</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Issue-in-date-handling-in-Blue-Prism-7-4/m-p/121293#M53386</link>
      <description>&lt;P&gt;Hi community,&lt;/P&gt;&lt;P&gt;I'm currently migrating processes from Blue Prism 6.10 to version 7.4 and encountered an unexpected behavior related to date conversion.&lt;/P&gt;&lt;P&gt;In previous versions, I was able to assign a date string in the format dd/MM/yy&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;(e.g., extracted from a website) directly to a&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;STRONG&gt;data item of type Date&lt;/STRONG&gt;, and Blue Prism would parse it correctly.&lt;/P&gt;&lt;P&gt;However, in version 7.4, doing the same results in a conversion error or an invalid format exception. The exact same string that worked before is now rejected.&lt;/P&gt;&lt;P&gt;Has anyone else experienced this change? Is there any known regional setting or recommended workaround to force recognition of this date format?&lt;/P&gt;&lt;P&gt;Thanks in advance!&lt;/P&gt;</description>
      <pubDate>Tue, 01 Jul 2025 14:11:46 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Issue-in-date-handling-in-Blue-Prism-7-4/m-p/121293#M53386</guid>
      <dc:creator>Federico.Tobares</dc:creator>
      <dc:date>2025-07-01T14:11:46Z</dc:date>
    </item>
    <item>
      <title>Re: Issue in date handling in Blue Prism 7.4</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Issue-in-date-handling-in-Blue-Prism-7-4/m-p/121300#M53388</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.blueprism.com/t5/user/viewprofilepage/user-id/40045"&gt;@Federico.Tobares&lt;/a&gt;,&lt;/P&gt;&lt;P&gt;In Blue Prism 6.10, the platform was more permissive with implicit date parsing. When you assigned a string like "31/12/23" to a Date data item, it relied more on the system’s regional settings or default .NET culture settings to interpret the format (dd/MM/yy, for example).&lt;/P&gt;&lt;P&gt;In Blue Prism 7.4, there’s a stricter and more consistent enforcement of date parsing, especially for non-standard formats. This was likely introduced for better stability and internationalization.&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Workarounds&lt;/EM&gt;&lt;BR /&gt;&lt;STRONG&gt;1: Use Utility - Date and Time VBO&lt;/STRONG&gt;&lt;BR /&gt;Use the &lt;STRONG&gt;Format DateTime&lt;/STRONG&gt; action in the built-in Utility - Date and Time object:&lt;/P&gt;&lt;P&gt;Action: Format Date Time&lt;/P&gt;&lt;P&gt;Inputs:&lt;BR /&gt;Date String: "31/12/23"&lt;/P&gt;&lt;P&gt;Format: "dd/MM/yy"&lt;/P&gt;&lt;P&gt;Output: A valid Date type item&lt;/P&gt;&lt;P&gt;This is the safest and most portable method going forward.&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;2: Use an Expression with ToDateTime and Culture&lt;/STRONG&gt;&lt;BR /&gt;You can also use a calculation with .NET functions, like:&lt;/P&gt;&lt;P&gt;=ToDateTime([MyDateString], "dd/MM/yy", System.Globalization.CultureInfo.InvariantCulture)&lt;/P&gt;&lt;P&gt;But note: This only works in Code Stages, not in normal Calc stages. If you're avoiding code, stick to VBOs.&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;3: Ensure Regional Settings Match&lt;/STRONG&gt;&lt;BR /&gt;If you really want to use implicit parsing again (not recommended), ensure the machine's regional settings match dd/MM/yy. But:&lt;/P&gt;&lt;P&gt;This is fragile and environment-dependent. Not guaranteed to work in newer versions or during remote executions.&lt;/P&gt;&lt;P&gt;If this help resolve you issue, please mark this as &lt;STRONG&gt;Best Answer&lt;/STRONG&gt;. If you still face this issue, please provide more details and supporting screenshots.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 02 Jul 2025 05:34:48 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Issue-in-date-handling-in-Blue-Prism-7-4/m-p/121300#M53388</guid>
      <dc:creator>SouravSaha</dc:creator>
      <dc:date>2025-07-02T05:34:48Z</dc:date>
    </item>
  </channel>
</rss>

