how to show a value of a process model in an Interface.

Certified Associate Developer

Hi All, 

I have a process Model where the value of a process variable is being updated internally like status : Success, Error, and so on . I just want to show an error message in an interface  to the user if the value is different from Success. 

  Discussion posts and replies are publicly visible

Parents Reply
  • Whilst this is true "out of the box", you can design to meet this requirement. You could set a parallel thread of processing that assumes there will be an error and kill this off when the relevant step you want to monitor succeeds. So: up front, set a pv!value to hold a defaulted "Failed" indicator (which has to be generic as you cannot interrogate the internals of a failed node) and, if successful, overwrite this value (with blank or with a generic "Succeeded" indicator).

Children