I'm trying to use deep link for a specific record. When a user received an email with a link, I would like the link to take the user to the specific record.
This is what is on my App's OnStart:
If(Not(IsBlank(Param("ID"))),
Set(CurrentItem, LookUp('Component Transfer List'.ID, ID = Value(Param("ID")))); Navigate(ApprovalURL)
The screen labeled, ApprovalURL, has two edit forms connected to two connectors (SharePoint List).
First connector is called Component Transfer Request and the second connector is called Repeated Table Data.
The top half of the form is connected to the Components Transfer Request list and in the Items property of that form I have:
If(Value(Param("ID")) > 0, First(Filter('Component Transfer List', ID=Value(Param("ID")))))
The second half of the form is connected to the Repeated Table Data list and in the items property of that form I have:
First(Filter('Repeated Table Data',ID=varRepeatTable.ID))
When I click on the deep link that I created it does not take me to a specific record, it take me to the home screen.
Any help is appreciated.