<?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: Unable to fix the issue in University Forum</title>
    <link>https://community.blueprism.com/t5/University-Forum/Unable-to-fix-the-issue/m-p/117253#M3998</link>
    <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.blueprism.com/t5/user/viewprofilepage/user-id/61827"&gt;@Adnan3194&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Im assuming what you are doing here is reading a value from the site you are working on and the date value you are having trouble interpreting is the value taken from the site?&lt;/P&gt;&lt;P&gt;If thats the case it looks like the value you are receiving has some single quotes in there so you may want to look at doing a calculation stage to remove these and any white space as well. The calculation would look something like this ToDate(Trim(Replace([Data1],"'","")))&lt;/P&gt;&lt;P&gt;Write the value back to a data item and it should be work from there. You could make sure the new data item you write back to is set as a date value.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Hope this helps&lt;/P&gt;</description>
    <pubDate>Mon, 02 Dec 2024 09:12:24 GMT</pubDate>
    <dc:creator>michaeloneil</dc:creator>
    <dc:date>2024-12-02T09:12:24Z</dc:date>
    <item>
      <title>Unable to fix the issue</title>
      <link>https://community.blueprism.com/t5/University-Forum/Unable-to-fix-the-issue/m-p/117246#M3997</link>
      <description>&lt;P&gt;i am creating a process BP Travel, and i stuck at this this stage of Create Process, the error is displayed. i attach screenshot for reference. can someone guide me how to fix it,&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="11.jpg" style="width: 999px;"&gt;&lt;img src="https://community.blueprism.com/t5/image/serverpage/image-id/39970i4D1865AD64FEF804/image-size/large/is-moderation-mode/true?v=v2&amp;amp;px=999" role="button" title="11.jpg" alt="11.jpg" /&gt;&lt;/span&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="222.jpg" style="width: 999px;"&gt;&lt;img src="https://community.blueprism.com/t5/image/serverpage/image-id/39972i9F74D22C0E755BED/image-size/large/is-moderation-mode/true?v=v2&amp;amp;px=999" role="button" title="222.jpg" alt="222.jpg" /&gt;&lt;/span&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="333.jpg" style="width: 999px;"&gt;&lt;img src="https://community.blueprism.com/t5/image/serverpage/image-id/39969iF2AAA4C93988F61D/image-size/large/is-moderation-mode/true?v=v2&amp;amp;px=999" role="button" title="333.jpg" alt="333.jpg" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 02 Dec 2024 08:25:18 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/University-Forum/Unable-to-fix-the-issue/m-p/117246#M3997</guid>
      <dc:creator>Adnan3194</dc:creator>
      <dc:date>2024-12-02T08:25:18Z</dc:date>
    </item>
    <item>
      <title>Re: Unable to fix the issue</title>
      <link>https://community.blueprism.com/t5/University-Forum/Unable-to-fix-the-issue/m-p/117253#M3998</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.blueprism.com/t5/user/viewprofilepage/user-id/61827"&gt;@Adnan3194&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Im assuming what you are doing here is reading a value from the site you are working on and the date value you are having trouble interpreting is the value taken from the site?&lt;/P&gt;&lt;P&gt;If thats the case it looks like the value you are receiving has some single quotes in there so you may want to look at doing a calculation stage to remove these and any white space as well. The calculation would look something like this ToDate(Trim(Replace([Data1],"'","")))&lt;/P&gt;&lt;P&gt;Write the value back to a data item and it should be work from there. You could make sure the new data item you write back to is set as a date value.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Hope this helps&lt;/P&gt;</description>
      <pubDate>Mon, 02 Dec 2024 09:12:24 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/University-Forum/Unable-to-fix-the-issue/m-p/117253#M3998</guid>
      <dc:creator>michaeloneil</dc:creator>
      <dc:date>2024-12-02T09:12:24Z</dc:date>
    </item>
    <item>
      <title>Re: Unable to fix the issue</title>
      <link>https://community.blueprism.com/t5/University-Forum/Unable-to-fix-the-issue/m-p/117270#M4000</link>
      <description>&lt;P&gt;Looks like the Create Quote action you are calling takes in 2 date values but I am assuming they are text in your Item Data collection. If that is the case then BP is trying to cast the text into a date. My guess is BP is using the same ToDate conversion function that you see in the calculate stage so is expecting a text format of "M/d/yyyy" but looks like your format is "d/M/yyyy".&lt;/P&gt;&lt;P&gt;So I think you need to do some additional calculation some where to either convert those text date values to "M/d/yyyy" format or make you current text value an actual date value and pass that to the Create Quote action.&lt;/P&gt;&lt;P&gt;So something like&amp;nbsp;MakeDate("14", "12", "2024") or&amp;nbsp;ToDate("12/14/2024") and using text functions like Mid, Left, Right to get the actual text details you need from the Item Data fields example Mid([Item Data.Depature Date], 4, 2) would give you the month number if the date format is "dd/MM/yyyy"&lt;/P&gt;</description>
      <pubDate>Mon, 02 Dec 2024 14:12:38 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/University-Forum/Unable-to-fix-the-issue/m-p/117270#M4000</guid>
      <dc:creator>EricNewton</dc:creator>
      <dc:date>2024-12-02T14:12:38Z</dc:date>
    </item>
    <item>
      <title>Re: Unable to fix the issue</title>
      <link>https://community.blueprism.com/t5/University-Forum/Unable-to-fix-the-issue/m-p/117279#M4001</link>
      <description>&lt;P&gt;Hi &lt;a href="https://community.blueprism.com/t5/user/viewprofilepage/user-id/61827"&gt;@Adnan3194&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Can you make a screenshots of your Collection Itemdata and show us the Departing date and the returning date please ?&lt;/P&gt;</description>
      <pubDate>Mon, 02 Dec 2024 20:36:11 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/University-Forum/Unable-to-fix-the-issue/m-p/117279#M4001</guid>
      <dc:creator>Mohamad_Dakkouri</dc:creator>
      <dc:date>2024-12-02T20:36:11Z</dc:date>
    </item>
    <item>
      <title>Re: Unable to fix the issue</title>
      <link>https://community.blueprism.com/t5/University-Forum/Unable-to-fix-the-issue/m-p/117335#M4003</link>
      <description>&lt;P&gt;HI. I SOLVED THIS ISSEU. THANK YOU FOR YOUR SUPPORT.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 04 Dec 2024 09:36:06 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/University-Forum/Unable-to-fix-the-issue/m-p/117335#M4003</guid>
      <dc:creator>Adnan3194</dc:creator>
      <dc:date>2024-12-04T09:36:06Z</dc:date>
    </item>
    <item>
      <title>Re: Unable to fix the issue</title>
      <link>https://community.blueprism.com/t5/University-Forum/Unable-to-fix-the-issue/m-p/117336#M4004</link>
      <description>&lt;P&gt;I MADE THE COLLECTION AND SELECT TEXT TYPE IN DATE. THAT'S WHY THE ERROR DISPLAYED. IN COLLECTION I MADE THE CHANGES DATE TYPE AS DATE.&amp;nbsp;&lt;/P&gt;&lt;P&gt;THANK YOU FOR YOUR SUPPORT. ITS VERY MEAN TO ME.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 04 Dec 2024 09:37:48 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/University-Forum/Unable-to-fix-the-issue/m-p/117336#M4004</guid>
      <dc:creator>Adnan3194</dc:creator>
      <dc:date>2024-12-04T09:37:48Z</dc:date>
    </item>
    <item>
      <title>Re: Unable to fix the issue</title>
      <link>https://community.blueprism.com/t5/University-Forum/Unable-to-fix-the-issue/m-p/117337#M4005</link>
      <description>&lt;P&gt;THANK YOU FOR YOUR SUPPORT. ITS VERY MEAN TO ME.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 04 Dec 2024 09:38:17 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/University-Forum/Unable-to-fix-the-issue/m-p/117337#M4005</guid>
      <dc:creator>Adnan3194</dc:creator>
      <dc:date>2024-12-04T09:38:17Z</dc:date>
    </item>
  </channel>
</rss>

