Automation script collecting historical alarms

Hi Stefan, I’m a bit baffled. I couldn’t immediately see anything wrong with your code, so I tried it myself using a simple mock setup, and it seems to work …

Blocked routes display in Matrix UI

Hi Tamara, there is currently no support for blocked paths on matrices in the DataMiner core software. If needed, you can create feature request or software task to add these.

Best way to access a row in a element?

Hi Joao, You can use the GetParameterByPrimaryKey(). The issue is that “7021” is not the primary key (PK) value. The value we need is the one found in the Instance …

Adding an element on DMA through low code

Hi Stefan, As far as I know there is no out of the box functionality to provision elements from a LCA. Possible options: Implement an automation script that uses web …

Button to set all active alarms as read?

In theory, this would be possible using an Execute shape, executing a script and setting the read status in that particular user’s user settings. However that would be very difficult …

Interactive automation script, how to display a clickable hyperlink?

Hi Dieter, You could try using UIBlockType.Executable or UIBlockType.DownloadButton. See the following similar questions: https://community.dataminer.services/question/how-to-open-a-hyperlink-from-an-ias-via-low-code-app/ https://community.dataminer.services/question/hyperlink-in-interactive-automation-script/ DebugTag serves a different purpose and is not applicable in this case.

child in in 10.1

Hi, SlowTime is not a valid child in Timer. The only children of Timer that are read out and used by DataMiner are: Time Content Interval Condition Regards,

DOM Instances Read filters

big exception for: var timeFilterStart = DomInstanceExposers.FieldValues.DomInstanceField(SlcWorkflow.Sections.JobInfo.JobStart).GreaterThan(DateTime.UtcNow); var timeFilterEnd = DomInstanceExposers.FieldValues.DomInstanceField(SlcWorkflow.Sections.JobInfo.JobStart).LessThan(DateTime.UtcNow.AddHours(4)); var andFilterJobs = new ANDFilterElement<DomInstance>(definitionFilterJobs, orFilterJobs, timeFilterStart, timeFilterEnd); Script Failure (DaznBookingResourcesApi): Skyline.DataMiner.Net.ManagerStore.CrudFailedException: Exception of type ‘Skyline.DataMiner.Net.ManagerStore.CrudFailedException’ was thrown. at …

Placeholder feature not working in emails

Hi Arun, As mentioned by Miguel, that placeholder is indeed not supported in the context of a ‘Send email’ action in an Automation script. There are however two that are …