Retrieving Orchestrator Variables

Hi,

As part of an automation I am working on I have written a Microsoft.Exchange.Data.Folderid variable to the Orchestrator Queue. I need to retrieve this later in the process.

Can anyone tell me the syntax for doing this in an assign activity?

Thank you :slight_smile:

@M.Smith,

Welcome to UiPath Community!

Use “Get Queue Items” activity.

1 Like

WC to UiPath

you can search Activity called Get Queue Items and use it
image

1 Like

Thank you for your response, although I can’t see how I can assign a queue item of a specific variable type to a variable in my sequence?

Hi
Get Transaction Item will give us a variable of type queueitem
and get that variable and mention like this in a assign activity like this
queueitemvariable.SpecificContent(“Fieldname”)

Cheers @M.Smith

Surely setting an asset would be a better solution, then retrieving it when required,

Once you have added the folderID to the queue, you can retrieve it as a string and assign it directly to a folderID variable in your workflow.

eg in_TransactionItem.SpecificContent(“myfolderID”).ToString

The Exchange folderID is simply a long string of characters that Exchange uses to identify the folder.

1 Like

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.