Show pageOld revisionsBacklinksBack to top This page is read only. You can view the source, but not change it. Ask your administrator if you think this is wrong. ===Checking for Good Quality incomingValue in a Script=== Scripts on server Device tags will be triggered when the tag value changes in the server. The value of the incomingValue will not necessarily be good if this occurs during the initialization of the software. So sometimes its a good idea to check for the quality of the data before running the script. Your script can start out with getting the quality of the incomingValue: <code javascript> quality=incomingValue.getQuality(); </code> "quality" will be a value from 0 up to 9999. See [[valueobject_qualities| ValueObject Qualities]] for a list of possible quality values. Generally you will want to check for the quality set to "0", Good Quality. Use an "if" statement with the quality to determine whether to run the script or not. <code javascript> if (quality==0) { //run the script ... (the script here) ... } </code> See also: [[incomingvalue and server values|Server Values vs incomingValue]] [[Scripting for PLC Servers]] [[MIStudio Scripting| MIStudio Scripting, read more about ValueObject properties]] checking_quality_on_an_incomingvalue_triggering_a_script.txt Last modified: 2020/10/02 16:40by wikiadmin