Search code examples
automationblueprismrpa

Work Queue - Updating Narrative(Status - Text) in Work Queue Item


Working on sample process work queue in Blue Prism. I am successfully able to process work queue items. However, I am not able to update queue items. I am using calc stage where I am setting value as [RetrievedData.Status] = "Test", after this calling Set Data action (Passing RetrievedData collection and Item ID). When retrieving an item as Get-Item I am not able to see the updated value "Test" in Status column.

Can anybody please help.

Please see the attached screenshot]1


Solution

  • I am using calc stage where I am setting value as [RetrievedData.Status] = "Test"

    No, you are currently testing whether [RetrievedData.Status] is equal to "Test" (and storing True/False to the data item Result). To set [RetrievedData.Status] to "Test", you need to use it like this:

    enter image description here