<?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: Efficient Data Storage Method for Monthly Codes in Product Forum</title>
    <link>https://community.blueprism.com/t5/Product-Forum/Efficient-Data-Storage-Method-for-Monthly-Codes/m-p/108770#M49365</link>
    <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;I have already been through a project with a similar requirement, because in our scenario we needed to consult both the complete value and just the code, what we did was create an auxiliary column that contained only the code, and a second column with the value suffix, according to the requirement we could have other suffixes, we abstracted the logic through a view in the Database (I don't know if this is your case), and we transposed the data to the collection later for reasons of performance and execution duration (high volume);&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;</description>
    <pubDate>Wed, 20 Mar 2024 14:13:35 GMT</pubDate>
    <dc:creator>LeonardoSQueiroz</dc:creator>
    <dc:date>2024-03-20T14:13:35Z</dc:date>
    <item>
      <title>Efficient Data Storage Method for Monthly Codes</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Efficient-Data-Storage-Method-for-Monthly-Codes/m-p/108737#M49356</link>
      <description>&lt;P&gt;I'm seeking advice on structuring a data storage system for the &lt;STRONG&gt;last 6 months'&lt;/STRONG&gt; worth of codes. Each code follows a&lt;STRONG&gt; consistent pattern: GOV followed by a number representing the month&lt;/STRONG&gt; (e.g., GOV3, GOV2, GOV1, GOV12, GOV11, GOV10). What would be the most efficient method to organize and manage these codes as separate data items while ensuring easy access and retrieval?&lt;/P&gt;</description>
      <pubDate>Wed, 20 Mar 2024 10:24:31 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Efficient-Data-Storage-Method-for-Monthly-Codes/m-p/108737#M49356</guid>
      <dc:creator>sandeshtope</dc:creator>
      <dc:date>2024-03-20T10:24:31Z</dc:date>
    </item>
    <item>
      <title>Re: Efficient Data Storage Method for Monthly Codes</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Efficient-Data-Storage-Method-for-Monthly-Codes/m-p/108768#M49363</link>
      <description>&lt;P&gt;Hello Sandy!&lt;/P&gt;&lt;P&gt;I would have 6 Data Items named according to the month to be searched for;&lt;/P&gt;&lt;UL class="lia-list-style-type-circle"&gt;&lt;LI&gt;[M-1]= Month -1&lt;/LI&gt;&lt;LI&gt;[M-2]= Month -2&lt;/LI&gt;&lt;LI&gt;[M-3]= Month -3&amp;nbsp;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;And so on... at the beggining of the process flow I'll put a Multicalc Stage that send the values to each Data Item with a simple function;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;"GOV"&amp;amp;ToNumber(FormatDate(AddMonths(Today(); -1),"MM"))&lt;/LI-CODE&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="1.png" style="width: 855px;"&gt;&lt;img src="https://community.blueprism.com/t5/image/serverpage/image-id/37629i6904EDC2DDE7C5B4/image-size/large?v=v2&amp;amp;px=999" role="button" title="1.png" alt="1.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="2.png" style="width: 547px;"&gt;&lt;img src="https://community.blueprism.com/t5/image/serverpage/image-id/37630i1457A0C7FBE8E080/image-size/large?v=v2&amp;amp;px=999" role="button" title="2.png" alt="2.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;And ensure that checkbok "hide from other pages in the process" is unchecked to make them Global so you can use those Data Items anywhere on the process flow.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="3.png" style="width: 730px;"&gt;&lt;img src="https://community.blueprism.com/t5/image/serverpage/image-id/37631i154F6E2BCA2F01D1/image-size/large?v=v2&amp;amp;px=999" role="button" title="3.png" alt="3.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;Hope this helps&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 20 Mar 2024 13:43:04 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Efficient-Data-Storage-Method-for-Monthly-Codes/m-p/108768#M49363</guid>
      <dc:creator>Daniel_Sanhueza</dc:creator>
      <dc:date>2024-03-20T13:43:04Z</dc:date>
    </item>
    <item>
      <title>Re: Efficient Data Storage Method for Monthly Codes</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Efficient-Data-Storage-Method-for-Monthly-Codes/m-p/108770#M49365</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;I have already been through a project with a similar requirement, because in our scenario we needed to consult both the complete value and just the code, what we did was create an auxiliary column that contained only the code, and a second column with the value suffix, according to the requirement we could have other suffixes, we abstracted the logic through a view in the Database (I don't know if this is your case), and we transposed the data to the collection later for reasons of performance and execution duration (high volume);&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;</description>
      <pubDate>Wed, 20 Mar 2024 14:13:35 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Efficient-Data-Storage-Method-for-Monthly-Codes/m-p/108770#M49365</guid>
      <dc:creator>LeonardoSQueiroz</dc:creator>
      <dc:date>2024-03-20T14:13:35Z</dc:date>
    </item>
  </channel>
</rss>

