02-06-2019 07:35 AM
How does everyone handle errors when a error comes across as OK(error number)? I notice that my error case structure does not handle what I think are "soft errors", for a lack of the correct term, but I want to take some kind of action on those kind of errors.
What is the trick that I am missing? Is it as simple as taking a Unbundle by Name and wiring the error number to the case structure and eliminate wiring the error cluster directly to the case structure?
Solved! Go to Solution.
02-06-2019 07:38 AM
Hi Eric,
what I think are "soft errors", for a lack of the correct term,
I think you are talking about "warnings"…
How does everyone handle errors when a error comes across as OK(error number)?
You can use an Unbundle function to get the 3 components of the error cluster…
02-06-2019 07:44 AM
Just so I do not look like a fool...like this?
02-06-2019 07:57 AM
02-06-2019 08:02 AM
Here you go.
02-06-2019 08:03 AM
No. Errors have a True boolean value. Warnings and non-errors have a false boolean state.
So you should have a NOT on that top boolean wire going to the AND.