Can't retrieved null value using in_TransactionItem.SpecificContent("strSuffix").ToString

Hi UiPath,

I have a queue and I need to retrieve a specific content named strSuffix

sometimes its value is null sometimes its not.

image

when I tried to retrieved it using in_TransactionItem.SpecificContent(“strSuffix”).ToString in the assign activity

it’s throwing me an error.

I’m i doing something wrong?

please let me know

thanks!

Hi,

Can you try to check in_TransactionItem.SpecificContent(“strSuffix”) is null or not as the following?

in_TransactionItem.SpecificContent(“strSuffix”) IsNot Nothing

Regards,