DataMiner Cube Version
7th May 2025
Hi Lisa, Cube updates to the latest version based on the update track, as mentioned in Managing the start window of the desktop app | DataMiner Docs. However, you can …
Answer
7th May 2025
Hi Lisa, Cube updates to the latest version based on the update track, as mentioned in Managing the start window of the desktop app | DataMiner Docs. However, you can …
6th May 2025
Hi Samita, I confirm the issue. I guess the feature was designed to work for rather ‘static’ rows. Nevertheless, this should be easy to support. Feel free to make that …
6th May 2025
In an addition to earlier answers I also want to highlight the possibility to embed Dashboard components into Visio. You could make a Dashboard folder containing an Dashboard for each …
6th May 2025
Hi Jaroslaw, Yes it possible to migrate a MySQL system to CassandraCluster + OpenSearch. Note you cannot have standalone CassandraCluster; it needs to be a combination of CassandraCluster + OpenSearch. …
6th May 2025
Hi, You can do this by sending the following SLNet messages:
6th May 2025
Hi Samantha, If you’d like to assign a specific value to that column when the element restarts, you can use an “After Startup” trigger paired with an Action and a …
6th May 2025
Hi Ramesh, I believe you can use SetAlarmStateMessage to achieve this. Example: var tree = new AlarmTreeID(dmaId, elementId, rootAlarmId); var message = new SetAlarmStateMessage(tree, AlarmUserStatus.UnResolved, $”User {username} released ownership.”); engine.SendSLNetMessage(request); …
5th May 2025
Hi Bruno, You can use a custom property as a filter. In your case from what you are showing, I believe you are missing the [] brackets around the Property …
5th May 2025
Hi Jeroen, In the docs it’s explained you can add files like this in the /public/ folder to make them available over remote access (still behind B2C Login & remote …
5th May 2025
Hi, The error seems to indicate that you do not have the required .NET version installed. More information about this can be found on our docs here. Kind regards,
5th May 2025
Hello Miguel, as discussed internally, a possible solution could be to make a shared preset with the desired unit and to set that preset on elements where you need the …
5th May 2025
Hi Joshua, This kind of error typically points to a race condition or a timing issue during concurrent access or modification of a table row. For example, if multiple QAction …
5th May 2025
Hi Nick, Instead of: var indexKey = (int)filter.FilterType == DisplayFilter ? protocol.FindAssociatedDisplayKeyColumn(tableInfo) : protocol.FindAssociatedPrimaryKeyColumn(tableInfo); var column = element.GetTable(tableInfo.ID).GetColumn<string>(indexKey.ID); Have you tried: var column = (int)filter.FilterType == DisplayFilter ? element.GetTable(tableInfo.ID).GetDisplayKeys() : …
5th May 2025
Hi Alberto, We’re currently in the process of validating usage of DataMiner with Windows Server 2025. To ensure compatibility we’re performing a thorough examination which we’re hoping to wrap up …
5th May 2025
Hi Ana, The Line & Area chart only supports parameter data and queries. DOM instances can not be added as a data/filter source since the component has no idea what …