Validate Email filed in customer card.

ManiNav
Member Posts: 120
Hi Everyone,
I would like to create/validate input mask for "Email" field for customer card(Customer Card-form>Communication-Tab>Email).
ie. when user Copy and paste any mail to "Email field" ,and if that contain commas, carriage returns or tabs; Its should show error(remove commas, carriage returns or tabs).
I tried this code in customer card, Email(field): OnValidate() trigger:
[Var - Ch(Text)]
Ch[1] := 9; //for tab
Ch[2] := 13; //for carriage return
Ch[3] := 10; //for line feed
Ch[4] := ',';
IF(Customer."E-Mail" = Ch) THEN
ERROR(Text003);
But its not triggering.
Even , I tried the same code for same field for customer table, but its not triggering.
Please advice me , what I am doing wrong or Advice me the alternate way to do.
Thanks,
Mani.
I would like to create/validate input mask for "Email" field for customer card(Customer Card-form>Communication-Tab>Email).
ie. when user Copy and paste any mail to "Email field" ,and if that contain commas, carriage returns or tabs; Its should show error(remove commas, carriage returns or tabs).
I tried this code in customer card, Email(field): OnValidate() trigger:
[Var - Ch(Text)]
Ch[1] := 9; //for tab
Ch[2] := 13; //for carriage return
Ch[3] := 10; //for line feed
Ch[4] := ',';
IF(Customer."E-Mail" = Ch) THEN
ERROR(Text003);
But its not triggering.
Even , I tried the same code for same field for customer table, but its not triggering.
Please advice me , what I am doing wrong or Advice me the alternate way to do.
Thanks,
Mani.
0
Answers
-
Give this a shot.
Ch[1] := 9; //for tab Ch[2] := 13; //for carriage return Ch[3] := 10; //for line feed Ch[4] := 44; //for comma FOR i := 1 TO ARRAYLEN(Ch) DO IF(STRPOS(Customer."E-Mail",FORMAT(Ch[i])) > 0 THEN ERROR(Text003);
For clarifiaction on what I did there:
Your Ch variable should be of type Char, not Text and have the Dimensions property set to 4.
After changing the variable and assign the values, I loop over every element of the Ch-Array and check in the IF condition if the given char is existing in the E-Mail field (STRPOS > 0).
If so, throw the error.1
Categories
- All Categories
- 73 General
- 73 Announcements
- 66.6K Microsoft Dynamics NAV
- 18.7K NAV Three Tier
- 38.4K NAV/Navision Classic Client
- 3.6K Navision Attain
- 2.4K Navision Financials
- 116 Navision DOS
- 851 Navision e-Commerce
- 1K NAV Tips & Tricks
- 772 NAV Dutch speaking only
- 617 NAV Courses, Exams & Certification
- 2K Microsoft Dynamics-Other
- 1.5K Dynamics AX
- 320 Dynamics CRM
- 111 Dynamics GP
- 10 Dynamics SL
- 1.5K Other
- 990 SQL General
- 383 SQL Performance
- 34 SQL Tips & Tricks
- 35 Design Patterns (General & Best Practices)
- 1 Architectural Patterns
- 10 Design Patterns
- 5 Implementation Patterns
- 53 3rd Party Products, Services & Events
- 1.6K General
- 1.1K General Chat
- 1.6K Website
- 83 Testing
- 1.2K Download section
- 23 How Tos section
- 252 Feedback
- 12 NAV TechDays 2013 Sessions
- 13 NAV TechDays 2012 Sessions