I’m getting this error and I can’t fix it, can you help me?
Error:
Type Into : Object reference not set to an instance of an object.
I’m getting this error and I can’t fix it, can you help me?
Hello @william_emanoel
The variable your passing doesn’t have any value, in this case the in_TransactionItem, hence the Object reference not set to an instance of an object error, can you check once by debugging whether you’re getting the value or not.
Thanks
It means in_TransactionItem is not initalized. Is this a XAML that’s called using Invoke Workflow, and in_TransactionItem is passed as an argument? You can’t just run this XAML, because then the value for the argument isn’t passed in.
Looks like there are multiple orblems
Your formula says System.IO.Path.Combine + in_…
Idealy path.Combine("firstvalue","Secondvalue",etc)
is how it should be used
Also check if the variables are having data …object reference not set to an instance will come when the variables are not initialized
Cheers