LINKTOVIEW plus force sync in Notification body

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?

2 Likes

You’re using LINKTOVIEW() entirely wrong.

LINKTOROW() - AppSheet Help

2 Likes

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.

2 Likes

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.