How can we help you today?

How to disable alarm redirection from script

Below is an example showing how alarm redirection may be disabled from a mimic script. The script retrieves a list of all points in the database that contain "Script Disable Alarm Redirection" in their full names and disables alarm redirection for each point in the list.

DISCLAIMER: Please note this is an example only and should only be used in a test environment. The script should not be used on a live production system without making the necessary adjustments and testing for each application.
Sub DisableAlarmRedirection

Dim DGRS, DGRSRows, DGRSColNames, oPoint

Set DGRS = Server.Query("SELECT FULLNAME FROM CDBPoint WHERE FullName LIKE '%Script Disable Alarm Redirection%'")

If Not(DGRS.Error) Then
    DGRows = DGRS.Rows
    DGColNames = DGRS.ColumnNames
    For r = 0 To (DGRS.RowCount - 1)       
        Set oPoint = Server.FindObject(DGRows(r,0))
        oPoint.Interface.AlarmRedirection=False            
    Next
Else
    Msgbox DGRS.ErrorMessage, vbCritical + vbOKOnly, "Error in SQL Command" 
End If

End Sub

Schneider Electric Canada

Explore more
Product:
Users group

Discuss this topic with experts

Visit our community and get advice from experts and peers on this topic and more
Explore more
Product:

Need help?

Need help?

Product Selector

Product Selector

Quickly and easily find the right products and accessories for your applications.

Get a Quote

Get a Quote

Start your sales inquiry online and en expert will connect with you.

Where to buy?

Where to buy?

Easily find the nearest Schneider Electric distributor in your location.

Help Center

Help Center

Find support resources for all your needs, in one place.

  • Help and Contact Center
  • Contact Sales
  • Find our Offices
  • Where to Buy
  • Careers
  • Company Profile
  • Investors
  • Newsroom
  • Report a Misconduct
  • Product Documentation
  • Product Selectors
  • Software and Firmware
  • Product Substitution and Replacement
  • Blog
  • Events
  • Schneider Electric Community
  • Sustainability
  • Legal Information
  • Privacy Policy
  • Cookie Notice
  • Terms of use
  • Change your cookie settings