Automation script collecting historical alarms
22nd November 2024
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 …
Answer
22nd November 2024
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 …
22nd November 2024
Hi Ive, If the update doesn’t specify whether it’s a new or updated entry, I believe you’ll need to manage that distinction within your ad-hoc data source. For instance, you …
22nd November 2024
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.
22nd November 2024
Hi Ramesh, You can just add a the name of the alarm template as string in the AlarmTemplate property of the AddElementMessage. addElementMessage.AlarmTemplate = “nameofthealarmtemplate”; Regards, Moderator note: This is …
21st November 2024
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 …
21st November 2024
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 …
21st November 2024
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 …
21st November 2024
Hello, We’ve reviewed this and identified it as a missing functionality in the current DevOps tools for connectors. Our legacy internal tooling included this feature, which is why the documentation …
21st November 2024
Hello, We’ve reviewed this and identified it as a missing functionality in the current DevOps tools for connectors. Our legacy internal tooling included this feature, which is why the documentation …
21st November 2024
Hi Ive, The Start from option is designed to enhance user experience by allowing users to reuse and extend existing queries without rebuilding them from scratch. In the background, this feature …
21st November 2024
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.
21st November 2024
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,
21st November 2024
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 …
21st November 2024
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 …