
Announcements
Hi,
I have two deep link on my app, the first one with param"ID" works perfectly fine, but the other one with param"AknID" stuck at getiing your data when i open the link.
this is my url with deeplink
This is my onstart property code:
If(
!IsBlank(Param("ID")),
Set(
varItem,
LookUp(
PettyCashFund,
ID = Value(Param("ID"))
)
);
Set(
varFormMode,
FormMode.Edit
)
);
If(
!IsBlank(Param("AknID")),
Set(
varItem,
LookUp(
PettyCashFund,
ID = Value(Param("AkknID"))
)
);
Set(
varFormMode,
FormMode.Edit
)
)
and this is my startscreen property code:
If(
!IsBlank(Param("ID")) && (LookUp(
PettyCashFund,
ID = Value(Param("ID"))
).'Country/Site Finance Manager'.Email = Office365Users.MyProfile().Mail || LookUp(
PettyCashFund,
ID = Value(Param("ID"))
).'Regional Controller'.Email = Office365Users.MyProfile().Mail),
CashFundCreationForm,
If(
!IsBlank(Param("AknID")) && (LookUp(
'Acknowledgement List',
ID = Value(Param("AknID"))
).'Created By'.Email = Office365Users.MyProfile().Mail),
AcknowledgmentForm,
HomeScreen
)
)
This is my form defaultmode and item property:
For the email I received with deep link,
the id is correct
Appreciate if anyone can help mew to solve this problem, thanks.
Hi, my wording is wrong, it should be AknID instead of AkknID, the problem is solved now, thanks