I am using the following in a push notification deep link. Without &“&at=”&(NOW()+1) it works fine. With it, the link does nothing. Is the syntax correct on this force sync?
LINKTOVIEW(“Jobs_Detail”, [Job ID]=[_THISROW].[Job ID])&“&at=”&(NOW()+1)
I am using the following in a push notification deep link. Without &“&at=”&(NOW()+1) it works fine. With it, the link does nothing. Is the syntax correct on this force sync?
LINKTOVIEW(“Jobs_Detail”, [Job ID]=[_THISROW].[Job ID])&“&at=”&(NOW()+1)
I think you should change to
Linktorow instead?
You’re using LINKTOVIEW() entirely wrong.
Updated to: LINKTOROW([Job ID], “Jobs_Detail”)
This is working as expected. Thank you. Still can’t verify the force refresh part is working though.
&“&at=”&(NOW()+1)
As soon as you click your action button, the App will do a Sync and then you will end up on your Jobs_Detail view.
If it just goes straight to the Jobs_Detail view then the forced sync is indeed not working.
Hi,
Used this. It triggers the app syncing but does not show the detail view with the row.
LINKTOROW(“Bombs_Detail”,[_ComputedKey]=[_THISROW].[_ComputedKey])&“&at=”&ENCODEURL(NOW()+1)
You, too, are using LINKTOROW() wrong.