Queue Item don't accept dataset argument

Hi guys!
I’m trying to save in a queue a variable of dataset type, but isn’t working, I’m getting this error “Add Queue Item: Could not determine JSON object type for type System.Data.DataSet”.
Some sugestion?
Thanks

@mmcruzRPA,

We can not add DataSet into Queue since it is a Non Primitive Type, we can add only primitive types into Orchestrator Queue.

Still you want to add your DataSet then add the Content to a excel file and put that file path in the queue to process as string

Primitive Types:

bool true or false
byte 0 to 255
short -32,768 to 32,767
int -2,147,483,648 to 2,147,483,647
long -9223372036854775808 to 9223372036854775807
float -3.402823e38 to 3.402823e38
double -1.79769313486232e308 to 1.79769313486232e308
decimal ±1.0 × 10e−28 to ±7.9 × 10e28
char Unicode symbols used in text
3 Likes

Thank you very much.

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