How do I get the list of users who have not logged into a customer portal site at all?

link|improve this question

58% accept rate
feedback

1 Answer

up vote 6 down vote accepted

The User object has a field called LastLoginDate, you could report on this for users where IsPortalEnabled is true which indicates that they are a customer portal user if you're doing the reporting through code.

Of course, Salesforce's reporting engine can also be used to generate a report, you'll want something similar to this:

enter image description here

Unless you need the list in code for some reason (for instance, for integration with another system) then you should use the reporting engine and then you can schedule it for email delivery etc.

link|improve this answer
But it will give me the users who logged in the community last time.. but i want those users who haven't login.. – Kp Gupta Jan 6 at 9:20
1  
I think the 'Last Login equals ""' bit will ensure it's for users who have never had a Last Login assigned e.g. never logged in – Ray Jan 6 at 12:05
As Ray says, it's checking for a null value in the Last Login field, so as long as you don't specify values in the date range (that's there by default) then it'll do what you need. – LaceySnr - Matt Lacey Jan 6 at 13:01
feedback

Your Answer

 
or
required, but never shown

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