Badges
Accepted Solutions
Likes Received
Posts
Discussions
Ideas
Blog Posts
@SanfordWhiteman wrote:if a contact has an element from the $contactqualificationList list where the property qualificationid is empty - the email will fail to send due to a fatal error:"empty" or null?These fields are null in Dynamics and being populated by the standard custom object sync. This is...
Hi @SanfordWhiteman, thank you for your reply I appreciate the help. I have taken your response and was able to correctly set up the 'foreach' loop as below:#set ( $qual = "Unavailable" )#foreach( $qualitem in $contactqualificationList ) #set ( $qual = $qualitem.qualificationid ) #foreach( $co...
I have tried iterating over this script but still no luck. Even if I set a variable outside of the foreach function as error validation:#set( $qual = "Unavailable" )#foreach( $qualificationid in $contactqualificationList ) #if( !$contactqualificationList.qualificationid.isEmpty() ) #set( $qual ...
I'm trying to develop a velocity script where it checks if a field in a custom object (which is being synced from a Dynamics custom entity) is not empty. If this field is empty, I would like to print a message saying the details are not available at this time. The entity is being synced with Marketo...