Blue Prism Product

 View Only
last person joined: 16 hours ago 

This community covers the core Blue Prism RPA product.

  • 1.  Remove duplicates from collection based on specific column

    Posted 10-14-2020 16:23
    Hello Community, 
    I have a collection, suppose Col1. It has 2 columns i.e. Operating System and UserId.
    I need to filter out the rows in Col1 with its name as Linux and Mac. But before it filters both I want to remove duplicates if any.
    Operating System UserId 
    Mac.                          123
    Mac.                          123
    Linux.                        652
    Mac.                          124
    First thing, two seperate collections for Linux and Mac.
    Second thing, removing duplicates based on UserId. 
    Note:one userId can have multiple OS.

    ------------------------------
    Guggs Kia
    ------------------------------


  • 2.  RE: Remove duplicates from collection based on specific column

    Posted 10-14-2020 16:48
    Hi,

    There are some assets available on DX which can cater to these scenarios. I haven't tried this myself but here are the links -

    https://digitalexchange.blueprism.com/dx/entry/78038/solution/spgmi--utility-collection-booster
    https://digitalexchange.blueprism.com/dx/entry/35840/solution/millicon---collection-utility


    ------------------------------
    Shashank Kumar
    DX Integrations Partner Consultant
    Blue Prism
    Singapore
    +6581326707
    ------------------------------



  • 3.  RE: Remove duplicates from collection based on specific column

    Posted 10-18-2020 17:53
    Use the following code to remove duplicate names based on column names.

    [Inputs : coll,collName ]
    [Output: groups ]

    Dim hTable As New Hashtable()
    Dim duplicateList As New ArrayList()


    'Add list of all the unique item value to hashtable, which stores combination of key, value pair.
    'And add duplicate item value in arraylist.

    For Each drow_1 As DataRow In coll.Rows

    If hTable.Contains(drow_1(colName)) Then

    duplicateList.Add(drow_1)

    Else

    hTable.Add(drow_1(colName), String.Empty)

    End If

    Next



    'Removing a list of duplicate items from datatable.

    For Each dRow_2 As DataRow In duplicateList

    coll.Rows.Remove(dRow_2)

    Next



    groups = coll

    ------------------------------
    Jane Jebarson Senior Automation Engineer
    Engineer
    Allianz
    Europe/London
    ------------------------------



Welcome to the Blue Prism RPA Product Community!

Whether you’re looking to manage a complex infrastructure, maintain security and compliance, bring new products to market faster, or gain operational speed and agility in an uncertain economy, Blue Prism delivers — with the flexibility you need to create the business you want. From deployment on-premise, through a cloud service provider or as SaaS, to a skillful and adaptable digital workforce that continually expands to meet your enterprise needs, you can gain enhanced operational insight and control while your people reclaim the time they need to focus on great work.

Product PageKnowledge BaseBlue Prism Training Offering
Product Research ProgramUpdates, Releases & Announcements

FAQs

Blue Prism is intelligent automation — business-developed, no-code automation that pushes the boundaries of robotic process automation (RPA) to deliver value across any business process in a connected enterprise.

A combination of RPA with expanded cognitive and AI capabilities, Blue Prism is different than other automation technology on the market. With one Blue Prism license, you gain instant access to an already AI equipped digital workforce, along with the tools you need to build and delegate automations. Click here for more information on Blue Prism and Intelligent Automation.
To learn more about how Blue Prism RPA can help your organization and how much it will cost to get started, please Contact our Sales department.
Blue Prism RPA can be downloaded from our customer portal. If you would like to consume or download any material it is necessary to create an account on the Portal. Once you have registered, you can access the download options for Blue Prism here.
Yes! Installed on your own machine and supported by our training materials and product documentation, you can use all the features of the full enterprise product for free with our Blue Prism Trial – giving you the opportunity to learn the basics before moving to a full production implementation. Click here for more information and to download the trial.
Yes! You can access our known issue list for Blue Prism from our Support Portal.
Regardless of your industry, Blue Prism’s Digital Workforce can adhere to strict governance and compliance standards without limiting productivity. Click here for more information on how your industry can benefit from Blue Prism.