Help
  • Explore Community
  • Get Started
  • Ask the Community
  • How-To & Best Practices
  • Contact Support
Notifications
Login / Register
Community
Community
Notifications
close
  • Forums
  • Knowledge Center
  • Events & Webinars
  • Ideas
  • Blogs
Help
Help
  • Explore Community
  • Get Started
  • Ask the Community
  • How-To & Best Practices
  • Contact Support
Login / Register
Sustainability
Sustainability

Join our "Ask Me About" community webinar on May 20th at 9 AM CET and 5 PM CET to explore cybersecurity and monitoring for Data Center and edge IT. Learn about market trends, cutting-edge technologies, and best practices from industry experts.
Register and secure your Critical IT infrastructure

[Imported] Analog Point Properties

EcoStruxure Geo SCADA Expert Forum

Schneider Electric support forum about installation, configuration, integration and troubleshooting of EcoStruxure Geo SCADA Expert (ClearSCADA, ViewX, WebX).

cancel
Turn on suggestions
Auto-suggest helps you quickly narrow down your search results by suggesting possible matches as you type.
Showing results for 
Show  only  | Search instead for 
Did you mean: 
  • Home
  • Schneider Electric Community
  • Remote Operations
  • EcoStruxure Geo SCADA Expert Forum
  • [Imported] Analog Point Properties
Options
  • Subscribe to RSS Feed
  • Mark Topic as New
  • Mark Topic as Read
  • Float this Topic for Current User
  • Bookmark
  • Subscribe
  • Mute
  • Printer Friendly Page
Invite a Co-worker
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 Invite Cancel
Invitation Sent
Your invitation was sent.Thanks for sharing Exchange with your co-worker.
Send New Invite Close
Top Experts
User Count
sbeadle
Kirk sbeadle Kirk
307
AndrewScott
Admiral AndrewScott
95
BevanWeiss
Spock BevanWeiss
89
AdamWoodlandToo
Lt. Commander AdamWoodlandToo
36
View All
Related Products
product field
Schneider Electric
EcoStruxure™ Geo SCADA Expert

Invite a Colleague

Found this content useful? Share it with a Colleague!

Invite a Colleague Invite
Back to EcoStruxure Geo SCADA Expert Forum
sbeadle
Kirk sbeadle Kirk
Kirk

Posted: ‎2019-11-05 01:29 PM . Last Modified: ‎2023-05-03 12:35 AM

0 Likes
1
1350
  • Mark as New
  • Bookmark
  • Subscribe
  • Mute
  • Subscribe to RSS Feed
  • Permalink
  • Print
  • Email to a Friend
  • Report Inappropriate Content

Link copied. Please paste this link to share this article on your social media post.

Posted: ‎2019-11-05 01:29 PM . Last Modified: ‎2023-05-03 12:35 AM

[Imported] Analog Point Properties

>>Message imported from previous forum - Category:ClearSCADA Software<<
User: florian, originally posted: 2018-10-25 16:41:51 Id:242
This is a re-posting from the obsoleted (October 2018) "Schneider Electric Telemetry & SCADA" forum.

-------------------------------

**_richie133:_**
**_Hi All,_**

**_I'm curious about analog point setting on ClearSCADA._**

**_So let's say that I have analog input on the PLC which connected to CS using modbus communication. I have this kind of properties of the analog input:_**

**_1. Transmitter realtime value_**
**_2. Minimum value of analog input_**
**_3. Maximum value of analog input_**
**_4. Alarm value for High and Low_**

**_So in the PLC I have to assign these 5 properties with 5 pair of holding register, let's say :_**

**_1. 40001 & 40002 for Transmitter realtime value_**
**_2. 40003 & 40004 for Minimum value_**
**_3. 40005 & 40006 for Maximum value_**
**_4. 40007 & 40008 for Low Alarm value_**
**_5. 40009 & 40010 for High Alarm value_**

**_From these 5 pair register I need to make 5 analog input point on ClearSCADA, and here is the problem :_**

**_On ClearSCADA, the properties of analog point must have its own alarm limits and honestly it is very annoying to fill each of this value eventhough I don't use each of analog point properties._**

**_For example, for realtime value I have to fill in its Zero Scale and Full Scale. For minimum value and maximum value also I have to fill in its Zero Scale and Full Scale, the same with Low Alarm and High Alarm value._**

**_Is there any way to make this process become more simple? Because if it is just a couple of analog point it's OK, but if it's more than 100 or even more than that surely it is very annoying to check on every details in which we don't need that._**

-------------------


geoffpatton:
1. You can use the Bulk Edit tool if you are using ClearSCADA 2014 or greater. It is a seperate installer on the ClearSCADA installation disk.
The Bulk Edit user Guide is in the start menu, you might find helpful.
There are two basic editing functions Bulk Edit does. Edit Property settings in any object in the database, and edit Property Overrides in the template(s).
There is a bug in Bulk Edit at startup. It starts up with the template database tree that is for editing property overrides but loads the code to edit the object properties. So to get it to behave right, when you first start it, you have to select which form of editing you want to do.
On the button toolbar the first button has the ClearSCADA database Icon, and is for Logout and Reload Database, the second button loads the Properties editing, and the third button loads the Property override editing.

