Hi All,
I have a App which was built in December 2020 which is running very smoothly.
I have created deep links in OnStart Property of the app. Below the code.
Set(
VarIdeaID,
Value(Param("IDEA"))
);
If(
Idea <> 0,
Set(
VarIntake,
LookUp(
'SP List',
ID = VarIdeaID
)
);
Navigate(DetailsWithApproval)
);
Set(
VarIdeaUID,
Value(Param("UPD"))
);
If(
VarIdeaUID <> 0,
Set(
VarUpdateIdea,
LookUp(
'SP List',
ID = VarIdeaUID
)
);
Navigate(I_Update)
);
Set(
VarIdeaSBID,
Value(Param("SB"))
);
If(
VarIdeaSBID <> 0,
Set(
VarSBIdea,
LookUp(
'SP List',
ID = VarIdeaSBID
)
);
Navigate(I_SendBack)
);
Set(
vUserMail,
Lower(User().Email)
)
The above code is written is working perfectly. But when i am making any changes now, the functionality is not working as expected. Actually i have created three parameters and i want a user to be navigated to the desired screen and should open the respective record in to the form.
The problem is as below.
1. When making any changes in to the app, it is not recognizing the Navigate function, hence it is landing the user to a different page than home page.
I am requesting help for the below.
1. Can someone please share steps on how to create Deep Links with StartScreen Property.
2. As per my understanding we cant use Set function with StartScreen so how to satisfy the need where needed a global variable when Application loads.
Warm Regards,