Blue Prism Product

 View Only
last person joined: 9 hours ago 

This community covers the core Blue Prism RPA product.

  • 1.  Combo of Merge Collections and Append Rows to Collection

    Posted 11-20-2020 01:06
    Hi,

    I need some help. I am trying to join / merge two collections.  I cant append rows to collection because the field types are not exactly the same between the two collections.. Also I can not use merge collections because they do have field names in common.  Is there a middle ground that joins collections with some similar columns and some columns that are different names or types? Thanks

    ------------------------------
    Marshall Mclane
    Automation Developer
    Capital Group
    America/Los_Angeles
    ------------------------------


  • 2.  RE: Combo of Merge Collections and Append Rows to Collection

    Posted 11-20-2020 05:31
    I came across that situation; I don't think there is anything in the stock objects, I had to write a custom code stage:
    ' Inputs: Collection A, Collection B
    ' Outputs: Collection Out
    
    Collection_Out = Collection_A
    
    For Each Column As DataColumn In Collection_B.Columns
    	If Not Collection_Out.Columns.Contains(Column.ColumnName) Then
    		Collection_Out.Columns.Add(Column.ColumnName, Column.DataType)
    	End If
    Next
    
    For Each Row As DataRow In Collection_B.Rows
    	Dim NewRow As DataRow = Collection_Out.NewRow
    	For Each Column As DataColumn In Collection_B.Columns
    		NewRow(Column.ColumnName) = Row(Column.ColumnName)
    	Next
    	Collection_Out.Rows.Add(NewRow)
    Next​


    ------------------------------
    Nicholas Zejdlik
    RPA Developer
    ------------------------------



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.