<?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: Blueprism Code Stage Issue in Product Forum</title>
    <link>https://community.blueprism.com/t5/Product-Forum/Blueprism-Code-Stage-Issue/m-p/116782#M52276</link>
    <description>&lt;P&gt;&lt;a href="https://community.blueprism.com/t5/user/viewprofilepage/user-id/42334"&gt;@salman_shaik&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Please try the below approach&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="faheemsd_0-1730924741613.png" style="width: 400px;"&gt;&lt;img src="https://community.blueprism.com/t5/image/serverpage/image-id/39780i21B4761A6023BF00/image-size/medium/is-moderation-mode/true?v=v2&amp;amp;px=400" role="button" title="faheemsd_0-1730924741613.png" alt="faheemsd_0-1730924741613.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="faheemsd_1-1730924989395.png" style="width: 400px;"&gt;&lt;img src="https://community.blueprism.com/t5/image/serverpage/image-id/39781i20B5E39869BDCD13/image-size/medium/is-moderation-mode/true?v=v2&amp;amp;px=400" role="button" title="faheemsd_1-1730924989395.png" alt="faheemsd_1-1730924989395.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;Code:&lt;/P&gt;&lt;P&gt;// Initialize success flag and error message&lt;BR /&gt;success = true;&lt;BR /&gt;error_message = string.Empty;&lt;/P&gt;&lt;P&gt;// Create new DataTables for storing the results&lt;BR /&gt;filteredTable = inputTable.Clone();&lt;BR /&gt;summaryTable = inputTable.Clone();&lt;/P&gt;&lt;P&gt;// Define the allowed creative types (use a List&amp;lt;string&amp;gt; or string array)&lt;BR /&gt;List&amp;lt;string&amp;gt; allowedTypes = new List&amp;lt;string&amp;gt; { "ABC", "DEF" }; // Modify as needed&lt;/P&gt;&lt;P&gt;// Loop through each row in the input table to filter based on "Type" column&lt;BR /&gt;foreach (DataRow row in inputTable.Rows)&lt;BR /&gt;{&lt;BR /&gt;// Check if the "Type" column value is in the allowedTypes collection&lt;BR /&gt;if (allowedTypes.Contains(row["Type"].ToString())) // This uses List.Contains() method&lt;BR /&gt;{&lt;BR /&gt;// If it matches, add the row to the filteredTable&lt;BR /&gt;filteredTable.ImportRow(row);&lt;BR /&gt;}&lt;BR /&gt;}&lt;/P&gt;&lt;P&gt;Please let me know if the above works for your requirement.&lt;/P&gt;&lt;P&gt;Note: You can pass the inputTable as a Startup parameter from the process to object.&lt;/P&gt;</description>
    <pubDate>Wed, 06 Nov 2024 20:36:42 GMT</pubDate>
    <dc:creator>faheemsd</dc:creator>
    <dc:date>2024-11-06T20:36:42Z</dc:date>
    <item>
      <title>Blueprism Code Stage Issue</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Blueprism-Code-Stage-Issue/m-p/116777#M52274</link>
      <description>&lt;P&gt;Hi Team,&lt;BR /&gt;&lt;BR /&gt;I have written some customized code in code stage it requires the following packages&lt;BR /&gt;System&lt;BR /&gt;System.Collections.Generic&lt;/P&gt;&lt;P&gt;System.Data&lt;/P&gt;&lt;P&gt;System.Linq&lt;BR /&gt;&lt;BR /&gt;I have added the references but i am getting the error in Initialize page.&lt;BR /&gt;can you please help on this.&lt;/P&gt;&lt;P&gt;Page: Initialise&lt;BR /&gt;Stage: Stage1&lt;BR /&gt;Type: Error&lt;BR /&gt;Action: Validate&lt;BR /&gt;Description: Compiler error at top section line 586: Type or namespace definition, or end-of-file expected&lt;BR /&gt;Repairable: No&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="salman_shaik_0-1730917058025.png" style="width: 400px;"&gt;&lt;img src="https://community.blueprism.com/t5/image/serverpage/image-id/39777iA5ED1C17532D090E/image-size/medium/is-moderation-mode/true?v=v2&amp;amp;px=400" role="button" title="salman_shaik_0-1730917058025.png" alt="salman_shaik_0-1730917058025.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="salman_shaik_1-1730917109186.png" style="width: 400px;"&gt;&lt;img src="https://community.blueprism.com/t5/image/serverpage/image-id/39778iC5831303C118861F/image-size/medium/is-moderation-mode/true?v=v2&amp;amp;px=400" role="button" title="salman_shaik_1-1730917109186.png" alt="salman_shaik_1-1730917109186.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;No error in Code stage&lt;BR /&gt;&lt;BR /&gt;Sample code:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;success = true;&lt;BR /&gt;error_message = string.Empty;&lt;BR /&gt;filteredTable = new DataTable();&lt;BR /&gt;summaryTable = new DataTable();&lt;BR /&gt;var allowedTypes = new HashSet&amp;lt;string&amp;gt;&lt;BR /&gt;{&lt;BR /&gt;"ABC", "ABC"&lt;BR /&gt;};&lt;/P&gt;&lt;P&gt;var filteredRows = inputTable.AsEnumerable()&lt;BR /&gt;.Where(row =&amp;gt; allowedCreativeTypes.Contains(row.Field&amp;lt;string&amp;gt;("Type")));&lt;/P&gt;&lt;P&gt;filteredTable = inputTable.Clone();&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 06 Nov 2024 18:22:01 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Blueprism-Code-Stage-Issue/m-p/116777#M52274</guid>
      <dc:creator>salman_shaik</dc:creator>
      <dc:date>2024-11-06T18:22:01Z</dc:date>
    </item>
    <item>
      <title>Re: Blueprism Code Stage Issue</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Blueprism-Code-Stage-Issue/m-p/116779#M52275</link>
      <description>&lt;P&gt;&lt;a href="https://community.blueprism.com/t5/user/viewprofilepage/user-id/42334"&gt;@salman_shaik&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Could you please help me with your Inputs and outputs added in the code stage? what are the data types?&lt;BR /&gt;From the above c# code your trying to filter the data table but to filter data table Blue Prism already providing the Filter Collection action in Collection Manipulation VBO&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="faheemsd_0-1730921997436.png" style="width: 400px;"&gt;&lt;img src="https://community.blueprism.com/t5/image/serverpage/image-id/39779i1540BCF1AD1E173B/image-size/medium/is-moderation-mode/true?v=v2&amp;amp;px=400" role="button" title="faheemsd_0-1730921997436.png" alt="faheemsd_0-1730921997436.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;This is Similar to your C# code and here Collection referred as Data Table .&lt;/P&gt;&lt;P&gt;Inputs:&lt;/P&gt;&lt;P&gt;Collection&lt;BR /&gt;Filter Expression - You can write your filter expression here&lt;/P&gt;&lt;P&gt;Outputs:&lt;/P&gt;&lt;P&gt;you can save the Output in same collection (which is nothing but same data table).&lt;/P&gt;&lt;P&gt;If you specifically trying with c# code to achieve this kindly help me with all your Inputs and Output parameters in Code stage.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 06 Nov 2024 19:45:31 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Blueprism-Code-Stage-Issue/m-p/116779#M52275</guid>
      <dc:creator>faheemsd</dc:creator>
      <dc:date>2024-11-06T19:45:31Z</dc:date>
    </item>
    <item>
      <title>Re: Blueprism Code Stage Issue</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Blueprism-Code-Stage-Issue/m-p/116782#M52276</link>
      <description>&lt;P&gt;&lt;a href="https://community.blueprism.com/t5/user/viewprofilepage/user-id/42334"&gt;@salman_shaik&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Please try the below approach&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="faheemsd_0-1730924741613.png" style="width: 400px;"&gt;&lt;img src="https://community.blueprism.com/t5/image/serverpage/image-id/39780i21B4761A6023BF00/image-size/medium/is-moderation-mode/true?v=v2&amp;amp;px=400" role="button" title="faheemsd_0-1730924741613.png" alt="faheemsd_0-1730924741613.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="faheemsd_1-1730924989395.png" style="width: 400px;"&gt;&lt;img src="https://community.blueprism.com/t5/image/serverpage/image-id/39781i20B5E39869BDCD13/image-size/medium/is-moderation-mode/true?v=v2&amp;amp;px=400" role="button" title="faheemsd_1-1730924989395.png" alt="faheemsd_1-1730924989395.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;Code:&lt;/P&gt;&lt;P&gt;// Initialize success flag and error message&lt;BR /&gt;success = true;&lt;BR /&gt;error_message = string.Empty;&lt;/P&gt;&lt;P&gt;// Create new DataTables for storing the results&lt;BR /&gt;filteredTable = inputTable.Clone();&lt;BR /&gt;summaryTable = inputTable.Clone();&lt;/P&gt;&lt;P&gt;// Define the allowed creative types (use a List&amp;lt;string&amp;gt; or string array)&lt;BR /&gt;List&amp;lt;string&amp;gt; allowedTypes = new List&amp;lt;string&amp;gt; { "ABC", "DEF" }; // Modify as needed&lt;/P&gt;&lt;P&gt;// Loop through each row in the input table to filter based on "Type" column&lt;BR /&gt;foreach (DataRow row in inputTable.Rows)&lt;BR /&gt;{&lt;BR /&gt;// Check if the "Type" column value is in the allowedTypes collection&lt;BR /&gt;if (allowedTypes.Contains(row["Type"].ToString())) // This uses List.Contains() method&lt;BR /&gt;{&lt;BR /&gt;// If it matches, add the row to the filteredTable&lt;BR /&gt;filteredTable.ImportRow(row);&lt;BR /&gt;}&lt;BR /&gt;}&lt;/P&gt;&lt;P&gt;Please let me know if the above works for your requirement.&lt;/P&gt;&lt;P&gt;Note: You can pass the inputTable as a Startup parameter from the process to object.&lt;/P&gt;</description>
      <pubDate>Wed, 06 Nov 2024 20:36:42 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Blueprism-Code-Stage-Issue/m-p/116782#M52276</guid>
      <dc:creator>faheemsd</dc:creator>
      <dc:date>2024-11-06T20:36:42Z</dc:date>
    </item>
    <item>
      <title>Re: Blueprism Code Stage Issue</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Blueprism-Code-Stage-Issue/m-p/116787#M52278</link>
      <description>&lt;P&gt;&lt;a href="https://community.blueprism.com/t5/user/viewprofilepage/user-id/36564"&gt;@faheemsd&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;It's not working below is my complete code along with all details. I feel some issue with dependent packages when i am compiling the code stage no errors were found.&lt;BR /&gt;This is not related to only filtering the collection, doing some operations using group by according to my use case which is not available in normal collection manipulation.&lt;BR /&gt;&lt;BR /&gt;&lt;STRONG&gt;Code:&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;DIV&gt;try&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; {&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;success = true;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;error_message = string.Empty;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;filteredTable = new DataTable();&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;summaryTable = new DataTable();&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; var allowedTypes = new HashSet&amp;lt;string&amp;gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; {&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; "ABC", "ABC"&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; };&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; var filteredRows = inputTable.AsEnumerable()&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; .Where(row =&amp;gt; allowedTypes.Contains(row.Field&amp;lt;string&amp;gt;("Type")));&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; filteredTable = inputTable.Clone();&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; foreach (var row in filteredRows)&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; {&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; filteredTable.ImportRow(row);&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; }&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; var groupedData = filteredRows&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; .GroupBy(row =&amp;gt; new&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; {&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Id = row.Field&amp;lt;string&amp;gt;("ID"),&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Type = row.Field&amp;lt;string&amp;gt;("Type")&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; })&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; .Select(group =&amp;gt; new&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; {&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Id = group.Key.Id,&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Type = group.Key.Type,&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; FinalTargeting = string.Join(",", group.Select(row =&amp;gt; row.Field&amp;lt;string&amp;gt;("Site Type")).Distinct().OrderBy(s =&amp;gt; s))&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; });&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; // Create summary DataTable&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; summaryTable = new DataTable();&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; summaryTable.Columns.Add("ID", typeof(string));&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; summaryTable.Columns.Add("Type", typeof(string));&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; summaryTable.Columns.Add("Final Targeting", typeof(string));&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;foreach (var item in groupedData)&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; {&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; summaryTable.Rows.Add(item.Id, item.Type, item.FinalTargeting);&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; }&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; }&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; catch (ArgumentNullException ex)&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; {&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; success = false;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; error_message = "Error: A required column is missing in the data - " + ex.Message;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; }&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; catch (InvalidOperationException ex)&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; {&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;success = false;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; error_message = "Error: Data processing issue - " + ex.Message;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; }&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; catch (Exception ex)&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; {&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; success = false;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; error_message = "An unexpected error occurred: " + ex.Message;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; }&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; &amp;nbsp; }&lt;/DIV&gt;&lt;P&gt;&lt;STRONG&gt;Inputs:&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="salman_shaik_0-1730949705328.png" style="width: 400px;"&gt;&lt;img src="https://community.blueprism.com/t5/image/serverpage/image-id/39782i2391E0B8E452D9C8/image-size/medium/is-moderation-mode/true?v=v2&amp;amp;px=400" role="button" title="salman_shaik_0-1730949705328.png" alt="salman_shaik_0-1730949705328.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Outputs:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="salman_shaik_1-1730949744562.png" style="width: 400px;"&gt;&lt;img src="https://community.blueprism.com/t5/image/serverpage/image-id/39783i557092054444A0ED/image-size/medium/is-moderation-mode/true?v=v2&amp;amp;px=400" role="button" title="salman_shaik_1-1730949744562.png" alt="salman_shaik_1-1730949744562.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Packages:&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="salman_shaik_2-1730949813765.png" style="width: 400px;"&gt;&lt;img src="https://community.blueprism.com/t5/image/serverpage/image-id/39784i027064C9AB41C9FD/image-size/medium/is-moderation-mode/true?v=v2&amp;amp;px=400" role="button" title="salman_shaik_2-1730949813765.png" alt="salman_shaik_2-1730949813765.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;Let me know if you need anything.&lt;BR /&gt;&lt;BR /&gt;Thanks&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&lt;/STRONG&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 07 Nov 2024 03:26:37 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Blueprism-Code-Stage-Issue/m-p/116787#M52278</guid>
      <dc:creator>salman_shaik</dc:creator>
      <dc:date>2024-11-07T03:26:37Z</dc:date>
    </item>
  </channel>
</rss>

