So, I have a Reframework and each transactionItem contains about 30 specificContents or key-value pairs. At the end of the automation, I need to add a queue item to another queue for another process to run. For this queue item, I need to include all 30 key-value items from the transaction, as well as 5 additional items.
My question is: How can I easily and simply edit the current transaction item by adding the 5 additional key-value pairs or specific contents, and then push it as a queue item? Since these are essential dictionaries, I assume there is an easy process for this. Can anyone please provide a screenshot or XAML file to help me with this?
I really don’t want to extract or unpack all 30 specific items from the transaction and then individually add them to the queue item collection.
This would give you the items as disctionary…then use append to collection activity and append your new key value pairs and then use that in item collection
I had to use the invoke method add to add the new key-value pairs to the in_TransactionItem.SpecificContent collection, but @postwick gave the idea to search further
You are correct. Thanks for calling out, I was getting an object reference error before due to running without the transaction item being initiated. This is indeed a simplistic approach.