New Community Ranking System
Our Community ranking system has recently been updated. You may notice changes in user rankings and receive system messages or notifications. If you have questions about how the new ranking works, please refer to the announcement post for more details (click here).
[Imported] Area of Interest Script
EcoStruxure Geo SCADA Expert Forum
Schneider Electric support forum about installation, configuration, integration and troubleshooting of EcoStruxure Geo SCADA Expert (ClearSCADA, ViewX, WebX).
Search in
Improve your search experience:
Exact phrase→Use quotes " "(e.g., "error 404")
Wildcard→Use * for partial words(e.g., build*, *tion)
AND / OR→Combine keywords(e.g., login AND error, login OR sign‑in)
Keep it short→Use 2–3 relevant words, not full sentences
Filters→Narrow results by section(Knowledge Base, Users, Products)
Send a co-worker an invite to the portal.Just enter their email address and we'll connect them to register. After joining, they will belong to the same company.
You have entered an invalid email address. Please re-enter the email address.
This co-worker has already been invited to the Exchange portal. Please invite another co-worker.
Please enter email address
Send InviteCancel
Invitation Sent
Your invitation was sent.Thanks for sharing Exchange with your co-worker.
Link copied. Please paste this link to share this article on your social media post.
Posted: 2019-10-2602:44 AM. Last Modified: 2023-05-0312:38 AM
[Imported] Area of Interest Script
>>Message imported from previous forum - Category:Scripts and Tips<< User: mchartrand, originally posted: 2018-10-19 18:50:05 Id:155 This is a re-posting from the obsoleted (October 2018) "Schneider Electric Telemetry & SCADA" forum.
-------------------------------
**_Morgot37: Hello! Friends, can you some help me? 🙂 Next problem: we have big project in ClearSCADA. Can we change AOI in all project on custom created? May exist script? thanks in advance! P.S. Sorry for my English._**
-------------------------------
AWoodland: You can manipulate the AOI as anormal property, but I'm not aware of any pre-canned feature you could re-use
_______________
bevanweiss: You do mean Area Of Interest right? For some reason, everytime I read this I think of Add-On Instruction (ala Allen Bradley RSLogix 5000).
As Adam said, this is quite easy to change via the Automation Interface or the .NET API. So you can embed it very easily within an Excel spreadsheet for mass editing.
You could even use the Bulk Edit Tool to do this (although I haven't used the Bulk Edit Tool much, so I may well be wrong) if you weren't into Excel VBA coding.
___________________________
Andrew: can 'areaofinterestid' be changed via script. ie.
_sub areaofinterests set rs = server.query("SELECT FULLNAME FROM CADVOPCANALOG recs = rs.rows for i = 0 to rs.rowcount - 1 on error resume next call server.setopcvalue(recs(i,0) & ".AreaOfInterestId", 123 ) next on error goto 0 end sub_