Badges
Accepted Solutions
Likes Received
Posts
Discussions
Ideas
Blog Posts
If you delete the person in SFDC, it will still exist in Marketo, you may want to think about running a smart campaign to check for this and take an action:The above is the automated way, of course you can make this a manual process so that you have 100% awareness of what is going on.
Also it seems like you didn't have First Name selected in the Lead Section of the Script Token, this is why you see that output:
The easiest way to achieve this is with 2 forms, you can't easily add the same form twice on a page, then in your program just the 2 forms to the smart list in your smart campaign. See an example here: The TIBCO Blog, I have the pop-up for the new users, but it's also at the bottom of each page.
JD I think this is the code you want:#set ($fname = ${lead.FirstName.toLowerCase()})$display.uncapitalize($fname)Info here. Look at this article too.
Malik, I think you're best to contact Marketo Support to investigate this bit, they can dive a bit deeper than what we can see.
Since Leads and Contacts are separate in Salesforce, you need to create the 2 fields in each object (4 in total). What I think is happening is that you are updating a Salesforce Lead and since the fields don't exist there, nothing is actually updating (click on the ID field in the activity log and s...
Have you created these on the Lead Object too? I think you are trying to sync and Marketo Lead to a Salesforce Lead and since that field is not there no data is syncing, the new fields need created on both the Lead and Contact Object.
This is going to be complex, you can do it by creating a DateTime field in Marketo, for this example I called my field Date&Time, then in my send flow I added {{system.dateTime}} which will mirror the time the email is sent.Then comes the complex part, once you display this field in your email, it w...
Looks like the Helpful Resources box has been increased from 140px to 315px approx, look for that change somewhere in the code. If you can share the code, I can take a deeper look.
You can't update this field as it's set by the system, I thought your question was how to push the data from these fields into another field. If you are having issues seeing them in Salesforce, it sounds like they are not showing in the Lead or Contact Objects rather than a Marketo sync error, in Sa...