Skip to content
DataMiner DoJo

More results...

Generic selectors
Exact matches only
Search in title
Search in content
Post Type Selectors
Search in posts
Search in pages
Search in posts
Search in pages
Log in
Menu
  • Updates & Insights
  • Questions
  • Learning
    • E-learning Courses
    • Empower Replay: Limited Edition
    • Tutorials
    • Open Classroom Training
    • Certification
      • DataMiner Fundamentals
      • DataMiner Configurator
      • DataMiner Automation
      • Scripts & Connectors Developer: HTTP Basics
      • Scripts & Connectors Developer: SNMP Basics
      • Visual Overview – Level 1
      • Verify a certificate
    • Video Library
    • Books We Like
    • >> Go to DataMiner Docs
  • Expert Center
    • Solutions & Use Cases
      • Solutions
      • Use Case Library
    • Markets & Industries
      • Media production
      • Government & defense
      • Content distribution
      • Service providers
      • Partners
      • OSS/BSS
    • Agile
      • Agile Webspace
      • Everything Agile
        • The Agile Manifesto
        • Best Practices
        • Retro Recipes
      • Methodologies
        • The Scrum Framework
        • Kanban
        • Extreme Programming
      • Roles
        • The Product Owner
        • The Agile Coach
        • The Quality & UX Coach (QX)
    • DataMiner DevOps Professional Program
      • About the DevOps Program
      • DataMiner DevOps Support
  • Downloads
  • More
    • DataMiner Releases & Updates
    • Feature Suggestions
    • Climb the leaderboard!
    • Swag Shop
    • Contact
    • Global Feedback Survey
  • PARTNERS
    • All Partners
    • Technology Partners
    • Strategic Partner Program
    • Deal Registration
  • >> Go to dataminer.services

Shortcomings of Visio

Solved653 views10th September 2024shape data Visio
1
Nick Chirumbolo [DevOps Advocate]746 9th September 2024 0 Comments

We recently ran into an issue where a complex Visio was crashing our DMA. We’re currently transitioning the functionality into a Low Code App, but for the future we’re hoping to determine if there are certain features that should not be combined or are taxing on the system and should not be performed many times within a page.

Here is a list of all shape data fields we used. The specific Visio has already been checked and no apparent syntax errors or misuses were found:

  • Multiple Pages
  • InitVar
  • Element
  • Parameter
  • Variable
  • Tooltip
  • Page
  • Options: NoAlarmColorFill, HighlightStyle, AllowCustomIndex
  • Children(ROW)/ChildrenSource/ChildrenSort/ChildrenPanel
  • ChildType/ChildMargin
  • SetVar/SetVarOptions
  • SubscriptionFilter(VALUE) – using placeholders and *
  • ParameterSubscriptionFilter(VALUE) – using placeholders and *
  • Execute(SCRIPT/SET)
  • Basic and Extended Conditionals (Show/Hide/Highlight/FillColor)
  • Placeholders: [var:]/[param:]/[RegexReplace:]

Here is a description of how the fields were used:

  • 2x Children=ROW for the same table w/ different VALUE Subscription filters w/ * wildcards and ChildrenSorted Display Key TableColumn
  • A link to another Page of the same Visio that also performs a SetVar, nested w/in the outer Children=ROW
  • Nested Children=ROW w/ a Subscription filter using the parent Children’s [tableIndex]
  • Multiple parameter shapes w/in the inner Children=ROW group
  • Nested RegexReplace statements using [parentTableIndex] w/in the inner Children=ROW group
  • A parameter shape using a ParameterSubscriptionFilter (w/ a [param:] placeholder and AllowCustomIndex option) w/in the inner Children=ROW group
  • A FilterComboBox SetVar using custom DisplayColumn/SetColumn and SubscriptionFilter w/ * wildcard (And a [sep::;] due to : in the values).
  • An array session var using RegexReplace in SetVar to create a kind of ‘map’ separating entries w/ & and keys/values w/ < (SelectedStreams:[RegexReplace:[parentTableIndex]<[^&]+&|(?<![parentTableIndex].*)$,[var:SelectedStreams],[parentTableIndex]<[tableIndex]&])
  • A shape w/in a nested Children=ROW object that contains a Shape SetVar (See prior bullet), Tooltip, Parameter Basic Condition (FillColor) and Highlight extended condition (Changing Line color/width to match a single Options=HighlightStyle shape).
  • Buttons w/in a Children=ROW that have a Tooltip, NoAlarmColorFill option and triggers a script with Execute, using [tableIndex] as an input parameter, that updates a session variable. Uses NoCofirmation option.
  • A Button that triggers a script with Execute, using a session variable as input, that makes an API call and updates element parameters as well as session variables. Uses NoCofirmation and NoSetCheck options.
  • Shapes w/in Children=ROW inner groups that show/hide based on Session Variable (Basic Condition) and table parameter (Extended condition)
  • NOTE: Most Children=ROW groups are referencing Partial Tables that contain 100s+ of entries, filtered down to ~10 rows using a SubscriptionFilter typically with a param/var placeholder and * wildcard matcher.

