Badges
Accepted Solutions
Likes Received
Posts
Discussions
Ideas
Blog Posts
We are not familiar with velocity scripting and are trying to understand how we can format Time fields in our velocity token. We are referencing a Salesforce custom field on the Case object. We currently have this much completed:#if( !$Case__cList.isEmpty() )#set( $sortedCase__cList = $sorter.sort($...
Life saver!!! Thank you.
Sanford, Let me first say thanks for taking the time to look into this as you do with many other posts. It's greatly appreciated. That code worked perfectly in retrieving the latest object. My next hurdle is isolating a specific field to be returned. Right now I get everything that's checked. For ex...
Let me start off by saying I have as much experience with velocity scripting as I do with underwater basket weaving. With that said, my goal is to be able to pull field values from the latest created salesforce custom object for a lead and reference them in an email. For example, we have a custom o...
Now I'm lost. I thought the previous request was regarding retrieving values from the latest object created in Salesforce.This is what I have now based on what I've found online, the problem is the values returned aren't consistent. I just need the latest record's values. ${number.format("${esc.d}${...
Do you know if the objects in the Array are ordered by created date or modified date? For example, I want the values from the latest created object, yet with the snippet of code you provided, I'm getting the values of the last modified record. For our trigger campaigns it's not that big of a deal bu...