Hi everyone,
I have a use case where a user can trigger an Interactive Automation Script (IAS) directly from the Alarm Console.
However, I’d like the script to run without displaying the UI at the end of the execution — similar to how it behaves when an IAS is invoked from within an LCA (Low-Code App).
I’m referring to this UI window:

Is there a way to suppress or prevent this UI from appearing after the script runs?
This feels like too much information for the end user
Thanks in advance!
Hi Miguel,
Thanks, it worked!
Hi,
As Miguel Obregon mentioned, the key here is to add the CloseWhenFinished option in the Hyperlinks.xml file.
You can find an example of this in Sergio’s response.
Thanks guys, ticket solved 🙂
Hi Gerwin,
I created a Hyperlink (see https://docs.dataminer.services/dataminer/Reference/Skyline_DataMiner_Folder/More_information_on_certain_files_and_folders/Hyperlinks_xml.html?q=HyperLink+alarm&tabs=secondgenerationsyntax#about-the-roottime-and-time-keywords).
This allows me to add a shortcut in the Alarm Console, such as "Create Ticket".
When a user right-clicks on an alarm and selects that shortcut, it triggers the script I want to execute.
did you add any options to the execution script?
like : NoConfirmation & NoSetCheck etc
Could you share the hyperlink.xml part?
the command can be something along these lines.
<IAS Create Script name>||DmaID=[DMAID];ElementID=[EID];RootAlarmId=[ROOTKEY];AlarmId=[ALARMID]||Tooltip|NoConfirmation,CloseWhenFinished
in the Hyperlinks.xml if you decide to edit manually:
<?xml version="1.0" encoding="utf-8"?>
<HyperLinks xmlns="http://www.skyline.be/config/hyperlinks">
<HyperLink alarmAction="" alarmColumn="" filterElement="" combineParameters="" separator="" descriptionParsing="" id="11" menu="root" name="Create Ticket" type="script" valueParsing="" version="2"><IAS Create Ticket Script name>||DmaID=[DMAID];ElementID=[EID];RootAlarmId=[ROOTKEY];AlarmId=[ALARMID]||Tooltip|NoConfirmation,CloseWhenFinished</HyperLink>
</HyperLinks>
Thanks Sergio.
Hi Jose,
Have you tried the option CloseWhenFinished in the hyperlink?