I want to stop a customer from registering two times with same email address. I do not know how I can check the client's email address from the eCommerce registration page.
For example, when a client enters an email in the eCommerce registration page, check if the email was previously registered in the website or not.
If yes, don't let the customer register it again and show a message to the client.
Code that check the email address:
function clientValidateField(type, name, linenum){
var filter = new nlobjSearchFilter('email', null, 'is', givenEmail);
var result = nlapiSearchRecord('customer', null, filter, null);
return (results == null);
}
But I can't call it from client side.
In SCA there is a module called Duplicate Customer management system which is use for validating email address if it's already registered. You can ask your team how to request it. Or maybe you can also send an email to Commerce SuiteSolution team [email protected] They are the one who provisioned that bundle.