We Value Your Feedback!
Could you please spare a few minutes to share your thoughts on
Cloud Connected vs On-Premise Services. Your feedback can
help us shape the future of services. Learn more about the survey
or
Click here to Launch the survey Schneider Electric Services Innovation Team!
[Imported] Develop Tool - Display Reference to Decommissioned Points
EcoStruxure Geo SCADA Expert Forum
Schneider Electric support forum about installation, configuration, integration and troubleshooting of EcoStruxure Geo SCADA Expert (ClearSCADA, ViewX, WebX).
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-11-0512:22 PM. Last Modified: 2023-05-0312:38 AM
[Imported] Develop Tool - Display Reference to Decommissioned Points
>>Message imported from previous forum - Category:Scripts and Tips<< User: mchartrand, originally posted: 2018-10-19 20:02:52 Id:163 This is a re-posting from the obsoleted (October 2018) "Schneider Electric Telemetry & SCADA" forum.
-------------------------------
**_NIWTelemetry: Hello Everyone. Looking for some ideas. I have a series of mimics containing network schematics with embedded flow values / SR levels - referenced from live analogue points on the database. We are involved with a large outstation replacement project which involves decommissioning old Proteus analogue points and replacing them with new WITS analogue points. A number of schematics have been found to reference decommissioned analogue points and need to be updated to reference the new analogue point. My question is - is there anyway a script can be written to find and report any references to decommisioned points - in order to help keep the schematics up to date? Thanks in advance - open to any ideas._**
**_NIWTelemetry: Thanks very much for the reply. I will check this out and get back to you._**
______
dmercer: This sometimes also be done using export/import tricks.
You can export a mimic or group, remove or rename the old points, put the new points in with the same FullNames as the old points, and reimport the mimic. It often requires shuffling large number of objects though, which can take the database a long time to do. It's not always practical.
_________
sbeadle: There are .Net client API methods 'getReferencesFrom' and 'getReferencesTo' which will do the same as the client's 'get references' menu. Just open a connection, get an object by name and call the method.
__________
**_NIWTelemetry: Hi Dean thanks for your thoughts. Unfortunately the group which contains the mimics and schematics is in a separate area of the database from another parent folder which potentially would contained a referenced decommissioned point which would make this difficult._**
_____________
hardin4019: First thought that crossed my mind was to build a query something like this, though not tested or exactly what you might be looking for. See if this gives you a "referenced from" column and move forward from there.
_Select * From CDBPoint Where Inservice Like False AND PointType Like Proteus, and TemplateID Not Like -1_