Badges
Accepted Solutions
Likes Received
Posts
Discussions
Ideas
Blog Posts
Hey @SanfordWhiteman, I wasn't able to understand how we can take care of the scenario using the solution you shared. Can you please elaborate here. As I believe sorting it date wise won't still provide us to final solution.
Hello,#if( !$display.alt($Activity_Marketo__cList.get(0).Appointment_Start_DateTime_Text__c,"").isEmpty() )#set ( $Appointment_Start = $date.toDate("MM/dd/yyyy hh:mm:ss a", $Activity_Marketo__cList.get(0).Appointment_Start_DateTime_Text__c) )${date.format("MM/dd/yyyy", $Appointment_Start)}#end We ar...
We are migrating from SFMC to marketo and have synced all the objects & fields from SFDC to marketo.We have a field "StartDateTime" (Data Type - DateTime) which is a constraint under a activity object which we need as a separate field and not as a constraint so that we can use it as an attribute und...
When we add a trigger "Opportunity is updated" having trigger attribute Type is 'Prospect', how does it works?Case 1: Will it fire the campaign whenever the trigger attribute is updated to 'Prospect'.Case 2: If the Type is 'Prospect' already and any other opportunity field is updated will the trigge...
We created a task in Marketo to write back to Salesforce where a planner/owner is assigned a task but the field "Related to" as you can see in the screenshot below is empty. Here we want the user to flow in the "Related to" field so that the planner gets to know which user/lead is to be served.Is t...
Hey Sanford, Thanks for the solution. I added ! in the script and it works. #if( !$display.alt($lead.Lead_Owner_Email_Address,"").isEmpty() )#userlandBase64_v3( $lead.Lead_Owner_Email_Address )#end
Hey Sanford, Thanks for the solution. This solution works for the string/text Data Type but my attribute's Data Type is DateTime and its a constraint under Marketo activity. So using this script I don't see any value in the Preview. #if( !$display.alt($Activity_Marketo__cList.get(0).Appointment_Star...
Hey,I want to trim the Date, time and timezone from single Attribute of the Marketo.When I used static value it approves the email without error but when I am using Marketo Attribute for the same one it shows the correct value in Preview but shows error while approving the email.The value of the ${l...
Hey,I want to Encode the Email address which is passes through URL to Non-Marketo Landing page. I added below Email script in the my Tokens and used this token in the Email Template within the same program.#set ($string = ${lead.Lead_Owner_Email_Address})#userlandBase64_v3("$string")While adding thi...