Hi,
I am fetching different Fields from each input file using Document understanding.
Can someone guide me how to add these fields (Varies for each input file) to same Queue in orchestrator.
Thanks.
Hi,
I am fetching different Fields from each input file using Document understanding.
Can someone guide me how to add these fields (Varies for each input file) to same Queue in orchestrator.
Thanks.
Store Extracted Data:
Store the extracted fields in variables within your workflow. Each field from each file should be stored in a separate variable.
Queue Configuration:
Use the âAdd Queue Itemâ activity to add items to the Orchestrator Queue. Configure the Queue Item properties with the necessary information. You can set the queue item properties to include the extracted fields as input parameters.
Add Queue Item Activity:
For each input file, use the âAdd Queue Itemâ activity to add an item to the Orchestrator Queue. Pass the extracted field values as parameters when adding the item.
For ref:
I have sorted this out.
Read Document Data: Use Document Understanding activities to extract fields from each input file.
Create a Dictionary: For each file, create a dictionary to store the extracted fields. The dictionary should have keys corresponding to the field names and values as the extracted data.
Add to Queue: Use the Add Queue Item
activity to add each dictionary (representing the fields from a file) to the Orchestrator queue. Set the âItemInformationâ property to the dictionary.
Repeat these steps for each input file, and youâll have data from different files in the same Orchestrator queue, each stored as a separate dictionary.
cheersâŚ!
Hi @krishbcd
Assign activity:
dictFields = New Dictionary(Of String, Object)
Assign activity (for each field):
dictFields(âFieldName1â) = ExtractedValue1
dictFields(âFieldName2â) = ExtractedValue2
â Add more fields as needed
Add Queue Item activity:
QueueName = âYourQueueNameâ
ItemData = dictFields
Hope this helps