Sales Accelerator Configuration
Complete the full lesson to earn 25 points
Work through each section, then tap “Mark as Complete” on the last one.
✦ Skip the page breaks and see fewer ads — read each lesson on a single page with Pro
Mastering Sales Accelerator Configuration in Dynamics 365 Sales
Introduction: The Evolution of Sales Productivity
In the modern sales landscape, sellers are often overwhelmed by the sheer volume of data, emails, tasks, and follow-ups required to close a deal. Traditionally, a salesperson would spend hours navigating through various entities—leads, opportunities, contacts, and accounts—to determine what to do next. This fragmented workflow leads to missed opportunities, delayed follow-ups, and a lack of focus on the highest-priority activities. The Sales Accelerator in Dynamics 365 Sales addresses this challenge by providing a unified workspace that prioritizes tasks and streamlines the daily routine of a sales representative.
The Sales Accelerator is a central feature that transforms how sales teams interact with their pipeline. Instead of forcing sellers to search for their next action, the system uses an intelligent work list to present the most important tasks directly to them. By configuring this tool effectively, organizations can ensure that their sellers are always working on the right records at the right time. This lesson will guide you through the technical and functional aspects of configuring the Sales Accelerator, enabling you to build a structured, data-driven environment that empowers your sales team to focus on selling rather than managing administrative overhead.
Understanding the Architecture of the Sales Accelerator
Before diving into configuration, it is essential to understand the underlying components that drive the Sales Accelerator. At its core, the accelerator relies on the "Work List" and the "Sequence" engine. A sequence is a set of defined activities—such as emails, phone calls, or tasks—that a seller must complete to move a customer through the sales process. The work list is the visual interface where these activities appear.
To implement this successfully, you must define the segments of your customer base and assign them to specific sequences. Think of a segment as a filter for your data (e.g., "New Leads from Website") and a sequence as the "playbook" or "recipe" for how to handle those leads. The configuration process involves setting up these sequences, defining the segments, and ensuring that the workspace is tailored to the specific needs of your team.
Callout: Sequences vs. Workflows It is common to confuse Sequences with traditional Power Automate workflows. While both automate tasks, they serve different purposes. A workflow is typically used for background system automation, such as updating a field when a status changes. A sequence is designed specifically for human interaction, guiding a salesperson through a series of manual steps to build a relationship with a prospect.
Step-by-Step: Enabling and Initializing the Sales Accelerator
The configuration process begins in the Sales Hub app settings. You must have System Administrator or Sales Manager security roles to perform these tasks. Follow these steps to initialize the environment:
- Access the Settings Area: Open your Dynamics 365 Sales Hub app and navigate to the "Sales Insights settings" area in the site map. If you do not see this, ensure that the Sales Insights features are enabled in your environment settings.
- Enable the Sales Accelerator: Look for the "Sales Accelerator" section. You will see an option to "Enable" the feature. Once enabled, the system will provision the necessary components, including the work list entities and the sequence designer.
- Configure Work List Entities: You must define which entities (e.g., Leads, Opportunities, Accounts) will appear in the work list. For most organizations, starting with Leads and Opportunities is the standard approach.
- Set Up Default Workspaces: Define the default columns and views for the work list. This ensures that sellers see the information that is most relevant to them, such as the due date, the record name, and the activity type.
Note: Enabling the Sales Accelerator also installs several solution components in your environment. Ensure that your environment has sufficient storage and that you have tested this in a sandbox environment before enabling it in your production instance.
Designing Effective Sales Sequences
A sequence is the heart of the Sales Accelerator. A poorly designed sequence can frustrate sellers, while a well-crafted one can dramatically increase conversion rates. When designing sequences, you must balance automation with personalization.
Steps to Create a New Sequence
- Define the Trigger: Determine what starts the sequence. Is it the creation of a new lead, a specific change in an opportunity status, or a manual assignment?
- Add Activities: Use the sequence designer to add steps. These can include:
- Email: Use templates to send standard messaging.
- Phone Call: Add a script for the seller to follow.
- Task: Assign internal follow-ups.
- Wait Conditions: Set a delay (e.g., "Wait 3 days") before the next step.
- Set Completion Criteria: Define what happens if a customer responds before the sequence is finished. You can configure the sequence to automatically pause or stop if the record reaches a certain stage.
Best Practices for Sequence Design
- Keep it Concise: Do not create sequences that last for months. Aim for 5–8 touchpoints over a 2-week period.
- Utilize Templates: Always use pre-configured email templates to maintain brand consistency.
- Include Branching Logic: Use conditions to create different paths. For example, if an email is opened but no reply is received, the next step should be a phone call. If the email is ignored, the next step might be a LinkedIn connection request.
Advanced Configuration: Segmentation and Assignment
Once you have your sequences, you need to ensure they reach the right records. This is where segments and assignment rules come into play.
Defining Segments
Segments allow you to group your records based on specific criteria. For example, you might create a segment for "High-Value Opportunities" where the estimated revenue is greater than $50,000.
- Filter Logic: Use the standard record filtering interface. You can filter by field values, record ownership, or related record data.
- Dynamic Updating: Segments are dynamic. As records are updated in the system, they will automatically enter or leave the segment, ensuring your sellers are always working on a current list.
Configuring Assignment Rules
Assignment rules automate the distribution of records to your sellers. This prevents the "cherry-picking" of leads and ensures an equitable distribution of work.
- Round Robin: This is the most common method, where records are distributed equally among a group of sellers.
- Load Balancing: This method considers the current capacity of the seller, ensuring that someone who is already overwhelmed does not receive more work.
- Skill-Based Assignment: You can assign records based on the seller’s territory, product expertise, or language skills.
Warning: Avoid creating overly complex assignment rules. If you have too many overlapping rules, troubleshooting why a record was assigned to a specific person becomes difficult. Keep your assignment logic as flat as possible.
Practical Example: Implementing a "Lead Nurturing" Sequence
Let’s walk through a real-world scenario. Your company wants to ensure that every new lead from a trade show is contacted within 24 hours.
- Create the Segment: Filter for all Leads where the "Source" field equals "Trade Show" and the "Created On" date is within the last 30 days.
- Build the Sequence:
- Step 1: Automatic email (Welcome template).
- Step 2: Wait for 2 days.
- Step 3: Phone call (Script: "Did you enjoy the trade show?").
- Step 4: If the call is not completed, create a task for the manager to review.
- Activate: Connect the segment to this sequence. Now, every time a new trade show lead enters the system, it is automatically added to the seller’s work list with these specific steps.
Technical Customization: Extending the Accelerator with Code
While the configuration UI is powerful, you may occasionally need to extend the Sales Accelerator using code. This is typically done via JavaScript (Client API) or by building custom Power Apps Component Framework (PCF) controls to visualize sequence data differently.
Example: Using JavaScript to Check Sequence Status
You might need to check if a record is currently in a sequence to hide or show specific form sections.
// Function to check if a record is linked to a sequence
function checkSequenceStatus(executionContext) {
var formContext = executionContext.getFormContext();
var recordId = formContext.data.getEntity().getId();
// Use the Web API to query the 'msdyn_sequence' related entities
Xrm.WebApi.retrieveRecord("lead", recordId, "?$select=msdyn_sequenceid").then(
function success(result) {
if (result.msdyn_sequenceid != null) {
console.log("Record is currently in a sequence.");
// Add logic to show a notification or hide fields
}
},
function(error) {
console.log(error.message);
}
);
}
Explanation: This script retrieves the record ID and queries the msdyn_sequenceid field. If this field is populated, it indicates that the lead is active in a sequence. You can attach this to the OnLoad event of a Lead form to provide visual cues to the user.
Common Pitfalls and How to Avoid Them
Even with a perfect setup, organizations often encounter hurdles. Here are the most common mistakes and how to avoid them:
1. The "Set and Forget" Mentality
Sequences should be reviewed monthly. Sales trends change, and what worked last quarter might not work today. If a sequence has a low completion rate, analyze the steps. Are the emails too long? Is the wait time too aggressive?
2. Lack of Seller Adoption
If sellers find the Sales Accelerator cumbersome, they will bypass it. Ensure that the work list is the primary way they start their day. If they have to go to other dashboards to find information, the accelerator is not configured correctly.
3. Over-Automating
Automation is helpful, but over-automating can make a seller sound like a robot. Always leave room for the seller to personalize the message before it is sent. Use the "Email Preview" feature in the sequence designer to ensure sellers have the ability to edit content.
4. Ignoring Data Hygiene
The Sales Accelerator relies on accurate data. If your "Lead Source" or "Opportunity Status" fields are not updated correctly, your segments will be inaccurate. Ensure that your data entry processes are enforced before relying heavily on automated assignment.
Comparison: Manual Sales Process vs. Sales Accelerator
| Feature | Manual Process | Sales Accelerator |
|---|---|---|
| Prioritization | Seller decides based on intuition | System prioritizes based on urgency |
| Workflow | Disconnected steps | Unified, step-by-step guidance |
| Consistency | Varies by individual seller | Standardized across the team |
| Visibility | Manager reviews individual records | Manager reviews sequence performance |
| Onboarding | Slow, requires manual training | Fast, system guides new hires |
Best Practices for Long-Term Success
To keep your Sales Accelerator environment healthy, follow these industry-standard practices:
- Standardize Your Templates: Ensure all email and phone script templates follow a consistent tone of voice. Use placeholders (dynamic values) so the system automatically fills in the customer’s name and company.
- Monitor Sequence Metrics: Use the built-in analytics dashboard to track which sequences have the highest conversion rates. Use this data to refine your lower-performing sequences.
- Involve Sales Management: The people who manage the sales team should be the ones designing the sequences. They understand the sales cycle better than the IT department.
- Regular Cleanup: Remove inactive sequences and segments to prevent clutter. A clean environment is easier to maintain and troubleshoot.
- Training: Provide dedicated training for your sellers. Show them how to manage their "My Work" list and how to handle exceptions when a customer requests a different process.
Callout: The Power of Feedback Loops The most successful sales organizations treat their Sales Accelerator as a living document. Conduct bi-weekly "Sequence Reviews" where top-performing sellers share what they are changing in their scripts. Update your sequences based on this real-world feedback to ensure constant improvement.
Frequently Asked Questions (FAQ)
Can I include custom entities in the Sales Accelerator?
Yes, you can enable custom entities in the Sales Accelerator settings. However, ensure that these entities have the necessary fields (such as owner and status) to support the sequence and work list logic.
What happens if a seller is out of the office?
You can reassign records from one seller to another within the Sales Accelerator. This ensures that the sequence continues without interruption even if the primary owner is unavailable.
Is the Sales Accelerator included in all licenses?
The Sales Accelerator is part of the Dynamics 365 Sales Premium and Sales Enterprise licenses. Check your specific licensing agreement to confirm availability in your tenant.
Can I have multiple sequences running on a single record?
No, a single record can only be in one sequence at a time. If you move a record into a new sequence, it will stop the current one. Plan your sequence logic carefully to avoid conflicts.
Key Takeaways
Implementing the Sales Accelerator is a strategic move that shifts your sales team from a reactive, manual workflow to a proactive, guided process. By following the steps outlined in this lesson, you can build a robust foundation for your sales operations.
- Centralization is Key: Use the Sales Accelerator to provide a single, unified workspace for your sellers, eliminating the need to toggle between different views and entities.
- Define Clear Sequences: Sequences are the backbone of the accelerator. Design them with a clear goal in mind, incorporating a mix of automated and manual steps to maintain a personal touch.
- Leverage Segmentation: Use segments to ensure the right records are being targeted by the right sequences, and use assignment rules to distribute work fairly and efficiently.
- Data Quality Matters: The effectiveness of your automation is directly tied to the quality of your underlying data. Ensure that your CRM fields are accurate and updated regularly.
- Iterate and Improve: Treat your sequences as living assets. Regularly review performance metrics, gather feedback from your sales team, and refine your processes to match changing market conditions.
- Focus on Adoption: A tool is only as good as its usage. Prioritize user training and make the Sales Accelerator the default starting point for every seller’s workday.
- Balance Automation and Human Interaction: Use technology to handle the repetitive tasks, but always ensure that your sellers have the autonomy to personalize their interactions when it matters most.
By mastering these configuration steps and adhering to these best practices, you will create a high-performance sales culture that is equipped to handle the complexities of modern business with speed and precision. The Sales Accelerator is not just a feature; it is a framework for consistent, repeatable sales success.
Continue the course
Enjoying the courses?
Everything stays free. Pro shows fewer ads, doubles your daily points limit so you progress twice as fast, and lets you read each lesson on one page.
- ✓ Fewer advertisements
- ✓ 2× daily points limit
- ✓ Distraction-free lessons