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

Ask Me About Webinar: Data Center Assets - Modeling, Cooling, and CFD Simulation
Join our 30-minute expert session on July 10, 2025 (9:00 AM & 5:00 PM CET), to explore Digital Twins, cooling simulations, and IT infrastructure modeling. Learn how to boost resiliency and plan power capacity effectively. Register now to secure your spot!

Help with Pop up on bit status.

AVEVA Plant SCADA Forum

A support forum for AVEVA Plant SCADA (formerly Citect SCADA). Share new and exciting product information, connect, learn, and collaborate with the ecosystem of Plant SCADA Users. AVEVA Plant SCADA a reliable, flexible and high-performance Supervisory Control and Data Acquisition software solution for industrial process customers. This forum is to connect, share, learn and collaborate new and exciting product information. Feel free to join and share to your Ecosystem of Plant SCADA Users.

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
  • Industrial Automation
  • AVEVA Plant SCADA Forum
  • Help with Pop up on bit status.
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
olivier_vallee
Lt. Commander olivier_vallee
29
Oncom
Commander Oncom
6
BevanWeiss
Spock BevanWeiss
2
RoozeeR
Lt. Commander RoozeeR Lt. Commander
2
View All

Invite a Colleague

Found this content useful? Share it with a Colleague!

Invite a Colleague Invite
Solved Go to Solution
Back to AVEVA Plant SCADA Forum
Solved
AutomationGenie
AutomationGenie
Cadet

Posted: ‎2025-07-14 09:25 PM

0 Likes
3
90
  • 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-07-14 09:25 PM

Help with Pop up on bit status.

Hello!

 

I'm tying to trigger a pop up on a bit status and having some issue with it.

Here's the cicode I'm using.

 

FUNCTION PopOnTag1()
REAL status;

status = TagRead("tag_1", 0, "Cluster1");


IF status = 1.0 THEN
AssPopUp("!ack", "tag_1", "'RO1 Pressure High'");
END
END

 

When i call the !ack super genie through a button press, it works. so I'm sure my super genie is working.

I tried to set up the above mentioned code in a cicode object in graphic builder but the pop up wont trigger on bit status. where am i going wrong, please help.

Labels
  • Labels:
  • Plant SCADA Studio
  • Tags:
  • english
Reply

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

  • All forum topics
  • Previous Topic
  • Next Topic

Accepted Solutions
olivier_vallee
Lt. Commander olivier_vallee
Lt. Commander

Posted: ‎2025-07-15 05:37 PM

1 Like
1
77
  • 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-07-15 05:37 PM

Hi @AutomationGenie,

Do you want the popup to work on any page or just a specific page? Since the cicode object on the page, means you would need to place that on all your pages.

I can see why the cicode object approach isn't working, since it is on a page (known as foreground cicode) and TagRead is a blocking function, which won't work on foreground cicode.

Could you try modify your function, by trying:

status = Cluster1.Tag_1;

You could also try use the TagGetValue function if the above does not work:

status = TagGetValue("Cluster1.Tag_1");

 

An alternative approach, to the one above, which wouldn't require a specific cicode object to execute on each page, would be to define an Event, that runs on the client process.

 

You could call it "GLOBAL", then it will run on all Client processes in your system. If you only want it to run on specific machines (not all) then give it a unique name, then add the citect.ini setting [CLIENT]Events="YourEventName" to enable it on the machine you want.

See the help for more details: https://docs.aveva.com/bundle/plant-scada/page/1095492.html

 

Kind regards

Olivier

See Answer In Context

Reply

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

Replies 3
olivier_vallee
Lt. Commander olivier_vallee
Lt. Commander

Posted: ‎2025-07-15 05:37 PM

1 Like
1
78
  • 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-07-15 05:37 PM

Hi @AutomationGenie,

Do you want the popup to work on any page or just a specific page? Since the cicode object on the page, means you would need to place that on all your pages.

I can see why the cicode object approach isn't working, since it is on a page (known as foreground cicode) and TagRead is a blocking function, which won't work on foreground cicode.

Could you try modify your function, by trying:

status = Cluster1.Tag_1;

You could also try use the TagGetValue function if the above does not work:

status = TagGetValue("Cluster1.Tag_1");

 

An alternative approach, to the one above, which wouldn't require a specific cicode object to execute on each page, would be to define an Event, that runs on the client process.

 

You could call it "GLOBAL", then it will run on all Client processes in your system. If you only want it to run on specific machines (not all) then give it a unique name, then add the citect.ini setting [CLIENT]Events="YourEventName" to enable it on the machine you want.

See the help for more details: https://docs.aveva.com/bundle/plant-scada/page/1095492.html

 

Kind regards

Olivier

Reply

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

AutomationGenie
AutomationGenie
Cadet

Posted: ‎2025-07-16 09:39 PM

In response to olivier_vallee
0 Likes
0
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-07-16 09:39 PM

Hi Oliver! 

First of all, thanks for your reply.

 

and it worked, I had to make some changes in citect.ini file like server was set to 0 and event name wasn't present in that file. i also had to login trough a user to make that event trigger. All in all I thank you a lot for the help.

Reply

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

olivier_vallee
Lt. Commander olivier_vallee
Lt. Commander

Posted: ‎2025-07-17 03:07 PM

0 Likes
0
50
  • 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-07-17 03:07 PM

Hi @AutomationGenie 

Thanks for the feedback.

Great to hear you got it working.

Kind regards

Olivier

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

 
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