Help me, please!
The Help topic is not correct or I dont understand how to make this operation.
Help topic (see question #3): http://zohocreator.wiki.zoho.com/Fetch-and-Update-Records.html#fetchall
I did fully as show at help and paste this code in "on user input" script, but error arose at Row #3 and Col#9: "expecting one of "!", ">" ... ... ... etc."
Below is a code from Help topic. Plefse, tell me, how I must to do correctly?
Customer_No
(
displayname = "Customer Number"
type = picklist
values = Customers.Customer_Number
sortorder = ascending
tooltip = "Please Enter Customer number then click Customer Name"
on user input
{
temp = Customers [Customer_Number == input.Customer_No];
input.Customer_Name = temp.Name;
input.Plot_Number = temp.Customer_Plot_no;
input.Address = temp.Cust_Address;
input.E_mail_I_D = temp.Customer_Email;
input.Phone_number = temp.Customer_Phone;
input.Post_Code = temp.cust_postcode;
}
)