Badges
Accepted Solutions
Likes Received
Posts
Discussions
Ideas
Blog Posts
Thanks @SanfordWhiteman !Working as expected!
Thanks Sanford,When I use the following,#set( $calNow = $date.getCalendar() )#set( $calConst = $field.in($calNow) )#set( $monthOffsets = [] )#foreach( $offset in [0..-4] )#set( $void = $calNow.add($calConst.MONTH, $offset) )#set( $void = $monthOffsets.add( $date.format("MMM", $calNow) ) )#endCurrent...
Trying to return current month + last 4 months in 3 letter abbreviation using velocity.This is what I have, but I'm sure there's a better way? 😅 #set( $calNow = $date.getCalendar() )#set( $calNowMinus1 = $date.getCalendar() )#set( $calNowMinus2 = $date.getCalendar() )#set( $calNowMinus3 = $date.get...
Thanks for the clarification.Are you able to use segments in the script itself?Any good articles or documentation on using segments & velocity?My assumption on the limitations were based on needing to apply segmentations separately.Here is my use case,SegmentsRegistered member of community and subsc...
Is there any guidance on when to use API to Update Snippet Dynamic Content vs Update Custom Object + Velocity when it comes to creating & personalizing emails? Some things that I have noticed for both approaches,Update Snippet Dynamic ContentPros - Can update snippet content directly used in emailsC...
In Bizible/Marketo Measure,Ad Destination URL is available for LinkedIn Sponsored Content, but not LGF.Please make available for LinkedIn Lead Gen Forms. Want to be able to capture the url of what was promoted and what the user fills out lead gen form for.The landing page URL is usually not the same...
Thanks @SanfordWhiteman . I’ll try my best to rephrase as a question 😉 A) Custom Object data modelCustom Object: TopicsField 1: Total TopicsField 2: Topic #1Field 3: Topic #2Field 4: Topic #3 Example RecordTotal Topics: 10Topic #1: 5Topic #2: 3Topic #3: 2 B) Business Requirement How can I render th...
learning some velocity scripting and having some issues rendering.this is what i have.#if (${topics_cList.get(0).topics_Total} > 0 )#set( $topic1Percent = $math.div(${topics_cList.get(0).topic1}, ${topics_cList.get(0).topics_Total}) )#set( $topics2Percent = $math.div(${topics_cList.get(0).topic2}, $...
Playing around with Executable Campaigns.Are you able to use Executable to change parent program status? Trying to create an executable campaign for web form fill campaigns.When I pull in 'change program status' and try to use Program = {{program.id}} or {{program.name}} and try to paste "Filled Out...
How do you add CrmTask. Fields to enable to criteria setting?For instance, you show "CrmTask.Assigned_to_role__c", which is currently not a visible field in our instance.