Equipment not visible in Rack View

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

SRM – Add a pop-up notification for a type of bookings

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

Application Framework – buttons

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 …

How can I show an icon in my element table

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 …

How can I show an icon in my element table

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 …

Copy, Export and Import Applications

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 …

Parameters of the View to which it belongs

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 …

Dashboard Pivot Table Conditions

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 …

automation – create schedule tasks

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; …