Let’s say I have extracted a table with several fields which I want to add it into a queueitem. Is it correct that I just need to put the string into the iteminformation? I got an error message “Add Queue Item: Object reference not set to an instance of an object”? How to solve it?
Is the particular queue to which you are adding these items is created in orchestrator and are you mentioning the queue name in double quotes like “Queue1”
May be while accessing from config file there is an extra space, just print the value comming from config file and see if there are any extra spaces or not.
Might be null value issue, Your are using tostring to convert the row object to string.Instead of that please use convert.tostring. Tostring does not handle null values.