Validation includes:
1. Check if mobile number is valid number by checking the digits (e.g., 10 digits for India mobile number)
2. Get the country code based on mobile number entered.
3. Number type, whether a number is mobile number, fixed-line or toll-free.
2 Antworten
Hi Rajan,
Based on your requirements, I think you'll be able to implement everything in Salesforce itself without using any free/paid tools.
e.g. You can use field properties to restrict the number of digits. Store country code-mobile number mapping in custom setting/custom metadata type and manipulate the number in flow/apex trigger. You can use picklist field for storing number type.
Please let me know if I'm missing anything.