Knowledgebase

Sort by:
Issue Description Sometimes there can be a circumstance where a text token should hold null value. Since the token must contain a value, you need to insert a value that will display as empty when the token is rendered. Issue Resolution Adding a HTML comment to the on the Text {{my.token}} side would work. <!-- -->  If you're just plopping the token into your HTML, this will be fine. If you're embedding in JS then you can still check for that specific value, it just won't be "magic": if ( "{{my.token}}" != "<!-- -->" ) {    // it's not empty  } 
View full article
Issue Description Is it possible to download the most recent report from the smart list subscription email report? Issue Resolution If you click the Download Report button, it will be a static link containing the smart list data at the time the subscription was sent. If you want real-time data, click the smart list URL in the report email and then export the list. Who This Solution Applies To All customers
View full article
Issue Description You may notice that there may be a block in SFDC that stop syncing unsubscribes from Marketo to SFDC. After fixing the block in SFDC the new unsubscribes will sync as expected. How to get all the unsubscribes that happened before this fix to sync into SFDC?   Issue Resolution You would need to set up a campaign to reset the field value. Smart list: Unsubscribed = true Flow: Change data value  "unsubscribed" -> False Change data value  "unsubscribed" -> True   That would take everyone who is currently unsubscribed, switch to false and then back to true. That should cause the true value to sync up to SFDC for all of those records. However, make sure you do this at a time when you are absolutely positive there are no email campaigns going out.   Who This Solution Applies To Customers integrated with Salesforce Is this article helpful ? YesNo
View full article
Issue Description What is meant by the socially acquired member of a program such as a webinar program? Issue Resolution Leads acquired by the following Social Apps are part of the "Socially Acquired" count - Social Button Youtube video Poll Referrals Sweepstakes If you want to track the number of registrations through social shares, you should consider using the referrals or sweeps app.  These apps allow the users to share and also help you track how many registrations each of your referrers bring in.
View full article
Issue Description When we delete the static lists from a program after a period of time, will the leads they contain no longer be member of the program?   Issue Resolution The individuals should still be a member unless you change their membership status to remove them. Remember lists are simply collections of individuals so you can easily process or associate them, they don't automatically get "membership" unless you had corresponding flow steps that you used when putting them on the list.     Is this article helpful ? YesNo
View full article
Issue Description How to create a Smart List that only shows leads created in Marketo. Issue Resolution Create a Smart List using the filter "Original Source Type - is not - Salesforce.com" Who This Solution Applies To Customer's integrated with Salesforce
View full article
Issue Description You want to create a field that will grab the web page the form was filled out on and add this as a token in an alert that goes to sales when a form is filled out. Issue Resolution This can be achieved either through a Smart Campaign or the JS API code. The code is more efficient because it doesn't mean another trigger is active in your instance. Smart campaign: You'll want to create a smart campaign with Smart List - Fills Out Form and Flow - Change Data Value, [your field name], New Attribute is {{trigger.Web Page}} You would need to reference the trigger token in the alert email so the team knows what product page the end user filled out the form on. Code: (Embedded Form) This can be done with a hidden field. MktoForms2.loadForm("//app-**01.marketo.com", "***-***-***", 148,     function(form)     {         form.addHiddenFields({ LastFormURL : document.location.href })        }); The asterisks represent your company's Marketo data (your Munchkin ID and Marketo instance). Your developer will know what to do if s/he is already using the embed code. Code: (Marketo LP) In a Marketo LP, you will have to edit the template and put this at the end, before the </body> tag : <script> MktoForms2.whenReady(function (form) {     form.addHiddenFields({ LastFormURL : document.location.href }); }); </script>
View full article
Issue Description When a lead fills out the form in Marketo, Marketo sync fails with an error  "Duplicates_Detected."   Issue Resolution This error, "Failed: DUPLICATES_DETECTED: Use one of these records?" is a message Salesforce is sending back to Marketo, rejecting the attempt to sync the record. This means there's a setting in SFDC preventing duplicates from being created, possibly due to a custom deduplication rule on the SFDC side.   Recommended steps : Check the dedupe settings and check for these leads in SFDC based on the things other than the email address like first name, last name etc. You may need to work with your SFDC admin to determine why Salesforce rejecting the record as duplicate. Who This Solution Applies To Customers integrated with Salesforce Is this article helpful ? YesNo
View full article
Issue Description How to identify in which campaign the "Delete Person" flow step is used   Issue Resolution You can identify it by going to "Campaign Inspector" in Marketing Activities.   From there you can filter down by type of Smart Campaign and search "Delete Person" and the resulting list will be Smart Campaigns containing that flow step.   If you do not see the Campaign Inspector, navigate to Admin > Treasure Chest to activate it.     Is this article helpful ? YesNo
View full article
Issue Description MS Dynamics Sync shows that it is stuck at a certain percentage after a long period of time.   Issue Resolution This is usually caused by enabling several Custom Entities at a time.   To resolve this issue, you will need to sync the custom entities one by one so that the sync is not bottlenecked.   If that does not resolve the issue, check how many fields are enabled for the custom entity.   A large amount of fields can cause a bottleneck, try to reduce the amount to have only necessary fields.   Who This Solution Applies To Customer with Microsoft Dynamics CRM Is this article helpful ? YesNo
View full article
Issue Description Can you remove a CRM from Marketo? Issue Resolution You cannot remove a CRM integration from an instance. Once the CRM of your choice is clicked (Dynamics or Salesforce) the instance is set to use that CRM for the remainder of its life. Once the login and mappings have been setup for a instance, the CRM instance or org cannot be changed as well. If for a reason you do need to change the CRM or the linked instance, you would want to reach out to your Customer Success Manager to get information on provisioning a new Marketo instance.
View full article
Issue Description How to set up Wistia in Marketo. Issue Resolution Please follow the below link for Wistia marketo integration https://wistia.com/product/marketo#setting_up_marketing_automation_based_on_video_viewing_data If you need further support on integrating this product, please reach out to Wistia support. Who This Solution Applies To Customers with Wistia
View full article
Issue Description When I navigate to Admin>munchkin, I see option to select workspace. Why is that? Issue Resolution People generally use workspsce either because of their companies geographical location or Business Unit. In each case, the separation is because the marketing assets are completely different.  With that said, If you're using Workspaces in your Marketo account, you probably also have separate web presences that correspond to your workspaces. In that case, you can use the Munchkin tracking Javascript to assign your anonymous people to the correct workspace and partition. This is used to differentiate appropriate leads within workspace with the help of appropriate tracking.     If you don't use the special workspace Munchkin code, the people will be assigned to the default partition that was created when your account was set up. It's named "Default" initially, but you might have changed that in your own Marketo account.   You can only use one Munchkin tracking script for a single partition and workspace on a page. Do not include tracking scripts for multiple partitions/workspaces on your website. I would also like to mention that Landing pages created in Marketo automatically contain tracking code, so you don’t need to put this code on them. Who This Solution Applies To People who use Workspaces and Person Partitions Is this article helpful ? YesNo
View full article
Issue Description Can multiple Marketo forms be used on the same page? Issue Resolution Due to the way Marketo forms are embedded on pages, you cannot have two Marketo forms on a single page (landing page or external). Having multiple forms on a single page can prevent the forms from submitting properly.
View full article
Issue Description We have a custom landing page template and we were able to see that landing page is not rendering perfectly on the editor but works as expected when published.  How can I troubleshoot on this issue? Issue Resolution As you are facing the issue on a custom template, we suggest you to follow the below steps. Download a template form the URL- https://docs.marketo.com/display/DOCS/Guided+Landing+Page+Template https://docs.marketo.com/display/DOCS/Guided+Landing+Page+TemplatesIn Marketo, navigate to the Design Studio. Click Landing Pages in the left-hand tree, then select Templates. In the menu bar, click Import Template. Choose the downloaded file, enter a template name, then click Import (make sure to pick a descriptive name and indicate that editing mode is Guided). Create a new Landing page with the recently downloaded template without making any changes. If the default background image works on this landing page as expected, it confirms that the issue lies with the custom coding that was added to the template. Marketo Support is not set up to assist with troubleshooting custom code. The best point of contact will be your web developer who should be able to resolve the issue for you. Please be aware that the landing page editor may not load all external resources in the editor or previewer, which can cause them to look different than the published version. If the background image doesn’t render on this newly downloaded template as well, contact support and we will be able to troubleshoot your issue.
View full article
Issue Description You need to revert a data value change for a field on multiple leads. Issue Resolution There is no way through the UI to "undo" a data value change (unless it was a boolean field, in which case there are only two possible values.) You can certainly use a Smart List to identify whose values have changed, but there no way to go back to the old value (unless it's stored elsewhere in another field or through another data store, along with the API). However, you can use the API to extract the data value change activity from the activity log, which would include the old and new values, extract the original values, then use the API to rewrite the old values back to the lead record. http://developers.marketo.com/rest-api/endpoint-reference/lead-database-endpoint-reference/#!/Activities/getLeadChangesU… Is this article helpful ? YesNo
View full article
Issue Description Lead fails sync to SFDC with the error INVALID_OR_NULL_FOR_RESTRICTED_PICKLIST: bad value for restricted pick list field Issue Resolution This happens when the Marketo field has a value that is not available in the list of accepted values on SFDC. We suggest that you check with your SFDC admin to find out the list of accepted values and make necessary changes. Who This Solution Applies To Customers integrated with Salesforce
View full article
Issue Description You want to set a field such as "Country" to be required on a list import.   Issue Resolution You cannot require a field to be included on a list import. To see any leads imported recently with blank values you can setup a smart list with a subscription Filters -- Lead was created Source Type - Import [Field you are wanting to watch] is Empty   You could setup a daily subscription to get the leads who qualify and then correct those leads as needed. Is this article helpful ? YesNo
View full article
Issue Description Emails with valid email address get soft bounced with this error:  Local address contains control or whitespace   Issue Resolution This error means that the email has a space somewhere in the the From email address or there was a comma or extra character in the From line.   The email send did not occur due to the error with the address. The emails will need to be resent once after the associated address is corrected with white spaces or extra characters.     Is this article helpful ? YesNo
View full article
Issue Description Issue in delivering Marketo Email (especially for mimecast users). Email get bounced with Error: 550 Rejected by header based Anti-Spoofing policy Issue Resolution This error can happen if: You have not properly white listed the Marketo IPs You have an ssue with DKIM/SPF set up and configuration Please whitelist the set of Marketo IPs found in the doc below and make sure SPF and DKIM are set up correctly for your email domain https://docs.marketo.com/display/public/DOCS/Configure+Protocols+for+Marketo
View full article