How can I create a view to select entities which DO NOT HAVE some properties!

For example, I could easily select entities which have phone call activities, but how can I select entities which do not have any phone call activity?

Is there any solution for that?

link|improve this question
feedback

1 Answer

It looks it's impossible to create such view inside CRM, only you can select such entities using SSRS.

link|improve this answer
Its weird...it should be possible :-/ How can we achieve it using SSRS? – KiNG Feb 15 at 20:50
I'm forced to disagree - it shouldn't be possible. Views use queries not entirely unlike SQL statements. You could not achieve this query in a single statement because the join is impossible. You would need to do (at least) two queries; one subquery to acquire the records you DON'T want and then the outer query to retrieve records which aren't in the subquery. – Alec Feb 16 at 16:23
But, a right outer join with a filtering statement in where (to strip not null, and so, not needed results) should be possible in SQL. – KiNG Feb 18 at 13:04
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.