Hi Grasshopper,
One way to accomplish this would be to edit the
LogToDatabase sequence in the process model to send a custom UI Message to your application. For instance, if you are using the LabVIEW operator interface (OI), you could add a callback to the
Configure Event Callbacks VI that listens to this custom message. If are not using an OI, you will need to use an Application Manger to listen for the UI Messages.
Another option would be to listen to the UI Message that the process model already posts after calling
LogToDatabase, namely:
UIMsg_ModelState_PostProcessingCompleteThis UI message is posted in both the
Test UUTs and
Single Pass entry points so, unless you are using a custom entry point, you should be safe.
Regards,