Automation script : Information events

Hi Wale, You can do this by updating the runtime flags. // To disable the information events: engine.SetFlag(RunTimeFlags.NoInformationEvents); // To enable the information events: engine.UnSetFlag(RunTimeFlags.NoInformationEvents);

Issue with Script Output

Great thanks, I’ve just added a script to a system running the supported version with simply the following; engine.AddScriptOutput(UIVariables.VisualOverview.CreateKey(“MyOutput”), “Working”); Should this now be working because it’s not populating anything?

Azure SAML using certificate

Hi Emanuele, DataMiner uses the Microsoft Graph API of EntraID (aka Azure Active Directory) to get info about users and groups. For that we follow this procedure: Get access without …

How to Select distinct in Low code app query

Hi Mieke, Getting distinct values through GQI can be achieved in two ways: The ‘Distinct’ custom operator which is available on the catalog (see Distinct operator). Use a trick explained …

Issue with Script Output

Hi Ross, Looking at the screenshot you provided of the LCA, I notice that there is no highlighting in the HTML input and that the Web component shows the feed …

DMA Status in Cluster “Unknown”

Hello Christian, it could be the case to add a connection string (Editing the connection string between two DataMiner Agents | DataMiner Docs) .. but my advise is to send …

low-code app with multiple feeds

Hi Jeroen, It is possible to specify a value for the dropdown component using the URL (see docs). In the attached example, I have a dropdown with all my elements …

How to safely use credentials in Ad hoc data source?

Hi Mieke, Feel free to take a look at following answers: https://community.dataminer.services/question/adhocdatasource-ui-or-option-to-pass-some-input-parameters-that-are-hardcoded-and-sensible/ https://community.dataminer.services/question/best-practice-to-store-api-credentials-used-in-automation-script/ Best regards, Ward

Get after set with delay

Hi Dario, you can consider using an after trigger and use conditions to decide if another Get is required

Better way to delete rows

Hi Sergio, There isn’t any faster way (at least that I can think of) to remove keys other than repopulating the table or clearing all keys like Edib or Michiel …