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

Controlling Alarm Values ​​from Mimic

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)
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
  • Controlling Alarm Values ​​from Mimic
Options
  • 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
319
AndrewScott
Admiral AndrewScott
114
BevanWeiss
Spock BevanWeiss
97
AdamWoodlandToo
Lt. Commander AdamWoodlandToo
39
View All

Invite a Colleague

Found this content useful? Share it with a Colleague!

Invite a Colleague Invite
Back to EcoStruxure Geo SCADA Expert Forum
Start a Topic
abdullah123456789
Lt. Commander abdullah123456789
Lt. Commander

Posted: ‎2025-10-31 05:48 AM . Last Modified: ‎2025-10-31 05:51 AM

0 Likes
2
57
  • Mark as New
  • Bookmark
  • Subscribe
  • Mute
  • 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: ‎2025-10-31 05:48 AM . Last Modified: ‎2025-10-31 05:51 AM

Controlling Alarm Values ​​from Mimic

Hello. I'm using the November 2024 version of Geo Scada Expert 2023 and have a question. I have some field data I retrieve via ODBC, and I also include this live field data in calculations within Scada.

 

I want to set alarm values ​​within the mimic page to which this calculation data is assigned. However, I definitely don't want to do this from the signal's Properties screen, but rather with a command embedded within the Mimic. To do this, I created a Text Box and assigned the signal to it using the Method method within the Pick Action. However, the Tune Alarm Limits method I chose for this operation doesn't seem to be working properly. The options I used in the Text Box assignment are as shown in the images below.

abdullah123456789_0-1761914983070.png           abdullah123456789_1-1761914045358.png

 

 

For example, let's say my signal's HighLimit value is 4. I enter the HighLimit value as 3 using this button. I don't receive any errors or warnings; the value is still 4 in the Tune Alarm Limits screen. However, when I check the signal's Properties screen, I see that there's still no change. 

abdullah123456789_6-1761914545853.png

abdullah123456789_7-1761914576061.png

 

When I checked the help page in the link below, I saw that the values ​​I entered here were only temporary, not permanent. Can you help me with this? So, is the transaction I perform with this method actually saved temporarily? Or is there a better way to perform the transaction I mentioned? Thank you in advance.

https://tprojects.schneider-electric.com/GeoSCADAHelp/Geo%20SCADA%202021/Content/DriversGuide/TuneAl...

 

 

 

Labels
  • Labels:
  • SCADA
  • ViewX
  • 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.

  • All forum topics
  • Previous Topic
  • Next Topic
Replies 2
tfranklin
Commander tfranklin
Commander

Posted: ‎2025-11-02 06:54 AM

0 Likes
0
36
  • Mark as New
  • Bookmark
  • Subscribe
  • Mute
  • 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: ‎2025-11-02 06:54 AM

What you're looking at is tuned alarm limits.  When you use alarm tuning, the base alarm config remains in place and the "tuned" value is effectively an override for that limit value until a user releases the tune.  Tuning is useful for situations where you've fully rationalized your alarms in a system and don't want users changing them, but want to give them the ability to bump them temporarily in the event a transmitter is at the edge of a limit and it's continuously re-triggering alarms.  

 

If you're wanting to change the actual configured alarm value, you'd need to do so with a script or query.  The user also will require the Configure permission to do so.  

 

set obj = server.findobject("someobject.path.here.to.analog.point")

obj.interface.highhighlimitstd = 123

obj.interface.highlimitstd = 50

 

This complicates a few things though because now you have to script in some kind of validation of the entered values.  Meaning -- if the user enters a HH value that is lower than the H limit, you'll get an error on the tag.  So instead, you'll want to do some error handling in the script.  This is all natively done for you with alarm tuning though.  If you're not keen on scripting I'd probably recommend the tuning route if you're comfortable with how it works.  

Reply

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

abdullah123456789
Lt. Commander abdullah123456789
Lt. Commander

Posted: ‎2025-11-02 10:22 AM

0 Likes
0
30
  • Mark as New
  • Bookmark
  • Subscribe
  • Mute
  • 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: ‎2025-11-02 10:22 AM

Thank you for your response. A few quick questions about Alarm Tuning: When does a tuning release occur besides manual release or system restart? Can tuned values be applied automatically after a restart? Is manual release done via a script or method, and how can I implement it? While tuning is active, does the system use the tuned values until release? Any example scripts or documentation would be helpful.

Reply

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

Preview Exit Preview

never-displayed

You must be signed in to add attachments

never-displayed

 

You’ve reached the end of your document

WHAT’S NEXT?

Ask our Experts

Didn't find what you are looking for? Ask our experts!

My Dashboard

Check out the new Feeds and activities that are relevant to you.

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

Welcome!

Welcome to your new personalized space.

of

Explore