Badges
Accepted Solutions
Likes Received
Posts
Discussions
Ideas
Blog Posts
Thanks for the info, Peter. Good to know it is possible. So to break this problem up I wanted to start with working out the code to check if there is a lead with the field "Customer ID" on both objects. Would that look something like this? #foreach ($lead in $ObjectA)## Check if Customer ID from Obj...
Is it possible to write a velocity script that references multiple custom objects? The idea would be to have a column on each table (CustomerID) that could be used to match rows on each object. Example: #foreach ($emailAddress in $mUOOnboardingTestMUOTable_cList)#if (($mUOOnboardingTestTaskrayTask_...
Thanks, Sanford! Would that look like this? ## Look for Service Appointment Start Times#foreach ($Service_Appointment_Start_Time__c in ${TASKRAY__Project_Task__cList.get(0)})## Where Service Type contains Menu#if (${TASKRAY__Project_Task__cList.get(0).Service_Type__c.contains("menu")})##Return Star...
I want to create a token that populates a field on a custom object "Service Time" each contact could have multiple "service times" so I want to cross reference another field in order to populate the correct "service time" For example, I want the token to display the "service time" associated with th...