Equipment not visible in Rack View
30th June 2022
Hi Thomaz Can you try the Refresh & Rebuild option? It can be found under the IDP Application Visual Overview on the Admin > Facilities > Rack Assignment
Answer
30th June 2022
Hi Thomaz Can you try the Refresh & Rebuild option? It can be found under the IDP Application Visual Overview on the Admin > Facilities > Rack Assignment
30th June 2022
After receiving Karl’s support (a lot 😁 ), Following the steps to achieve a basic view with a booking timeline filtering reservations based on a custom property “Operators”. A shape …
30th June 2022
Hi, you can do so by letting the script send a ‘BroadCastPopupRequestMessage’, in which you can specify the users and/or user groups that need to be notified. Code example below, …
30th June 2022
Hi Alberto, If I’m not mistaken, .net remoting will allocate a random port in the range 49152 to 65535 for eventing. Do note that you can also configure clients machines …
30th June 2022
Hi Bruno, You can achieve this by checking if the booking is contributing: e.g.: var reservation = SrmManagers.ResourceManager.GetReservationInstance(Guid.NewGuid()) as ServiceReservationInstance; if (reservation.IsContributingReservation()) { return; } Kind Regards
30th June 2022
Hi Jeroen, I think you are talking about button panels, these are not the same as buttons in the low-code apps. The applications have a different button component that can …
30th June 2022
Hi Jens, you can associate icons with table column values. Refer ColumnOption element | DataMiner Docs. Don’t forget to add the icon reference on your table parameter (discreet option). Refer …
30th June 2022
Hi Jens, I know you can configure custom icons for elements, views, services,… but I don’t think these will be applied to element tables. But just in case this is …
30th June 2022
Hi Edson, There currently is no official procedure to move an app from one DMS to another. It can be done by copying the entire folder from C:\Skyline Dataminer\Applications to …
30th June 2022
Hi Alberto, am I correct in thinking that regardless of the server type (VM/Physical) or OS version, all the application servers of a DataMiner cluster are best placed on the …
30th June 2022
Other than executing a script upon opening your drawing and retrieving the view name that way (and then putting it into a variable), I don’t think this functionality exists. If …
29th June 2022
Hi Dominik, We normally don’t recommend to add existing DMA’s to a DMS, as during the merge you can have conflicts with the view IDs, protocol versions, element names, etc. …
29th June 2022
Hi Randy, The same result can easily be achieved by using a GQI query to visualize your table. This way, you can build your query to select the parameters and …
29th June 2022
Hi Jeroen, I found a regression test where this code is used to create a scheduled task. private void CreateScheduledTask(ElementID elementId) { var startTime = DateTime.UtcNow.AddHours(10); bool isUpdate = false; …
29th June 2022
Yes, there are 2 ways of doing so. Through the header bar Enable the application header bar and add a new header option (+ sign). Add an ‘On click’ event …