Resources – How to find the resource based on Equipment DVE

Hi Mieke, If you want the exact function resource (pseudo code): var functionID = Guid.NewGuid(); var dveElement = new LiteElementInfoEvent(); //server filter FilterElement<Resource> dveFunctionFilter =     FunctionResourceExposers.FunctionGUID.Equal(functionID).AND(     FunctionResourceExposers.MainDVEDmaID.Equal(dveElement.DveParentDmaId).AND(     FunctionResourceExposers.MainDVEElementID.Equal(dveElement.DveParentElementId).AND(     ResourceExposers.DmaID.Equal(dveElement.DataMinerID).AND(     ResourceExposers.ElementID.Equal(dveElement.ElementID))))); …

Dashboard Sharing broken

Hi Thomas we have a known issue in the caching mechanism of the web API’s. Sometimes the cloud connection state is not correctly refreshed which leads the web apps to …

Display last row received of a element in visio

Assuming you have an indication on the last change in one of your columns, here’s what you can do. Taking Column to retrieve: 101 Column that contains last change date: …

Display last row received of a element in visio

Hi Aymeric, You could use the shape data ParameterControl together with ParameterControlOptions to define what specific column/row could be displayed. When using ParameterControlOptions you will notice that we could use …

DataMiner Cloud Connection Failed

Hi Thomas, As discussed the problem was that the system could only connect to the internet through a proxy. After applying the proxy settings on the LocalSystem account (see answer …

Cloud connection via a proxy

A different workaround is to run the DataMiner CloudGateway services as a different user (not LocalSystem), I found the proxy settings are then applied as well. You can do this …

Can resources be placed in a different view?

Hi Sebastian, Just to share what we did in a specific integration, we have an Interactive Automation Script that takes care of the resource creation with all the properties required. …

Enabling “Slow Poll Settings” in a Driver

Hi, This can be enabled by default by specifying both the SlowPoll DefaultValue and the SlowPollBase DefaultValue in the protocol.xml. That will enable the slow poll settings by default. Do note that …