Some examples of what I’m interested in learning would be “Visios are inefficient when performing many Regex operations on a single page” or “You should not nest ROW Children beyond 1 level”, etc. but any advice of how to optimize or prevent slow load times in the future would be greatly appreciated.

Thanks!

Nick Chirumbolo [DevOps Advocate] Selected answer as best 10th September 2024

1 Answer

  • Active
  • Voted
  • Newest
  • Oldest
2
Toon Casteele [SLC] [DevOps Enabler]7.00K Posted 10th September 2024 8 Comments

This sounds like something for the Visual Overview Solution Analysis series. The latest entry was actually just released! This series aims to help out everyone to improve their Visual Overviews through analyzing actual use cases and improving them. Take a look at the 2 videos we already have in the series (and of course, if you haven’t yet, the Visual Overview course) and hopefully that will already help. And if you still have trouble with your performance after that, maybe you can reach out to be the next entry in our series 😉

The only advice I can give to actually answer this question at this point is: the more you visualize on your Visual Overview, the slower it will be :D.

Toon Casteele [SLC] [DevOps Enabler] Posted new comment 17th September 2024
Nick Chirumbolo [DevOps Advocate] commented 10th September 2024

Great, thank you! This is exactly what I was looking for. Do you happen to know if there’s training on how to enable devices for the DCF? I’ve found plenty of training on how to add it to a Visio, but how are the actual connections defined? I can pursue training on my own, just not sure if it is through the Element Connections menu, or the Connectivity Editor, or something else.

Toon Casteele [SLC] [DevOps Enabler] commented 11th September 2024

These 2 links should help you on your way:
https://docs.dataminer.services/develop/devguide/Connector/AdvancedDcf.html
+
https://docs.dataminer.services/user-guide/Advanced_Functionality/DCF/Configuring_element_connectivity_in_Cube/Editing_element_connections_in_the_Properties_window.html

Nick Chirumbolo [DevOps Advocate] commented 13th September 2024

Great, thank you! So what it seems like is this feature needs to be built into the driver? Currently I don’t see any connectivity features mentioned on the MWCore element, so it seems like this driver just doesn’t have the DCF framework setup, which would explain why I’ve found none of the guides very helpful.

Toon Casteele [SLC] [DevOps Enabler] commented 16th September 2024

Yes, the interfaces need to be built into the driver. This can be done statically, or the driver can be configured to have its interfaces defined from a table.

Nick Chirumbolo [DevOps Advocate] commented 16th September 2024

Oh great, I did find the table on the MWCore protocol for this under General Parameters, is there instructions on how to add these? Or would that be more driver specific, and if so I don’t see instructions on the MWCore protocol help page, so what would be the best way of tracking that down?

Show 3 more comments
Please login to be able to comment or post an answer.

My DevOps rank

DevOps Members get more insights on their profile page.

My user earnings

0 Dojo credits

Spend your credits in our swag shop.

0 Reputation points

Boost your reputation, climb the leaderboard.

Promo banner DataMiner DevOps Professiona Program
DataMiner Integration Studio (DIS)
Empower Katas
Privacy Policy • Terms & Conditions • Contact

© 2025 Skyline Communications. All rights reserved.

DOJO Q&A widget

Can't find what you need?

? Explore the Q&A DataMiner Docs