ldewsnap Posted January 11, 2019 Posted January 11, 2019 Hi, I was just wondering if there was any way to run a report on the number of times a user has pressed the emergency alert button? Thanks Lee
Esteban_Child_of_the_Sun Posted January 11, 2019 Posted January 11, 2019 run this PowerShell script as a domain user who has SSO into SIMS Import-Module *Sql* $sqlQuery = "SELECT * FROM [sIMS].[sims].[alt_message] where subject = 'Assistance Urgently Required'" Invoke-Sqlcmd -Query $sqlQuery -ServerInstance “SIMS-01\SIMS2016” -Database “SIMS" | Export-Csv D:\SIMS_Share\sims\Reports\EmergancyAlerts.csv 1
EduBadger Posted October 21, 2022 Posted October 21, 2022 Hi - How did you get on with this in the end ? We're looking at achieving the same.
Esteban_Child_of_the_Sun Posted October 21, 2022 Posted October 21, 2022 ESS have since added it in to the standard SIMS reporting engine so you can now write a report in the data area: Communication | Emergency alerts
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now