Hi,
I've been testing the script below on copying records to another form:
void copyRecord(string Name, int Phone, string Email)
{
insert into Clients
[
Email = input.Email
Name = input.Name
Phone = input.Phone
Added_User = zoho.loginuser
]
}
I noticed that this script allows you to copy the same record more than once into another form. I want to only copy a record only once. How can I modify this script (or another script) so that once a record is copied into another form by executing this script, a user cannot go and copy the same record?
Regards,
Siya