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

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!

Is Server.SetOPCValue with DPN3 pulse point through Script supported?

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
  • Is Server.SetOPCValue with DPN3 pulse point through Script supported?
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
308
AndrewScott
Admiral AndrewScott
96
BevanWeiss
Spock BevanWeiss
91
AdamWoodlandToo
Lt. Commander AdamWoodlandToo
37
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
Solved Go to Solution
Back to EcoStruxure Geo SCADA Expert Forum
Solved
Tanquen
Lt. Commander Tanquen
Lt. Commander

Posted: ‎2020-08-25 12:37 PM . Last Modified: ‎2023-05-03 12:11 AM

0 Likes
3
1511
  • 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: ‎2020-08-25 12:37 PM . Last Modified: ‎2023-05-03 12:11 AM

Is Server.SetOPCValue with DPN3 pulse point through Script supported?

I need to have a button write or set off two different DNP3 Pulse tags.

 

This gives the error, "The Value is read only and may not be written to."

 

Server.SetOPCValue "...Tags DNP.Control.Download Setpoints CMD", ''Download''

 

 

This PickParam has no errors when selected:

 

PickType 5

PickParam ""...Tags DNP.Control.Download Setpoints CMD.ObjectLink"+'?Control&Action=''Download'''"

 

This works with an internal tag:

 

Server.SetOPCValue "...Tags DNP.Control.Test1", 1

  • 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
geoffpatton
Captain geoffpatton
Captain

Posted: ‎2020-08-27 06:56 AM

0 Likes
2
1487
  • 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: ‎2020-08-27 06:56 AM

No you have to set and variable equal to your point's full name and then do an interface control on it.

With a Pulse Null you write a 0

With a Pulse Trip you write a 0 for the first action and a 1 for the second one.

 

Option Explicit
Sub OpenBreaker()
dim objOpenCmd
'Create a reference to the Open Object.
Set objOpenCmd = Server.FindObject(Server.GetOPCValue("...IO.Control.Open CMD.Fullname"))

objOpenCmd.Interface.Control 0

End Sub

See Answer In Context

  • Tags:
  • english
Reply

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

geoffpatton
Captain geoffpatton
Captain

Posted: ‎2020-08-27 01:10 PM . Last Modified: ‎2020-08-27 01:11 PM

In response to Tanquen
0 Likes
0
1474
  • 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: ‎2020-08-27 01:10 PM . Last Modified: ‎2020-08-27 01:11 PM

Option Explicit is not required it is extremely useful when writing or editing the code. It generates an error if you forgot to declared variables that you use in your routine, or you misspelled a variable.

 

If you are using a code fragment in a pick action you don't need Sub lines, but you do in the mimic scripting.

 

Your question about weather the sub line were necessary made me think a moment. I don't use the code fragment option much and I tend to forget about it. My scripts are almost always more complicated than I want to try to put in a code fragment. Most of mine check if the user has control privileges and if they do not it prompts them that they don't have the right to operate the button and need to use a different login. Most of mine also ask to confirm they meant to press the button to prevent accidental operations.

 

Also you can run debugging on the code in the Mimic script section.

 

 

See Answer In Context

  • Tags:
  • english
Reply

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

Replies 3
geoffpatton
Captain geoffpatton
Captain

Posted: ‎2020-08-27 06:56 AM

0 Likes
2
1488
  • 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: ‎2020-08-27 06:56 AM

No you have to set and variable equal to your point's full name and then do an interface control on it.

With a Pulse Null you write a 0

With a Pulse Trip you write a 0 for the first action and a 1 for the second one.

 

Option Explicit
Sub OpenBreaker()
dim objOpenCmd
'Create a reference to the Open Object.
Set objOpenCmd = Server.FindObject(Server.GetOPCValue("...IO.Control.Open CMD.Fullname"))

objOpenCmd.Interface.Control 0

End Sub

  • Tags:
  • english
Reply

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

Tanquen
Lt. Commander Tanquen
Lt. Commander

Posted: ‎2020-08-27 12:35 PM

In response to geoffpatton
0 Likes
1
1477
  • 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: ‎2020-08-27 12:35 PM

I had to fix my PickParam and add the “.ObjectLink” on the end. When they use the built in method or the PickParam Animation Expression they always pass the DNP3 pulse description. I'm not sure why they do but it works. The "objRefreshCmd.Interface.Control" will not take a string but it seems to work the same.

 

I’m using it in a Pick Action Execute Code Fragment so I can removed the Sub or call it at the end to get it to run. Any reason to keep the Option Explicit and Sub lines?

 

 

Option Explicit
Sub Refresh()


dim objRefreshCmd
dim objDownloadCmd
'Create a reference to the Refresh and Download objects.
Set objRefreshCmd= Server.FindObject(Server.GetOPCValue("...Tags DNP.Control.Refresh Setpoints CMD.Fullname"))
Set objDownloadCmd = Server.FindObject(Server.GetOPCValue("...Tags DNP.Control.Download Setpoints CMD.Fullname"))

 

objRefreshCmd.Interface.Control 0
objDownloadCmd.Interface.Control 0

 

End Sub

 

Refresh

  • Tags:
  • english
Reply

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

geoffpatton
Captain geoffpatton
Captain

Posted: ‎2020-08-27 01:10 PM . Last Modified: ‎2020-08-27 01:11 PM

In response to Tanquen
0 Likes
0
1475
  • 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: ‎2020-08-27 01:10 PM . Last Modified: ‎2020-08-27 01:11 PM

Option Explicit is not required it is extremely useful when writing or editing the code. It generates an error if you forgot to declared variables that you use in your routine, or you misspelled a variable.

 

If you are using a code fragment in a pick action you don't need Sub lines, but you do in the mimic scripting.

 

Your question about weather the sub line were necessary made me think a moment. I don't use the code fragment option much and I tend to forget about it. My scripts are almost always more complicated than I want to try to put in a code fragment. Most of mine check if the user has control privileges and if they do not it prompts them that they don't have the right to operate the button and need to use a different login. Most of mine also ask to confirm they meant to press the button to prevent accidental operations.

 

Also you can run debugging on the code in the Mimic script section.

 

 

  • Tags:
  • english
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

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