Multiple Assign Can not assign

I am getting the following error:


Below are the configurations:

image

The error just started happening. Any help would be greatly appreciated.
By the way the “EIN NO” text is the same as in the queue/transaction.

1 Like

Hi,

If you can run this process as debug mode in Studio and reproduce this exception, please check content of $exceptionDetails in Locals panel. There is message of the reason for this exception.
For example, "Object reference not set to an instance of an object. " (TransactionItem is null)

Regards,

@Nenna_Anya

Are you doing this in a stable version of UiPath studio?

Thanks

Hi @Nenna_Anya ,

If EIN NO value in the Queue Item is null, we might get an Exception.

To Handle that we can modify the Expression to the Below :

if(in_TransactionItem.SpecificContent("EIN NO") is Nothing,"",in_TransactionItem.SpecificContent("EIN NO").ToString.Trim)
2 Likes