Home & Global Resources
Blueprint Assess
Blueprint Migrate
Getting Started
The Blueprint User Interface
Change Your Password
Open a Project
Organize Artifacts and Assets
Close a Project
Status Indicators
Jobs
Exporting from Source RPA Tools
How to export a UiPath Automation Project from UiPath Orchestrator
How to export .bprelease files from Blue Prism
Blue Prism VBO Matching on Import
How to Export .zip files from Automation A360 Control Room
Importing
Exporting
RPA Export from Blueprint
Variable Prefixing
Why We Create Multiple Similar Subflows During Migration
Understanding Wrapper Subflows in Power Automate Desktop
Setting up defaultRunDotNetScriptReferences
AsEnumerable Support
XmlDocument Support
Bulk Reimport/Recalculate
Metabot Migration - Best Practices
Exporting Reusable Flows
DeconstructWorkQueueItem
Artifacts Management
Base Artifact Types
Creating and Managing Artifacts
Utility Panel
Using Descendants View
Global Actions
Rules
Rules Overview
Rule Pre-Requisites
Using Rules
Rules User Interfaces
Using the Rules Table
Using Rules CSV
Using the Rules Wizard
Custom Action Mapping
Reuse Mapping to Power Automate Desktop
Manual Reuse
TODO, Error, and Robin Mapping
Script Mapping
Variable Name Dependency Mapping
Variable Renaming and Initialization
DLL/Method Invocation Mapping
Unresolved References
Work Queues Mapping
Solutions & Best Practices
Working with Migration Output in Power Automate Desktop (PAD)
Blueprism to PAD Migration Output Details
UiPath to PAD Migration Output Details
A360 to PAD Migration Output Details
RPA Value-Mapping Assessments
Why Choose Blueprint Cloud vs. On Premise ?
Setting up SAP for RPA
UiPath Conversion of "Sharepoint Scope and Get File"
API & Developer Resources
REST API Request Header and Parameters
REST API Request Body and Parameters
REST API - Listing Artifacts in the Request Body
REST API - Defining an Artifact in the Request Body
REST API - Defining a Comment in the Request Body
REST API - Defining a Reply in the Request Body
REST API - Defining a Trace in the Request Body
REST API - Filter Parameter
REST API - Defining a User in the Request Body
REST API Requests
REST API - Add Attachment to Subartifact Request
REST API - Get Artifact Request
REST API - Add Traces Request
REST API - Get Project by Id Request
REST API - Update Custom Choice-Property Type Request
REST API - Publish Comments Request
REST API - Publish Artifact Request
REST API - Update Comment Request
REST API - Delete User Request
REST API - Add Comment Request
REST API - Close Review Request
REST API - Get Discussion Status Request
REST API - Update Reply Request
REST API - Get Attachment Request
REST API - Delete Comment Request
REST API - Create Project Request
REST API - Get Group Request
REST API - Rate Comment Request
REST API - Get Child Artifacts of Artifact Request
REST API - Discard Artifacts Request
REST API - List Artifacts Request
REST API - Rate Reply Request
REST API - Move Artifact Request
REST API - Delete Attachment Request
REST API - List Projects Request
REST API - Get Blueprint Product Version Request
REST API - Update Standard Choice Property Request
REST API - Get Review Request
REST API - Reply to Comment Request
REST API - Update User Request
REST API - Get Collection Request
REST API - Delete Artifact Request
REST API - List Collections Request
REST API - Authenticate Request
REST API - Get Artifact Type Request
REST API - List Artifact Types Request
REST API - Delete Reply Request
REST API - Get Root Artifacts of Project Request
REST API - Add Attachment Request
REST API - Create User Request
REST API - List Reviews Request
REST API - List Groups Request
REST API - Get User Request
REST API - Delete Traces Request
REST API - Add Artifact Request
REST API - List Users Request
REST API - Get Artifact Image Request
REST API - Update Artifacts Request
REST API - List Unpublished Artifacts Request
REST API HTTP Methods
REST API - HTTP HEAD Method
REST API - HTTP DELETE Method
REST API - HTTP GET Method
REST API - HTTP POST Method
REST API HTTP Status Codes
REST API - HTTP PATCH Method
Blueprint REST API
REST API Quick Start Example
REST API Requests and Responses
REST API Security and Authentication
REST API Known Issues & Constraints
REST API Requests
REST API Resources
REST API - Defining an ALM Job in the Request Body
Dashboards & Reports
Statistics Report Options
Using Scope and View
Statistics Dashboard
Statistics Reports
Applications Dashboard
Applications Report
Estimator Dashboard
Estimator Reports
How to Change the Main Process Label for Estimations
Bulk Reporting
Call Trees
Blueprint + PowerBI Dashboards
How to Create Microsoft Power Automate RPA Migration Estimates with Blueprint
Assessment Report
Licensing
Settings & Administration
Overview of Blueprint Settings
System Reports
System Reports
License and Activity Reporting
User List
Project Activity
User Roles
Artifact Map
Project Usage
User Activity Report
Audit Log
System Logs
User Management
Creating and Managing Users
Creating and Managing Groups
Creating and Managing Instance Administrator Roles
Creating and Managing Project Administrator Roles
RPA Management
Microsoft 365 Authentication Settings
Integration Reporting
Migrate - Import/Export
Migrate - Dashboards
Migrate
Analyze
Automation360 Authentication Settings
GenAI
Advanced Settings
Projects
Installation
Blueprint Installation Guide
System Requirements
Supported Third-Party Components
Azure App Registration (Power Automate Export)
Release Notes
- All Categories
- Blueprint Migrate
- Exporting
- DeconstructWorkQueueItem
DeconstructWorkQueueItem
DeconstructWorkQueueItem — Technical Reference. Overview DeconstructWorkQueueItem is a subflow that runs once per queue item, immediately after it is dequeued. It was introduced during a Blue Prism t…
DeconstructWorkQueueItem — Technical Reference
Overview
DeconstructWorkQueueItem is a subflow that runs once per queue item, immediately after it is dequeued. It was introduced during a Blue Prism to Power Automate Desktop migration to bridge structural differences between the two platforms — specifically in how they handle work queue data.
Rather than rewriting all of the migrated business logic to work with PAD's native queue format, this subflow acts as a translator so the rest of the flow can continue working as originally written.
Why It Exists
Blue Prism and PAD handle work queue items differently. In Blue Prism, dequeuing an item returns a flat table of data (called a Collection) alongside an Item ID. In PAD, dequeuing returns a single object with a JSON payload packed into a text field.
The business logic in this flow was written expecting Blue Prism's "Collection-style" references. This subflow converts PAD's queue output into that format so nothing downstream needs to change.
What It Does
A. Local Queue Storage
PAD doesn't natively track which queue item is currently being worked on the way Blue Prism does. To replicate this, the subflow stores the active item in a local dictionary using its ID as a key. This allows the flow to look it up later when marking it complete or updating its status.
B. Parses the item payload
The queue item's data arrives as a JSON string. The subflow converts this into a structured object so individual fields can be accessed by name rather than manually parsing text.
C. Parses processing metadata
Blue Prism stores Status, Tags, and Exception Reason as separate native fields. These were consolidated into the ProcessingNotes field as JSON during migration. The subflow unpacks these back into discrete, accessible properties.
D. Converts data into a table
Finally, the parsed payload is converted into a single-row data table with the field names as column headers. This matches the Collection-style format the migrated logic expects, allowing it to reference data the same way it did in Blue Prism.
Summary
Question | Answer |
Why maintain a local queue dictionary? | PAD has no native concept of a "currently loaded" item. The dictionary maps the active Item ID to its PAD object so the bot can reference it later for status updates. |
Why is the data in JSON format? | Blue Prism Collections are flat and native. The migration tool serializes them to JSON to fit into PAD's single-field queue payload. |
Why does ProcessingNotes contain a Status field? | Blueprint combines Status, Tags, and Notes into a single JSON blob in the PAD "Processing Notes" field to maintain all metadata |
How did we do?
Exporting Reusable Flows