...
- 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
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.
I could not use AND(true,true,true), I had to use true && true && true.
- You can't check Syntax on the formula - you have to save it and go back into each time.
...