Auto fetch records App B from App A
Hi I am to fetch records between apps from App A to App B and I tried some deluge code and functions but I got two Issues.
Code from App A
----------------
string getApprover(int Admission_ID)
{
fillName = Admissions[ID == Admission_ID].Name.firsN;
fillEmail = Admissions[ID == Admission_ID].Email;
return fillName+","+ fillEmail;
}
----------------
I got no errors for this one
Here the code from App B
----------------
datavalue = admissions_sample_testing.getApprover(ID);
input.Name = datavalue.getPrefix(",");
input.Email = datavalue.getSuffix(",");
----------------
for this one I have two issues
1 the code returns "STRING value cannot be assigned to 'Name' "
2 if I comment the input.Name... line the code works but when I fetched a record from App B I got a NULL for the email field