Search Community
- Force.com Discussion Boards
- :
- Salesforce User Discussions
- :
- Partner Relationship Management (PRM)
- :
- Welcome to the PRM Discussion Group
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic to the Top
- Bookmark
- Subscribe
- Printer Friendly Page
Welcome to the PRM Discussion Group
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
05-04-2007 12:20 PM
Solved! Go to Solution.
Re: Welcome to the PRM Discussion Group
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
05-04-2007 01:56 PM
Re: Welcome to the PRM Discussion Group
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
05-04-2007 02:23 PM
Best,
Bryan Coddington
saaspoint
Re: Welcome to the PRM Discussion Group
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
05-07-2007 07:55 AM
Re: Welcome to the PRM Discussion Group
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
08-27-2009 11:02 AM
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..
Re: Welcome to the PRM Discussion Group
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
08-27-2009 01:37 PM
So a select on UserType. Select for UserType='PowerPartner'.See example below:
Select Username from User where UserType='PowerPartner' and IsActive=True

