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!

[Imported] Locating table for animation strings within mimics.

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
  • [Imported] Locating table for animation strings within mimics.
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
98
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
sbeadle
Kirk sbeadle Kirk
Kirk

Posted: ‎2019-11-06 11:53 PM . Last Modified: ‎2023-05-03 12:23 AM

0 Likes
1
1011
  • 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: ‎2019-11-06 11:53 PM . Last Modified: ‎2023-05-03 12:23 AM

[Imported] Locating table for animation strings within mimics.

>>Message imported from previous forum - Category:General Items<<
User: ROVSCADAENGINEER, originally posted: 2019-06-10 02:45:19 Id:446
I am wondering if anyone is aware of a table in the schema which contains the strings stored in each mimic objects animation properties.

Labels
  • Labels:
  • SCADA
Reply
Contact Support

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

  • All forum topics
  • Previous Topic
  • Next Topic

Accepted Solutions
sbeadle
Kirk sbeadle Kirk
Kirk

Posted: ‎2019-11-06 11:53 PM

0 Likes
0
1009
  • 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: ‎2019-11-06 11:53 PM

>>Responses imported from previous forum


Reply From User: adamwoodland, posted: 2019-06-10 04:24:57
Mimic content is not available via the schema, as far as the server is concerned (schema is server side) its a blob that only the client end (e.g. ViewX or WebX) knows how to interpret.

So, what are you trying to do? There are two ways I can think of that you can get that info programatically.

1. Use the ViewX automation interface, undocumented (even worse given we lost all the old forum content that semi-documented it), unstable and fairly slow, but works. Allows you to loop through mimics as objects, but as its slow be careful when wanting to process multiple mimics (i.e. all the system's mimics).

2. Use old WebX (i.e. the one hosted by DBServer, not IIS), when you display a mimic it'll have ?applet in the URL, change it to ?content and you get the mimic content as XML. Really fast, easy to parse with the info in you need.

New IIS Web might have something, it does have a RESTful interface (also undocumented and so unsupported), I've never tried.


Reply From User: ROVSCADAENGINEER, posted: 2019-06-11 23:24:26
Hmm undocumented also like the bulkedit tool. cannot seem to find any help on the help interface for this.

I was wanting to extract the animations to cover over 150 sites to ensure a particular point had been consumed in the logic of the animation. instead of checking each site that is not referencing a template or has a property override.


Reply From User: geoffpatton, posted: 2019-06-12 15:07:24
The Bulk Edit tool has a user manual in the start menu.

Things I can think of that might be helpful.
It basically reads the Schema to let you edit the object properties. So you can refer to the Schema.

You have to know the numbers, that represent the text, you have configured for the Alarm Severity since those can be anything you want and the bulk edit tool does not access the registry where those are saved. Refer to the Server Configuration if you don't remember those.

Any Metadata fields you add shows up in it but it will not know what you made that for.

It does have some quirks, like the Alarm Redirection ID requires you to enter the Full name of the Alarm redirection not the ID Number.

Any problems you have with the Bulk Edit tool and/or its documentation you should contact support and request they be fixed/updated.

See Answer In Context

Reply
Contact Support

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

Reply 1
sbeadle
Kirk sbeadle Kirk
Kirk

Posted: ‎2019-11-06 11:53 PM

0 Likes
0
1010
  • 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: ‎2019-11-06 11:53 PM

>>Responses imported from previous forum


Reply From User: adamwoodland, posted: 2019-06-10 04:24:57
Mimic content is not available via the schema, as far as the server is concerned (schema is server side) its a blob that only the client end (e.g. ViewX or WebX) knows how to interpret.

So, what are you trying to do? There are two ways I can think of that you can get that info programatically.

1. Use the ViewX automation interface, undocumented (even worse given we lost all the old forum content that semi-documented it), unstable and fairly slow, but works. Allows you to loop through mimics as objects, but as its slow be careful when wanting to process multiple mimics (i.e. all the system's mimics).

2. Use old WebX (i.e. the one hosted by DBServer, not IIS), when you display a mimic it'll have ?applet in the URL, change it to ?content and you get the mimic content as XML. Really fast, easy to parse with the info in you need.

New IIS Web might have something, it does have a RESTful interface (also undocumented and so unsupported), I've never tried.


Reply From User: ROVSCADAENGINEER, posted: 2019-06-11 23:24:26
Hmm undocumented also like the bulkedit tool. cannot seem to find any help on the help interface for this.

I was wanting to extract the animations to cover over 150 sites to ensure a particular point had been consumed in the logic of the animation. instead of checking each site that is not referencing a template or has a property override.


Reply From User: geoffpatton, posted: 2019-06-12 15:07:24
The Bulk Edit tool has a user manual in the start menu.

Things I can think of that might be helpful.
It basically reads the Schema to let you edit the object properties. So you can refer to the Schema.

You have to know the numbers, that represent the text, you have configured for the Alarm Severity since those can be anything you want and the bulk edit tool does not access the registry where those are saved. Refer to the Server Configuration if you don't remember those.

Any Metadata fields you add shows up in it but it will not know what you made that for.

It does have some quirks, like the Alarm Redirection ID requires you to enter the Full name of the Alarm redirection not the ID Number.

Any problems you have with the Bulk Edit tool and/or its documentation you should contact support and request they be fixed/updated.

Reply
Contact Support

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