Reply
Regular Contributor
Will Moxley
Posts: 60
Accepted Solution

Welcome to the PRM Discussion Group

During the past months I've seen an increasing number of posts regarding PRM on the various discussion groups.  I realized that there is no one place for customers and partners to discuss how to implement PRM. 
 
We've set up this discussion board so that there is a central location for users, administrators, and partners to discuss PRM implementation best practices.
 
If you have questions about Salesforce PRM or how to implement something on the partner portal, please post your questions here--somone in the Saleforce community will likely be able to assist you.
 
-William Moxley
Director, PRM Product Management
Visitor
saasUSA
Posts: 1

Re: Welcome to the PRM Discussion Group

Will,
 
Thanks for putting this together and I look forward to collaborating with you and others on all things PRM.
 
All the best,
Jay Noble
saaspoint
Regular Visitor
suppafly
Posts: 1

Re: Welcome to the PRM Discussion Group

Yes, William, thanks for putting this together. Looking forward to some PRM tips and tricks being discussed.

Best,

Bryan Coddington
saaspoint
Regular Contributor
Nik_P
Posts: 24

Re: Welcome to the PRM Discussion Group

Thanks William!  Look forward to using this group in the future, and working away at more PRM implementations in the near future!
 
Nik
skm
Contributor
skm
Posts: 4

Re: Welcome to the PRM Discussion Group

Is there any way I can get only partner users from user object

my query gives error when I write in Apex class but works fine in s-explorer

 

Select id from user where ispartner=false

 

gives error Ispartner field doesnot exists..

Regular Contributor
Will Moxley
Posts: 60

Re: Welcome to the PRM Discussion Group

So a select on UserType. Select for UserType='PowerPartner'.See example below:

 

Select Username from User where UserType='PowerPartner' and IsActive=True