Answered by:
Leads without Completed Phone Calls

Question
-
Hi all,
From what I can see the CRM 4.0 advanced find will not allow me to locate ALL Leads without a completed phone call. How do I get around this (SQL)??Tuesday, January 26, 2010 12:00 PM
Answers
-
SQL is an option. Another is to use a Marketing List. Add in all leads and remove those WITH a completed phone call.
Leon Tribe
Want to hear me talk about all things CRM? Check out my blog
http://leontribe.blogspot.com/
or hear me tweet @leontribe
Want to hear me talk about all things CRM? Check out my blog http://leontribe.blogspot.com/ or hear me tweet @leontribe- Proposed as answer by Leon TribeMVP Tuesday, January 26, 2010 12:18 PM
- Marked as answer by Donna EdwardsMVP Tuesday, January 26, 2010 1:17 PM
Tuesday, January 26, 2010 12:18 PM -
Try something like:
Select * From FilteredAccount Where AccountId Not In( Select PartyId AccountId From FilteredActivityParty ap Inner Join FilteredPhoneCall pc on ap.ActivityId = pc.ActivityId Where ap.PartyObjectTypeCode = 1 And pc.statecode = 1)
Truth is opened the prepared mind
My blog (english)
Мой блог (русскоязычный)- Marked as answer by Donna EdwardsMVP Tuesday, January 26, 2010 1:17 PM
Tuesday, January 26, 2010 12:47 PMModerator
All replies
-
SQL is an option. Another is to use a Marketing List. Add in all leads and remove those WITH a completed phone call.
Leon Tribe
Want to hear me talk about all things CRM? Check out my blog
http://leontribe.blogspot.com/
or hear me tweet @leontribe
Want to hear me talk about all things CRM? Check out my blog http://leontribe.blogspot.com/ or hear me tweet @leontribe- Proposed as answer by Leon TribeMVP Tuesday, January 26, 2010 12:18 PM
- Marked as answer by Donna EdwardsMVP Tuesday, January 26, 2010 1:17 PM
Tuesday, January 26, 2010 12:18 PM -
Ok thanks, but remove leads with a completed call is going to have to be done manaully..isn't it?Tuesday, January 26, 2010 12:20 PM
-
Try something like:
Select * From FilteredAccount Where AccountId Not In( Select PartyId AccountId From FilteredActivityParty ap Inner Join FilteredPhoneCall pc on ap.ActivityId = pc.ActivityId Where ap.PartyObjectTypeCode = 1 And pc.statecode = 1)
Truth is opened the prepared mind
My blog (english)
Мой блог (русскоязычный)- Marked as answer by Donna EdwardsMVP Tuesday, January 26, 2010 1:17 PM
Tuesday, January 26, 2010 12:47 PMModerator -
From within the Marketing List Members section on the Marketing List form, you'll see a button called Manage Members. This has four options, including "Use Advanced Find to Remove Members" -- this is the feature that Leon was referring to.
Tuesday, January 26, 2010 12:55 PMModerator -
Creating the marketing list and removing leads with phones got me the info I wanted - thanks to all that helped! :-)Thursday, January 28, 2010 2:58 PM