...
- Can't post to chatter on the related record IF Feed Tracking is not enabled on this record.
- Can't post to the feed of a related record. See https://success.salesforce.com/ideaView?id=08730000000DftMAAS
- Can't @ mention a user (eg Owner). See https://success.salesforce.com/ideaView?id=08730000000DfbNAAS
Info | ||
---|---|---|
| ||
Want to send an email from Campaign Member and then update Chatter to say that it has been sent? Well you are out of luck. Campaign Member is one of those objects that is not a full Salesforce object, so it does NOT have a chatter feed. You can't post to the feed of a related record, so therefore you can't put a post on the Contact (or Lead) instead. No chatter posts for you! |
Formulas
- It seems like you have to write formulas in a programming way, not the regular formula way. Eg:
- I could not use AND(true,true,true), I had to use true && true && true
- I had to use field != "" rather than NOT(ISBLANK(field))
- OMG, can't use some major formulas in Process Builder.
"If a formula in a process uses any of the following functions, the formula will return null.
• IMAGE
• INCLUDES
• ISNEW
• ISPICKVAL" Formulas can only be 3000 characters, which is way less than even regular formulas, and usually the trick is to use Workflows to deal with larger formulas - back to workflows for this one.
- You can't check Syntax on the formula - you have to save it and go back into each time.
- I would suggest you create all your criteria in a formula field on your object as a checkbox field, and then just use that one field as the criteria within the node.
...