Badges
Accepted Solutions
Likes Received
Posts
Discussions
Ideas
Blog Posts
Hello, I have a shiny new script token (thanks Sanford):#foreach( $account in $account_cList )#if( $account.description.equals("ARROWHEAD VISA") )#set( $dueDate = $account.upcomingPaymentDate )#break#end#end$dueDateThe problem is it displays the date like: YYYY MM, DD based on the fact that the comp...
I will do that, one other thing on this thread. I'm trying to understand what happens when a field type changes. If I were to be doing something similar for other products, but wanted to use a field type that was an integer field type, would the integer have to be converted to a string (I just want...
oh, duh. yep. it works like a charm. Is it possible to format the date out of the ISO standard? I read your post https://blog.teknkl.com/velocity-days-and-weeks/ but did not see what I was looking to do. I would love for something to go from: 2020-04-15 to display as April 15, 2020 as that would b...
Thanks, It is definitely a learning curve. I look at other examples, feel I understand what they are trying to accomplish, but sometimes the nuances are a little trick.That is exactly what I am trying to accomplish.It is still displaying as blank when I preview it or send a test email using a person...
When I check description and the upcomingPaymentDate on a particular record that I know has this product I get: {description=ARROWHEAD VISA, upcomingPaymentDate=2020-04-15}, but results are still null or empty when I use my coding.
It's been a couple days and I'm hoping this will get some action on this page. Tagging @SanfordWhiteman if that will help. If I simplify it, perhaps that would give me the immediate solution that I could then incorporate into the other products. Let's start with the Visa card. I need to create a ca...
I think that is the problem. The code I used was based on something I found on the community. How would I ensure that it is looking at the description field other than checking it in the token builder?
What additional raw object data is needed? Does this refer to all of the possible items that could be under the description tag? here is the code in the syntax highlighter:#foreach( $list in $account_cList )#if( $list.listID.equals("description") )#set( $targetList = $list )#break#end#end${display.a...
I've been searching all over the community trying to find a solution for this likely easy issue. I feel I had a similar project previously but I can't find it and I've been searching for too long.I need to create a velocity script that identifies a payment is coming due. I want to identify what the ...
Sorry, in a bit of a haze today. Would I need to take the code you provided and change the $objectList with my $account_cList and replace the specific number format with $number.currency Thanks for bearing with me.