On-call mobile push notification is not working on the em_alert table Issue Problem Mobile push notifications are not being received when running On-call escalation on the em_alert table. On-call Acknowledgement push notifications are expected to trigger during escalation and assignment workflows, but this is not occurring for em_alert records. The push notification works as expected when escalation is run on the incident table, indicating the issue is specific to the em_alert table.Steps to reproduce: 1. Do em_alert.LIST and filter out the closed alert.2. Open any alert and change the severity to major.3. The On-call escalation will run but it won't send out the push notification to the user. OR 1. Open incident_form.do and fill the customer and CI fields, urgency = high, impact=high2. Submit the form3. The On-call escalation will run and it sent out the push notification to the user.ReleaseAnyCauseRoot Cause The issue was related to how the table name was being retrieved in the On-Call: Assign by Acknowledgement per Rota workflow. The workflow was not correctly referencing the table name for the em_alert table, causing the push notification to fail.ResolutionSteps to Resolve 1. Update the On-Call: Assign by Acknowledgement per Rota workflow to use the current.getTableName() method for both line 3 and line 6.2. Ensure both lines reference the correct table name using current.getTableName().3. Verify the push notification is now working as expected for the em_alert table.