Oh okay, so if I'm trying to do a date.difference comparison between the calNow and the parsed date field, do I need to do any more massaging of the field date in order for the dif...
I'm probably overcomplicating this (or totally over my head, but I started by parsing the string into a Date field:
#set( $membershipOpeningDate = $convert.parseDate(
$item.me...
Ah makes sense, though is this able to go "if current date is 2023-03-23, look for "2023-03-22" or is it more giving "difference in date is -1"? I tried the below and it's not brok...
Hello!Back with another (likely) basic question I can't seem to parse:
##Standard Velocity Date/Time Fields
#set( $defaultTimeZone = $date.getTimeZone().getTimeZone("America/Chica...
Ah, was not aware there was a Velocity ability to mesh (somewhat) with Triggers! Another thing to look into! Thank you (and@SanfordWhiteman!) for all your help and expertise with t...
Is there a way to reference back to what a previous token found in order to retain the record consistency?
We have a campaign that basically would run like this:
Email 1: Send to C...
Okay got it, that makes total sense.
How would you recommend going about if I need to pull related records in conjunction with each other?For instance, we have a Loans object that ...
When you're looping through the list, in each iteration of the loop, you'd only have access to one CO record (i.e., in the above example, in the first iteration, RecordA would b...
Oh wow, that makes SO much more sense - I apparently misconstrued the $item as a placeholder for the field name and NOT the actual use it should be.One more question if you have ti...
I apologize for all the Velocity posts, but I'm bashing my head against the wall, so I want to get super basic here and explain the issues I am having and make sure I understand th...