2. There is also a Excel tool available on the Resource Center's Tools and Samples page at:
http://resourcecenter.controlm...pageId=40535951

Scroll down to 'Spreadsheet-based Configuration Import Tool'.
I have not used it but it might get you what you want.

3. elfstyle made and excel add-in called instances creator That I believe will let you quickly do what you want. I have not used it so I can't say exactly how it works.
http://telemetry.schneider-ele...y&keyword1=bulk


4. If your points always the same like in an instance of a Template you could add a mimic to the Template and put a button that run scripts and write VBScript that asks opens a form and asks what you want to set them to and then make it write the values to all the points. This one requires knowing how to read and write properties from the points in the Database.
This should help you if you are going to try using a script

_Option Explicit_
_Function GenFuelPercentLow_
_Dim frmEditBox, frmOKButton, frmCancelButton_

_Form.Init "Set Fuel Low Percentage Alarm"_
_Form.AddStaticText 2,1, "Set Fuel Low Percentage Alarm"_
_Set frmEditBox = Form.AddEditBox(2,3,10,1)_
_frmEditBox.MaxLength = 10_
_frmEditBox.Align = 0_
_frmEditBox.Value = Server.GetOPCValue("...IO.AI.Generator Fuel Percent.LowLimitStd")_

_Set frmOKButton = Form.AddPushButton(25,3,"OK")_
_frmOKButton.Default = True_
_Set frmCancelButton = Form.AddPushButton(40,3,"Cancel")_
_Form.Show_

_If Form.Selection = "OK" Then_
_Server.SetOPCValue "...IO.AI.Generator Fuel Percent.LowLimitStd", Round(Cint(frmEditBox.Value))_
_If Round(Cint(frmEditBox.Value)) = 0 Then_
_Server.SetOPCValue "...IO.AI.Generator Fuel Percent.LowSeverityType", 0_
_Else_
_Server.SetOPCValue "...IO.AI.Generator Fuel Percent.LowSeverityType", 2_
_End If_
_End If_

_End Function_

------------------------

sbeadle:
A template containing all six points could be used, so that all properties are defined once only.

If each instance has different full and zero scale values common to the six points, then you can use the new parameterisation feature of templates and enter these values only once.

If unused, alarm limits should be set to full and zero scale values.

A different approach is to use a single PLC register for the value, and use ClearSCADA's alarms and Min/Max Accumulators for the other values.

----------------------

du5tin:
Stephen,

Is there a way to write to an template instance's parameters via script or the automation interface? Or do you need to open the instance properties in ViewX to edit those?

------------------------

sbeadle:
I am not aware that template parameters are exposed to the APIs. Anyone else?

Labels
  • Labels:
  • SCADA
Reply

Link copied. Please paste this link to share this article on your social media post.

  • All forum topics
  • Previous Topic
  • Next Topic
Reply 1
sbeadle
Kirk sbeadle Kirk
Kirk

Posted: ‎2021-10-28 02:38 AM . Last Modified: ‎2022-10-19 01:19 AM

0 Likes
0
858
  • Mark as New
  • Bookmark
  • Subscribe
  • Mute
  • Subscribe to RSS Feed
  • Permalink
  • Print
  • Email to a Friend
  • Report Inappropriate Content

Link copied. Please paste this link to share this article on your social media post.

Posted: ‎2021-10-28 02:38 AM . Last Modified: ‎2022-10-19 01:19 AM

Link to spreadsheet tool now at:

https://community.se.com/t5/Geo-SCADA-Knowledge-Base/Tools-amp-Samples/ba-p/279123

 

  • Tags:
  • english
  • scada
  • SCADA app
  • SCADA software
  • SCADA tutorial
  • Telemetry and SCADA
Reply

Link copied. Please paste this link to share this article on your social media post.

To The Top!

Forums

  • APC UPS Data Center Backup Solutions
  • EcoStruxure IT
  • EcoStruxure Geo SCADA Expert
  • Metering & Power Quality
  • Schneider Electric Wiser

Knowledge Center

Events & webinars

Ideas

Blogs

Get Started

  • Ask the Community
  • Community Guidelines
  • Community User Guide
  • How-To & Best Practice
  • Experts Leaderboard
  • Contact Support
Brand-Logo
Subscribing is a smart move!
You can subscribe to this board after you log in or create your free account.
Forum-Icon

Create your free account or log in to subscribe to the board - and gain access to more than 10,000+ support articles along with insights from experts and peers.

Register today for FREE

Register Now

Already have an account? Login

Terms & Conditions Privacy Notice Change your Cookie Settings © 2025 Schneider Electric

This is a heading

With achievable small steps, users progress and continually feel satisfaction in task accomplishment.

Usetiful Onboarding Checklist remembers the progress of every user, allowing them to take bite-sized journeys and continue where they left.

of