Linking Multiple Application
Hi Support,
I have two Applications, App1 and App2. In App1 i have form called Form1 and in App2 i have form called Form2.
In Form1, i have Name1, Email1 and in Form2, i have Name2 lookup field to Name1.
I have succefuly done scripting for linking two apps, for example, in App2, if i select the Name from list, i can get Email2 automatically. But what I am trying to do is, when user loads the Form2, based on User login email id it need fetch the name from App1 and input in Name2.
I have done this in scenario if both forms are on same App(see code below)
usrRow = Add_User [Email == zoho.loginuserid];
if (usrRow.ID != null)
{
input.Created_By = usrRow.ID;
}
But I am not able to do it in this application because it is located in different Apps. Waiting for your suggestion.