Some content on this site is available only to logged-in subscribers. Contact Us for information on becoming a subscriber.

InSource.Solutions | InSource Training | InSource Client Portal
InSource Solutions Logo
Log In Sign Up
InSource.Solutions InSource Training InSource Client Portal Log In Sign Up
  • Home
  • AVEVA Application Server
  • AVEVA Application Server Tech Notes

TN Appsvr180 How to identify attributes within an object that do not have good quality within a script?

Last updated: February 26th, 2025

Description

  • Author: Brian Schneider
  • Published: February 26th, 2025

Details:

Description

This is a sample script that will allow you to find all items that do not have good quality and write them to an array.

  • Author: Joseph Hefner
  • Published: 12/17/2015
  • Applies to: Application Server 3.1 and later

Details

You can use the script below to capture items in a ddesuitelink object and write them to an array called NotGoodQuality.

Dim attr as String;
dim x as indirect;
dim I as integer;
I= 0;
For Each attr In Me._Attributes[]

x.BindTo("Me." + attr + ".quality");
If x <> "192" then
I= I +1;
Me.NotGoodQuality[I] = attr;
endif;
Next;

 

detect attributes quality check
Give feedback about this article

Recommended articles

How to receive group emails

Read More
Support Icon

CONTACT SUPPORT

How to reach us

10800 Midlothian Turnpike Tpke, Suite 209, Richmond, VA 23235

1.877.INSOURCE

Technical Support - 1.888.691.3858

Contact Us

  • InSource Solutions
  • InSource Training
  • InSource Client Portal
  • Log In
InSource Solutions Logo

© 2025 InSource Solutions. All Rights Reserved.

Knowledge Base Software powered by Helpjuice

Expand