Quantcast
Channel: X-Squared On Demand »» Configuration
Viewing all articles
Browse latest Browse all 20

Hacking a Case Comment Trigger

$
0
0

There has been some discussion about asking the salesforce.com team to include the CaseComment object in the “triggerable” list. After conferring with JP Seabury (ForceMonkey), we designed a Rube Goldberg-esque solution to the problem.

Business Use-Case
Whenever a user adds a comment to a case, add him/her to the Case Team.

The Plan

Here it is, in general terms:

  1. Workflow on Case Comment sends email to Apex email service
  2. Email service parses CaseId and UserId and adds the User to the Case Team

Case Comment Workflow
Use existing workflow functionality to send an email whenever a comment is added to a case.

  • Template Includes:
  • Case Id
  • User Id

The recipient is an Apex email service that we can code using the Email to Idea example by Rasmus Mencke.
For more information on setting up the InboundEmail object, check the Apex documentation.
Apex Class
The class needs to add the User to the Case Team, which requires a few fields:

  • MemberId – UserId (received from the email)
  • ParentId – CaseId (received from the email)
  • TeamRoleId – Could be hardcoded or found in a SOQL SELECT statement. A better practice would be to pass the name or Id in the email (coding it in the template), allowing the use of one Apex Class with multiple Case workflow email templates.
  • NOT TeamTemplateMemberId – This is not a createable field. It is only available when Case Team members are added automatically in Salesforce CRM.

That’s it! The unique part of this is that we’re sending an email FROM Salesforce TO Salesforce.
Thinking outside the box – isn’t it more fun?


Viewing all articles
Browse latest Browse all 20

Trending Articles