Hi,
Push notifications are only delivered to devices that have push enabled. Could you please check the Push Enabled flag on all ten devices from the Installed App Devices screen?
By push enabled do you mean that have active notifications? If so they have, even the other users have
The push notification setting is automatically configured by the backend when the device is activated or initialized. If the Installed Apps Device screen shows this setting as "NO," the device will not receive any push notifications.
There could be various reasons for this, such as the device's OS not enabling push notifications or incorrect notification hub settings in the back office app parameters (though we can rule this out since two devices are receiving notifications).
Please check the push notification settings for the MWo app at the OS level on the device. If everything looks correct on the device side, the next step is to check the device logs for any errors.
For a User i Have, it’s saying that the push notification is enabled, but she isn’t receiving anything. Is there some other type of error?
For a User i Have, it’s saying that the push notification is enabled, but she isn’t receiving anything. Is there some other type of error?
Do you also not get any push messages when using the standard Send Notification command?
Currently I’m doing this query when the event gets triggered:
DECLARE
message VARCHAR2(50);
user VARCHAR2(250);
BEGIN
SELECT resource_id into user
from resource_tab
where RESOURCE_SEQ = '&OLD:RESOURCE_SEQ';
message := 'Test' || ' resource' || ' value of query: ' || user;
Mobile_Push_SYS.Send_Notification(message, 'ServiceEngApp', user);
END;
Is the Mobile_Push_SYS.Send_Notification the standard Send Notification?
Hi,
Installed App Devices screen shows as push enabled but user does not receive it when sending via the Custom Event?
Can you do a test by ‘Send Notification’ from the above screen and check logs in the mobile client to see any errors?
Hello, How do I check the logs in the mobile client? It sends the notification to the mobile
Hello, How do I check the logs in the mobile client? It sends the notification to the mobile
You can view or send yourselves the logs using Settings in the left-hand navigation panel..
I have also updated your other post with a working code example: IFS Cloud Send Push Notification to MWO | IFS Community
@FLopes and everyone interested in this: Please find a sample in the attached document.
@FLopes and everyone interested in this: Please find a sample in the attached document.
Thank you very much, I will try to implement this solution and then I will let you know if i got it to Work Thank you @Alexander Heinze .