11/26/2024 12:24:17 AM
|
|
slxdeveloper.com Community Forums |
|
|
|
The Forums on slxdeveloper.com are now retired. The forum archive will remain available for the time being. Thank you for your participation on slxdeveloper.com!
Forum to discuss general administration topics for SalesLogix (including LAN & remote topics). View the code of conduct for posting guidelines.
|
|
|
|
Problem with adding layout to Query builder
Posted: 22 Feb 11 10:05 PM
|
fiogf49gjkf0d
This is bizarre!
I had a group created using a query builder to pick all the invalid emails. It had 618 contacts in this group. I changed the layout to add create date and modify date for these contacts and what I now see is a list of 6172 contacts. I haven’t modified the conditions but only the layout.
I have deleted the create and modify dates and it still remains the same. Can you please let me know how to get back my original list that shows 618 contacts of invalid emails.
Thanks?
|
|
|
| |
|
Re: Problem with adding layout to Query builder
Posted: 23 Feb 11 4:38 PM
|
fiogf49gjkf0d Thanks Phil,
Here it is
SELECT A1.CONTACTID, A1.EMAIL, A1.NAMELF, A1.ACCOUNT, A2.CITY A2_CITY, A2.STATE A2_STATE, A1.TITLE, A1.WORKPHONE, A1.MOBILE, A1.ACCOUNTMANAGERID, A1.CREATEUSER, A1.NAME, A1.NAMELF FROM CONTACT A1 INNER JOIN ADDRESS A2 ON (A1.ADDRESSID=A2.ADDRESSID) WHERE ((A1.EMAIL LIKE '%#%') OR (A1.EMAIL LIKE '%$%') OR (A1.EMAIL LIKE '%^%') OR (A1.EMAIL LIKE '%&%') OR (A1.EMAIL LIKE '%(%') OR (A1.EMAIL LIKE '%)%') OR (A1.EMAIL LIKE '%+%') OR (A1.EMAIL LIKE '%=%') OR (A1.EMAIL LIKE '%{%') OR (A1.EMAIL LIKE '%[%') OR (A1.EMAIL LIKE '%}%') OR (A1.EMAIL LIKE '%]%') OR (A1.EMAIL LIKE '%\%') OR (A1.EMAIL LIKE '%|%') OR (A1.EMAIL LIKE '%;%') OR (A1.EMAIL LIKE '%:%') OR (A1.EMAIL LIKE '%,%') OR (A1.EMAIL LIKE '%<%') OR (A1.EMAIL LIKE '%>%') OR (A1.EMAIL LIKE '%?%') OR (A1.EMAIL LIKE '%/%') OR (A1.EMAIL LIKE '%%') OR NOT (A1.EMAIL LIKE '%@%')) AND (A1.EMAIL IS NOT NULL AND A1.EMAIL <> '') ORDER BY A1.NAMELF ASC |
|
|
|
Re: Problem with adding layout to Query builder
Posted: 23 Feb 11 4:39 PM
|
fiogf49gjkf0d Thanks Phil.
Here it is.
SELECT A1.CONTACTID, A1.EMAIL, A1.NAMELF, A1.ACCOUNT, A2.CITY A2_CITY, A2.STATE A2_STATE, A1.TITLE, A1.WORKPHONE, A1.MOBILE, A1.ACCOUNTMANAGERID, A1.CREATEUSER, A1.NAME, A1.NAMELF FROM CONTACT A1 INNER JOIN ADDRESS A2 ON (A1.ADDRESSID=A2.ADDRESSID) WHERE ((A1.EMAIL LIKE '%#%') OR (A1.EMAIL LIKE '%$%') OR (A1.EMAIL LIKE '%^%') OR (A1.EMAIL LIKE '%&%') OR (A1.EMAIL LIKE '%(%') OR (A1.EMAIL LIKE '%)%') OR (A1.EMAIL LIKE '%+%') OR (A1.EMAIL LIKE '%=%') OR (A1.EMAIL LIKE '%{%') OR (A1.EMAIL LIKE '%[%') OR (A1.EMAIL LIKE '%}%') OR (A1.EMAIL LIKE '%]%') OR (A1.EMAIL LIKE '%\%') OR (A1.EMAIL LIKE '%|%') OR (A1.EMAIL LIKE '%;%') OR (A1.EMAIL LIKE '%:%') OR (A1.EMAIL LIKE '%,%') OR (A1.EMAIL LIKE '%<%') OR (A1.EMAIL LIKE '%>%') OR (A1.EMAIL LIKE '%?%') OR (A1.EMAIL LIKE '%/%') OR (A1.EMAIL LIKE '%%') OR NOT (A1.EMAIL LIKE '%@%')) AND (A1.EMAIL IS NOT NULL AND A1.EMAIL <> '') ORDER BY A1.NAMELF ASC
Jai
|
|
|
| |
|
Re: Problem with adding layout to Query builder
Posted: 23 Feb 11 5:40 PM
|
fiogf49gjkf0d Doesn't this (A1.EMAIL LIKE '%%') mean email field with no email addresses entered. We also want to include this condition where there are no email addresses.
|
|
|
| |
|
You can
subscribe to receive a daily forum digest in your
user profile. View the site code
of conduct for posting guidelines.
Forum RSS Feed - Subscribe to the forum RSS feed to keep on top of the latest forum activity!
|
|
|
|
|
|
|
|