EcoStruxure Geo SCADA Expert Forum
Schneider Electric support forum about installation, configuration, integration and troubleshooting of EcoStruxure Geo SCADA Expert (ClearSCADA, ViewX, WebX).
Link copied. Please paste this link to share this article on your social media post.
Posted: 2023-03-20 01:09 AM . Last Modified: 2023-05-02 11:46 PM
Hello all,
I would like to create an internal analog point through a script called from a mimic button.
What is the function to use?
Thanks!
Ivan
Link copied. Please paste this link to share this article on your social media post.
Link copied. Please paste this link to share this article on your social media post.
Posted: 2023-03-20 09:22 PM
You can't directly, need to create a COM object for the Automation interface and use that. There's an example at https://www.se.com/au/en/faqs/FA280488/
Link copied. Please paste this link to share this article on your social media post.
Link copied. Please paste this link to share this article on your social media post.
Posted: 2023-03-20 09:22 PM
You can't directly, need to create a COM object for the Automation interface and use that. There's an example at https://www.se.com/au/en/faqs/FA280488/
Link copied. Please paste this link to share this article on your social media post.
Link copied. Please paste this link to share this article on your social media post.
Posted: 2023-03-21 03:56 PM
Depending on the point type and the user permissions we have successfully created objects using an INSERT SQL query via vbscript.
The user executing the command probably needs to have the "Edit SQL" check box enabled in their user.
Something like:
' other script stuff that comes before the creation
' this example for creating a template instance
sql = "INSERT INTO CTEMPLATEINSTANCE (Name, ParentGroupId) VALUES ('instanceName', templateId)"
Set query = Server.Query(sql)
' Error handling and all that
' Updating point configuration with comm settings and such
Link copied. Please paste this link to share this article on your social media post.
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.