Solved
Converting a date field from ISO standard
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 company I work for is US based, I would like to convert it to be Month (name or abbreviated), Day Year.
Thanks.