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

Connection through API

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
  • Connection through API
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

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
hcruz
Crewman hcruz
Crewman

Posted: ‎2024-01-18 12:20 PM

0 Likes
2
890
  • 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: ‎2024-01-18 12:20 PM

Connection through API

Hello Community!

I am trying to insert data in an opc analog variable but keep getting the following error messages:

System.ArgumentException: Value is an unsupported type.

ClearScada.Client.MethodException: The object '08-OPC_PMAC.Caudal_M0005_1' does not have a method named 'CurrentValue'.

If I try with an example variable there is no problem.

Is it possible to insert data in any other type of variable?

 

regards,

 

HC

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

Accepted Solutions
AdamWoodlandToo
Lt. Commander AdamWoodlandToo
Lt. Commander

Posted: ‎2024-01-21 08:28 PM

0 Likes
0
848
  • 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: ‎2024-01-21 08:28 PM

Technically CurrentValue the property is writeable on each point type, however for non-internal analogues/digitals the request will be translated into a control request, so the request may or may not work depending on the actual point type or the current configuration of the point object, such as if controls are even enabled. It is a useful trick to save you wondering if a control is inherent within the point or is attached as an aggregate for that point type, just write to the CurrentValue property instead and let the database worry how to handle it.

 

CurrentValue the method only exists on internal analogues/digitals, so if they're using .NET API's InvokeMethod then yeah that'll fail.

 

Given the error message my guess is they are trying to invoke the CurrentValue method on an OPC point which will be the problem, if they change it to instead write to the CurrentValue property and ensure the point is configured as a control it should work.

 

I'll also add into the mix that depending on what you mean by "insert data" you may also want to look into something like LoadRecord/LoadRecords method on CHistory. That will also you to insert data into the historian (CDBHistoric) for any point with historic enabled, should allow you to do more data quickly with a bit more control over the columns, but also not trigger a "point update" so no controls sent/no on-input logic triggered/no update to the current value/timestamp which depending on what your objectives are may be a good thing, or may not be helpful in the slightest.

 

See Answer In Context

Reply

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

Replies 2
BevanWeiss
Spock BevanWeiss
Spock

Posted: ‎2024-01-19 08:12 PM

0 Likes
0
876
  • 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: ‎2024-01-19 08:12 PM

Only Internal Points support directly writing to their CurrentValue property, which internally just performs a Control action.

For ALL other point types, you will need to use the Control aggregates, and methods on that to allow for the value to be written back to the source.

That also means that you need to enable the Control 'permissions', and configure things like the control ranges correctly (along with the right data type for the control attributes if applicable for the point type... i.e. DNP3)


Lead Control Systems Engineer for Alliance Automation (VIC).
All opinions are my own and do not represent the opinions or policies of my employer, or of my cat..
Reply

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

AdamWoodlandToo
Lt. Commander AdamWoodlandToo
Lt. Commander

Posted: ‎2024-01-21 08:28 PM

0 Likes
0
849
  • 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: ‎2024-01-21 08:28 PM

Technically CurrentValue the property is writeable on each point type, however for non-internal analogues/digitals the request will be translated into a control request, so the request may or may not work depending on the actual point type or the current configuration of the point object, such as if controls are even enabled. It is a useful trick to save you wondering if a control is inherent within the point or is attached as an aggregate for that point type, just write to the CurrentValue property instead and let the database worry how to handle it.

 

CurrentValue the method only exists on internal analogues/digitals, so if they're using .NET API's InvokeMethod then yeah that'll fail.

 

Given the error message my guess is they are trying to invoke the CurrentValue method on an OPC point which will be the problem, if they change it to instead write to the CurrentValue property and ensure the point is configured as a control it should work.

 

I'll also add into the mix that depending on what you mean by "insert data" you may also want to look into something like LoadRecord/LoadRecords method on CHistory. That will also you to insert data into the historian (CDBHistoric) for any point with historic enabled, should allow you to do more data quickly with a bit more control over the columns, but also not trigger a "point update" so no controls sent/no on-input logic triggered/no update to the current value/timestamp which depending on what your objectives are may be a good thing, or may not be helpful in the slightest.

 

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