Knowledgebase

Sort by:
Issue When attempting to move a folder with a program into a different workspace, the below exception is thrown: Rule is incomplete, '<Field Name> is...' requires value In the below example, the field name is 'New Status ID':   Solution This exception is thrown when a smart list within the Folder contains an incomplete filter. To resolve, you can either: 1. Remove the Smart List filter that is incomplete 2. Set a value for the Smart List filter
View full article
Issue When viewing the activity history for email sends to a lead, the campaign name does not reflect the program name responsible for the send.   Solution Marketo will run background campaigns to handle emails sent through a either an email program or a nurture program. The naming convention for this may look like the following:   Program - #### - Exploration - Campaign Program - #### - Exploitation - Campaign Email Batch Program - #### - send-email-campaign To refer to the accurate name of the program responsible for the send, this information can be found in the Detail section of the activity log.    
View full article
Issue A lead was not sent an email by a Smart Campaign even though they should have qualified for the Smart List.     Solution * Check if the lead has reached the daily or weekly communication limit. https://docs.marketo.com/display/public/DOCS/Enable+Communication+Limits https://docs.marketo.com/display/public/DOCS/Apply+Communication+Limits+to+Smart+Campaign   * Check if the lead has a duplicate lead with the same email address that was sent an email already.   * Check if the campaign is set to qualify leads only once. If the lead has ran through the campaign previously when it had different flow steps, then the lead cannot qualify for the campaign again even though the flow steps have changed. https://docs.marketo.com/display/public/DOCS/Edit+Qualification+Rules+in+a+Smart+Campaign   * If all leads in the campaign were not processed, check if there is a campaign restriction. https://docs.marketo.com/display/public/DOCS/Enable+Person+Restrictions+for+Smart+Campaigns    
View full article
Summary Customers may face errors referencing Segmentations when importing programs between instances. Issue Program import fails giving an error message like the example below: "Marketo encountered an error while importing Nurture Program: EXAMPLE - Acquisition NUR B2B [SMB] FY24 - TEST Why: The Segmentation_Type_1003 field exists in the following objects: Person What to do now: Create a field named Segmentation_Type_1003 in the Person object." Environment Marketing Activities Import Program Solution The simplest solution would be to temporarily remove the Segmentation references from the child assets (Smart Campaigns, Smart Lists, etc.) that currently exist in the importing Program within the source instance. Once the import succeeds, references to the Segmentations can be re-added to the source (as well as the destination, if needed) instance's Program's assets.  
View full article
Issue How to create a Smart List that only shows leads created in Marketo as opposed to leads that were synced from Salesforce. Solution Create a Smart List using the filter "Original Source Type - is not - Salesforce.com"  
View full article
Issue What is meant by the socially acquired member of a program such as a webinar program? Solution 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 sweepstake 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
Summary Flow step choice condition for "Person was Deleted from SFDC" with 'in past' "7 days" causes campaign failure Issue This flow step choice type causes a campaign failure because it is not supported.   This is expected behavior. Solution Customers have to use Member of Smart List as indirection for the desired filter condition.   i.e. Create a new Smart List with the "Deleted from SFDC" filter.  Then change this failing flow step choice to use 'Member of Smart List' with the Smart List just created.   Example flow step:
View full article
Issue Leads are stuck in a smart campaign's Wait Step and have not moved onto next steps, even though the Wait Step has been updated/shortened and the lead should move onto the next step. Solution When a lead enters a Wait Step, it remains in the Wait Step as defined at the moment they entered it. For example, if the lead enters a 1 week Wait Step, it will remain in the step for 1 week. If the Wait Step is updated to be longer or shorter (for example, shortened to 3 days or extended to 2 weeks), the lead that already entered the Wait Step (when it was 1 week) will remain in the Wait Step for the original duration. New leads entering the Wait Step will abide by the new duration.
View full article
Issue You receive the following error: "Ouch! 500 Error Something went wrong. We monitor this sort of thing, but if you are an authorized support contact, you should create a support ticket."       Solution This can happen because of temporary network issues. Try out the following troubleshooting steps. 1. Clear Browser Cache 2. Try a different browser 3. Try a different device 4. Try a different internet connect (Hotspot/Tether from mobile) If you still have any issue after trying all these steps, please contact Marketo Support for further assistance.
View full article
If the user makes changes to the my tokens, snippets, etc during the processing of the an email that is using head start, will those changes be reflected—No If someone unsubscribes during the processing of the an email that is using head start, will they receive the email—Yes Can you cancel a head start program once the processing of the an email that is using head start has begun—Yes What happens to the processing data when someone cancels a program during the processing of the an email that is using head start—It is deleted (I.e. Program membership, etc.)  
View full article
Issue My token is not displayed correctly in view as webpage version of email. Environment If customers manually type a {{my.token}} and use uppercase M such as {{My.token}}, then the view as webpage version of email may not render that token as expected. The feature to HTML encode lead tokens (source of external data) for security reasons, applies to my tokens that incorrectly use uppercase M. HTML Encode Tokens Solution Use the token picker to pick the correct lowercase {{my.token}}.
View full article
Issue 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.     Solution 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 it in Javascript 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