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.
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…
Just so I do not look like a fool...like this?
Here you go.