I want to define a queueItem variable without actually creating the queue item in Orchestrator. Something like this:
something like
QueueItem = {var1,var2,var3}
Is this possible?
I want to define a queueItem variable without actually creating the queue item in Orchestrator. Something like this:
something like
QueueItem = {var1,var2,var3}
Is this possible?
maybe you are talking about MockUp QueueItem with a defined SpecificContent Dictionary
Assign Activity:
MyQueueItem = new QueueItem()
MyQueueItem.SpecificContent = new Dictionary(Of String, Object) From {{"A", 123}}
kindly note: this MocjUp QueueItem cannot be used for all functionalities (e.g. Set Status)
Works excellent, thank you
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.