Discussions
- General Development
- Schema Development
- Apex Code Development
- Visualforce Development
- Formulas & Validation Rules
- Security
- Mobile
- Force.com Sites & Site.com
- Chatter Development
- Java Development
- .NET Development
- Perl, PHP, Python & Ruby
- Desktop Integration
- APIs and Integrations
- Visual Workflow
- Apple, Mac and OS X
- VB and Office Development
- AppExchange Directory & Packaging
- Salesforce Labs & Open Source Projects
- Other Salesforce Applications
- Jobs Board
- Force.com Discussion Boards
- :
- Developer Boards for Force.com and Database.com
- :
- Chatter Development
- :
- Re: Is it possible to evaluate a Trigger After Ins...
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic to the Top
- Bookmark
- Subscribe
- Printer Friendly Page
Is it possible to evaluate a Trigger After Insert or Update "Chatter Free" user profile record?
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
10-17-2012 08:46 AM
Hi,
I've been looking for any limitation on the following issues... I'll appreciate any assistance.
1. Is it possible to trigger an event after insert or update a "Chatter Free" user records?
2. Is it possible to attach the Chatter Free user profile photo to a specific contact record? As an Attachment!
Many thanks
David
Solved! Go to Solution.
Re: Is it possible to evaluate a Trigger After Insert or Update "Chatter Free" user profil
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
10-22-2012 01:00 AM
Hi David,
Yes, you can develop trigger on User Object that will fire on event "after insert" or "after update". In trigger check for field Usertype. This field have value related the category of user license.
In you case :
CsnOnly: user whose access to the application is limited to Chatter. This user type includes Chatter Free and Chatter moderator users. Label is Chatter Free.
For more info on userType : http://www.salesforce.com/us/developer/docs/api/Co
Using same trigger you can also update your specific contact object field to the user profile picture url.FieldName for user profile Pic is " FullPhotoUrl " in user object.
Hope the info will help you.
Re: Is it possible to evaluate a Trigger After Insert or Update "Chatter Free" user profil
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
10-22-2012 06:36 AM
many thanks !! :)

