September 2, 2025

Adobe Target in Single-Page Applications: Real-World Challenges and Solutions

Many of the websites you use every day, for example Gmail, Facebook, or Twitter, can feel so seamless, fast and smooth. You click, and content just appears, without the whole page blinking and reloading. That's the magic of a Single Page Application (SPA)! These web experiences are designed for speed and fluidity, but they introduce unique challenges when it comes to personalization tools like Adobe Target.

In this post, Santosh Kumar, Principal Consultant at Accrease, shares two real-world challenges that we faced when implementing Target in an SPA, and how our team developed scalable solutions.

What's an SPA?

Imagine a website that's not a series of separate pages, but rather a single, smart canvas. When a user first visits, the browser loads the essential HTML, CSS, and JavaScript. After that, interactions update only the parts of the page that change, without reloading the full page.

Why are SPAs so popular and powerful today?

Faster performance: Because only small chunks of data are exchanged and rendered, SPAs feel incredibly quick and responsive. This results in a significantly faster user experience.

Smooth navigation: The absence of full-page reloads eliminates the jarring "white flash" and makes the navigation feel continuous and fluid, almost like using a native mobile application.

Enhanced Efficiency: With less data being transferred between the server and the client, SPAs reduce server load and bandwidth consumption, leading to more efficient performance overall.

Modern Development: Developers leverage powerful, cutting-edge JavaScript frameworks like React, Angular, and Vue.js to build SPAs, making the development process more organized and the applications more robust.

For the user, this means a fluid, modern web experience. But for personalization platforms like Adobe Target, it breaks the traditional pattern of reloading and re-evaluating content at each navigation.

The challenge with Adobe Target and SPAs

Adobe Target is a leading personalization and A/B testing tool that empowers businesses to deliver tailored content and experiences to their website visitors. It's all about showing the right message to the right person at the right time.

However, SPAs present a unique challenge for traditional personalization tools. Normally, when a user navigates to a new page, a "hard reload" occurs, and Adobe Target's main script (alloy.js, used for Adobe Web SDK) is re-executed, triggering a new "mbox call" to check for personalized content. In an SPA, this only happens on the very first page load. After that, all subsequent navigations are "soft reloads", dynamic content updates without a full page refresh. This means Target doesn't automatically get the signal it needs to re-evaluate and deliver new personalized experiences.

To address this, Adobe Target uses a concept called "views." A view is simply a named state or screen within your SPA. Think of it like a virtual page, even though the browser isn't actually reloading. For example, "homepage," "product-details," "shopping-cart," or "checkout" could all be defined as distinct views. When a user transitions to a new view, we manually tell Adobe Target, "Hey, the user is now on the 'product-details' view!" This manual trigger allows Target to deliver the appropriate personalized content for that specific screen, even without a full page reload.

Illustrating the "View" concept:

Picture from: Adobe Experience League.

Solving real-world scenarios with Adobe Target in SPAs

While the "views" concept is foundational, we encountered a couple of significant real-world challenges when trying to implement Adobe Target for more complex personalization scenarios in an SPA environment.

Challenge #1: Personalizing across thousands of similar pages (The "Marketer's Nightmare")

Take a large hotel booking site. It might have thousands of unique hotel detail pages, each representing a different property. In an SPA, each of these pages would typically have its own unique "view" name (e.g., "hotel-london-view," "hotel-paris-view," "hotel-tokyo-view"). Now, imagine a marketing team wants to change a small, universal piece of text, perhaps a call-to-action button or a promotional banner, that appears on every single one of these thousands of hotel detail pages. If they had to set up thousands of individual personalization rules in Adobe Target, one for each unique view name, it would be an incredibly time-consuming, impractical, and unscalable "marketer's nightmare."

Our approach: The generic view name trick

To solve this, making personalization scalable, we implemented a generic view strategy. Instead of sending unique view names for each individual hotel detail page, we sent a single, generic view name (e.g., "hotel-page" or "en: hotel page") for all hotel detail pages. This simple yet effective "trick" means marketers only have to set up one personalization rule in Adobe Target for the "hotel-page" view, and it automatically applies the desired change to all thousands of hotel pages. This dramatically simplifies campaign management and deployment.

Supporting marketers with our Accrease Custom Chrome Extension

Even with a generic view name, Adobe Target’s Visual Experience Composer (VEC) can still be difficult to use in SPAs. The VEC often defaults to the most recent view triggered, which may not be the one marketers want to edit.

To solve this, we developed a custom Chrome extension! This tool is extremely helpful for marketers working with SPAs. It listens for all the "view" names triggered by alloy.js on a page and populates them into a simple dropdown list within the extension. Marketers open the extension, select the exact view they want to work with (such as "hotel-page"), click "Activate." Then that specific view becomes visible and editable in Adobe Target's VEC.

The extension also includes a custom text box, allowing marketers to manually enter and activate any view name, even if it hasn't been implemented in the tag manager yet. This is incredibly useful for planning and setting up campaigns in advance. This tool significantly reduces manual effort, improves efficiency, and accelerates campaign creation for SPA-based sites, particularly for marketers who may lack in-depth technical knowledge.

Here is a closer look at the extension:

Here's a visual representation of how our Chrome extension “Accrease SPA Helper” helps:

Behind the extension:

Building such an extension may sound straightforward, but it requires both strong front-end development skills and a deep understanding of how Adobe Target operates. As Adobe Experience Cloud experts, we combined that knowledge with modern development tools to accelerate the process. AI-assisted coding helped us move faster, but it still took multiple iterations, testing, and refinement before we reached a polished and reliable solution. The end result is what you are seeing today, a tool that makes personalization in SPAs far more accessible for marketers, delivered with both speed and quality.

Challenge 2: Inaccurate goal tracking in A/B tests goal (The conversion discrepancy)

While personalization was now scalable, we noticed another issue: conversion tracking in Target wasn’t aligning with Adobe Analytics data.

For example, in an A/B test where the goal was a visit to the thank-you page, Analytics showed far more completions than Target.

The root cause:

After a thorough investigation, we pinpointed the problem. Since our site is an SPA, most users navigate between pages using "soft reloads." During these soft reloads, the main "mbox call" (which is crucial for Adobe Target to register user actions, evaluate goals, and track conversions) was not being sent automatically. Target was only recording a goal completion if a user happened to perform a full "hard reload" on the "thank you" page. This explained the small number of conversions we were seeing in Target compared to Analytics.

The fix:

We escalated this issue to Adobe Client Care, who involved their engineering team. After several rounds of analysis and communication, they confirmed our findings and recommended a crucial adjustment to our tag manager setup, specifically, the order in which Target calls were being fired.

Before (The problematic setup):

On Hard Reload:

  1. mbox call (decisionScope = __view__)
  2. view call 1
  3. view call 2
  4. view call 3

On Soft Reload:

  1. view call 1
  2. view call 2
  3. view call 3
    (No mbox call here)

As you can see, the critical mbox call was absent on soft reloads, preventing Target from registering goal conversions.

After (The solution: Adobe's suggested Fix):

The fix involved ensuring the mbox call was always present, even on soft reloads, and crucially, fired after all view calls.

On Hard Reload:

  1. mbox call (decisionScope = __view__)
  2. view call 1
  3. view call 2
  4. view call 3

On Soft Reload:

  1. view call 1
  2. view call 2
  3. view call 3
  4. mbox call (decisionScope = __view__) ✅

By adding the mbox call at the end of soft reloads, Target is now able to evaluate goal conversions correctly, regardless of whether the user navigates via a hard or soft reload. This simple but vital change ensures accurate conversion tracking for all A/B tests.

What does this mean for marketers?

SPAs deliver the modern experiences users expect, but they also require rethinking how personalization and testing are implemented. Our work with clients has shown that:

  1. Scalability matters. Using generic view names transforms personalization from unmanageable to efficient.
  2. Ease of use is critical. Tools like the Accrease SPA Helper extension empower marketers to manage personalization without heavy technical support.
  3. Accuracy is non-negotiable. Ensuring conversions are tracked correctly builds trust in testing results and enables data-driven decisions.

At Accrease, we bridge the gap between technical implementation and marketer usability. The result is personalization that’s not only possible in SPAs, but also scalable, reliable, and effective.

SPAs are here to stay, and personalization tools must adapt. By rethinking view management and conversion tracking, our team at Accrease has helped clients work the full potential of Adobe Target in SPA environments.

If your organization is facing similar challenges, we’d be happy to share our approach and explore how to make personalization more scalable and marketer-friendly in your setup. Contact us here

Acknowledgements

About the Author
Santosh Kumar, has more than a decade of experience in Digital Marketing and the Adobe stack. He holds more Adobe certifications than is humanly possible. When no one else can fix it, you call for Santosh.

A special thanks to Kurian George for his support in investigating these challenges, co-developing solutions, and ensuring smooth implementation. His expertise was essential in making these results possible.

February 11, 2025

Are Collapsed Customer Profiles Hurting Your Marketing? How Identity Optimization Can Fix the Problem.

Imagine pouring endless hours and resources into designing personalized marketing campaigns only to discover they’re based on flawed customer profiles….It’s like throwing darts in the dark. In today’s multi-device, hyperconnected world, this is an all-too-common scenario.  

Shared devices and fragmented data inputs can lead to “collapsed profiles,” where behaviours and preferences from multiple users are mistakenly merged into one. The result? Wasted marketing budgets, diluted brand experiences, and missed opportunities to connect meaningfully with your audience. 

But how can your businesses rise above this challenge? In the following blog post, Senior Consultant Santosh Kumar will show you the hidden cost of collapsed profiles and how advancements in  Identity Stitching are revolutionizing the marketing game. 

The cost of collapsed profiles 

The challenge of maintaining accurate customer profiles has long been a headache for marketers striving for precision. Consider this: A father and son share a tablet. The father’s browsing history includes luxury watches, while the son spends his time looking up video games. If these distinct behaviors are collapsed into a single profile, the resulting data is an unhelpful mix. This misrepresentation makes it nearly impossible to deliver truly personalized marketing messages, leading to missed opportunities and diminished customer engagement. 

Understanding collapsed identity graphs 

To visualize the issue, let’s look at two types of identity graphs: 

Healthy identity graph: 

In a well-maintained graph, each CRM ID (customer identifier) is correctly associated with multiple ECIDs (device/browser identifiers). This ensures all behaviors across devices are tied to the same individual. 

Collapsed identity graph: 

In contrast, a corrupted graph features multiple CRM IDs and ECIDs tied to the same profile. This creates confusion and undermines the foundation of personalized marketing. 

Breaking through with Advanced Identity Stitching 

The good news? Advancements in identity stitching are revolutionizing how we understand and engage with our audiences. With Adobe’s Identity Optimization algorithm, marketers can finally combat profile collapse and regain control over their data. 

A new era of identity stitching 

Adobe’s innovative algorithm leverages both deterministic (exact match) and probabilistic (best guess) techniques to create accurate identity graphs. This hybrid approach ensures each individual is represented by a singular, reliable profile no matter how complex their digital footprint. 

Key features driving its success include: 

  1. Unique identifiers 
    By prioritizing stable identifiers like CRM IDs over transient ones like cookies, businesses can dramatically reduce the likelihood of corrupted profiles. 
  1. Adaptive algorithms 
    Adobe’s machine learning-powered system continuously evolves, refining its ability to differentiate between users and devices over time.
  2. Data hierarchy
    Marketers can define the priority of various identifiers, ensuring the most reliable data sources take precedence when building profiles.

Real-Time insights for dynamic marketing

One of the standout features of Adobe’s Identity Optimization is its real-time functionality. Marketers can adapt campaigns on the fly, leveraging up-to-date profiles that reflect current user behaviors. This agility is critical in a competitive digital landscape where timely and relevant messaging can make all the difference. 

Implementing Adobe’s Identity Optimization 

Excited to take your marketing efforts to the next level? Adobe’s Identity Optimization is currently in Limited Availability, but here’s how you can get started once it’s rolled out in full: 

Step-by-Step Guide 

  1. Understand your identities. 
    Navigate to AEP > Sandbox > Customer > Identities > Browse. Identify key identifiers like CRM IDs and ECIDs. The rest of the default identities are not in use.  

2. Simulate the graph.  

Optionally you may navigate to “Graph Simulation” tab and play with the configuration to understand how the new solution help not corrupting the profiles. The order of the things you do is highlighted in the screenshot below. 

3. Set up the graph. 
Finally, go back to the "Browse" tab and click the settings button in the top right corner to access the setup options. Here, start by ordering your cross-device IDs, such as CRM ID, phone number, etc. Next, specify whether each identity is unique. In this example, we've marked the CRM ID as unique to ensure only one CRM ID is added to the identity graph, preventing profile collapse. 

4. Adjust browser identities.  

Once completed, scroll down to see the list of browser identities, such as ECID, which also need to be ordered. 

You can use your mouse to click and hold an identity, then drag it up or down to adjust its position in the list. Note that cookie namespaces cannot be marked as unique within a graph, as it's not feasible in real-time scenarios.

5. Save and activate. 

In the final step, review the order of your identities and click the "Finish" button. After saving the configuration, it may take some time for the changes to activate. 

Challenges and opportunities 

While this innovation is a game-changer, it’s not without its limitations.  

Historical collapses: Past corrupted profiles won’t be automatically fixed. Businesses may need to work with Adobe to clean up legacy data. 

Data representation gaps: Underserved user groups highlight the need for diverse, comprehensive data collection. 

However, these challenges present an opportunity for growth. Businesses that invest in refining their data strategies today will be well-positioned to leverage these advancements fully. The payoff? Highly personalized customer experiences that drive engagement and loyalty. 

What this means for marketers 

For marketers, identity optimization represents a game-changing opportunity to: 

Enhance personalization: Craft messages tailored to individuals, not blurry profiles. 

Boost ROI: Stop wasting budget on inaccurate targeting. 

Build trust: Deliver relevant experiences that show you truly understand your audience. 

Let’s discuss. 

Have you encountered challenges with collapsed profiles? We’d love to hear your thoughts and help you out. 

About the Author
Santosh has more than a decades experience in within Digital Marketing and the Adobe stack. He holds more Adobe certifications than what's human possible. When no one else can fix it, you call for Santosh.

Troubleshooting & FAQs

As you implement Adobe’s Identity Optimization, you will wihtout a doubt run into questions or technical challenges. Check out Adobe’s official documentation or contact us and request to get passed through to Santosh 😉

February 22, 2024

Top Picks for the Adobe Summit ’24 from Our Experts

Summit US is around the corner, so like everyone else, we here at Accrease prepare for which sessions are relevant for us and what announcements we will see to ensure we can include these when working with our clients. 

If you have yet to hear, then 'rumours' are that there won't be a Summit in London this year. This only means that there will be more focus on the US one and potentially more EMEA-based clients attending the US one.

Currently, 249 sessions are available if you're attending in person and 28 online. As in previous years, I expect recordings to be available for everyone post-summit. So regardless of whether you'll be attending in person or expecting to watch the recordings afterwards, I've asked our Specialists which sessions they would recommend to help you prioritise in the large selection of sessions. So, let's jump straight into the recommendations:

Fulton Yancy

He has experience in digital analytics since 1996 and spent the last decade getting his hands dirty digging for insights in Adobe Analytics. Remember to check out his blog on www.webbanalys.se.

Session: 
2024 Adobe Analytics Rockstars: Top Tips and Tricks [S104]

Reason: 
Meeting the rockstars of Adobe Analytics is always a great way to boost inspiration and learn new ways to work with Adobe Analytics. This has always been my all-time favourite session at Summit as - regardless of my experience in the tool - I always walk away having learned something new. You should definitely take advantage of this session!

Jonas Nielsen

Former Consulting Manager at Adobe and Founder of Accrease. Jonas is a Swiss army knife for the Adobe stack, particularly AEP, and often finds himself by a whiteboard drawing the client's architecture around AEP.

Session: 
How Adobe Real-Time CDP Impacts Full Funnel Marketing [VS513]

Reason: 
I usually focus on sessions that give a deeper understanding of the architecture behind the solutions. I tried looking for a relevant one this year but found no one. Instead, I personally find this session really interesting. 

Often, a CDP is only thought of as something for bought media strategies, but to take full advantage of a CDP, it needs to be thought into the entire marketing funnel.

Sharath Kumar

Former Consultant at Adobe - Well experienced in Adobe Campaign and migrations to/deployments of Adobe Journey Optimizer.

Sessions: 
Adobe Journey Optimizer Roadmap and Innovations [S801] & 
Making the Leap with Generative AI to Scale Personalised Experiences [S911]

Reason: 
At Accrease, we collaborate directly with the product teams for the different solutions we support. And especially when it comes to AJO, as the solution is evolving extremely fast with new releases every month. They can only give us some insights, so the roadmap sessions at Summit are my favourite ones. Understanding the product's direction will allow us to ensure the implementations we plan take any new features into account.

I find optimising the flows and scaling the personalisation using AI fascinating, so my second recommendation is precisely this. Many clients we work with don't have huge teams, so the efficiency and scaling of personalisation come down to working smarter, and I have no doubt AI is a big part of the solution for this.

Samuel Rajkumar

Marketo specialist unlike any other. Experienced in building digital strategies using technologies like CDP and combining them with Marketing Automation.

Sessions: 
Adobe on Adobe: Marketo Engage and Best Practices for Global Marketing Ops [VS215] & 
GenAI-Powered B2B Marketing: Crafting a Roadmap to Excellence [S205]

Reason: 
I always find it inspiring to hear from clients about what they have achieved using Adobe Stack. What I find even more inspiring is the Adobe on Adobe sessions. I recall they started doing these years ago, and I love seeing how Adobe are using their own solutions - simply because they know all the ins and outs of its products to ensure it fully gains the most from them.

This is an excellent opportunity to gain insights directly from industry experts who have successfully set up a Global Marketing Ops.

My second recommendation is similar to Sharath's. Regardless of whether you have a large team, AI will be part of your workflow one way or the other. I don't necessarily believe that AI will be able to fully automate personalisation or something similar in the near future. But I 100% believe AI will make you and your team more efficient.

Jonas Guldberg Pabst

Campaign specialist, who was raised - not by wolves - but alongside Neolane, which later became Adobe Campaign. A companion of his ever since.

Sessions: 
Unveiling Adobe Campaign's New User Interface and Innovative Features [S803] & 
Scaling Customer Journey Capabilities for Global Digital Experiences [S809]

Reason:
Adobe has announced that they will unveil their new Campaign v8 web user interface (UI) as part of Summit. These two sessions introduce the new interface and how to leverage the power to build customer experiences. As for the new UI, you may have noticed that the documentation has been updated with a few previews.

The new interface is a revolution for marketers and is a good blend of the more sophisticated UI from Campaign Classic and the simple marketer-friendly UI from Campaign Standard.

It will embrace new powerful features and help you elevate campaigns, build audiences, and unleash the true potential of cross-channel experiences through a user-friendly drag-and-drop interface.

This is super exciting news. We here at Accrease look forward to introducing all the new features it gives our customers.

Kasper Andersen

Former Manager at Adobe for Proof of Concepts in EMEA & JAPAC. He has been working with Adobe Analytics since it was known as SiteCatalyst; however, his favourite solution is and always will be Adobe Target.

Session: 
Top Tips to Maximise Value with Adobe Target [VS817] & 
How Adobe.com uses AI-powered Recommendations for Personalization at Scale [S814]

Reason:
With Target as my favourite solution, how can I recommend anything besides Target sessions? 

The top tips session is my clear winner - if I could watch only one session, it would be this one. Ryan Roberts is a former colleague and friend, and he's been doing similar sessions in previous years and always received high ratings from the attendees. I love his sessions.
During my time with Adobe, I ran a similar session at Summit in London. Needless to say, it was with great sparring and input from Ryan.

Just like Samuel, I enjoy watching the Adobe on Adobe sessions. Combine that with AI, and you have my second favourite session. Not many Adobe Target customers have Target Premium, which allows for using the Recommendation add-on. Most think that it is only relevant if you're an e-commerce site. However, that certainly isn't the case. I'm working with B2B companies that have successfully promoted training videos and FAQ articles.

There you go. These were the recommendations. Check back after Summit, as we'll be providing a summary of the biggest and most important takeaways.

June 19, 2023

Zero-Party Data: The Game Changer in Customer Relationships You Can’t Afford to Ignore

Discover the power of zero-party data in transforming customer relationships. This blog explores the definition of zero-party data, its benefits, and how businesses can leverage it to create personalized experiences. Learn how targeted campaigns, deeper customer insights, and increased trust can revolutionize your marketing strategy.

Read more

April 5, 2023

Adobe Summit 2023 US: what not to miss in the Year of Disruption

It´s been two weeks since Adobe Summit 2023 kicked off in Las Vegas, and I have reflected on how the announcements made at the Summit and general trends in the market will affect us this and the following years. 

Adobe Experience Platform (AEP) was in focus, as expected, with several announcements on new features and innovations. There are many exciting opportunities within AEP to take advantage of, but even more interesting is the direction in which technology development moves and how businesses evolve to facilitate how their teams work with personalization.

It’s clear that 2023 is the year of disruption. In this blog, I will dig deeper into these trends, the sneaks (Adobe lingo for projects that aren´t in development yet but could if it is in demand), and examine the key takeaways from the US Summit 2023. Follow along on the ride.

Generative artificial intelligence: Firefly and Adobe Sensei GenAI

One of the most significant announcements at the Summit this year was the launch of Adobe Firefly. It’s a solution built on generative AI models that enables content creators and marketers to play around with creatives and content using descriptive text.

What caught my interest the most was the mention of Firefly in relation to Adobe's partnership with Microsoft and OpenAI, which, considering Microsoft's plans for Bing (incorporating ChatGPT), could become a game changer in the way people use search engines in the future.

Adobe Firefly
Currently a Beta, it´s available to test with Adobe Experience Manager (AEM), but Adobe states they plan to expand the integration to other Adobe solutions soon.

However, let´s not get ahead of ourselves. More relevant opportunities in the close future would be for brands using Adobe Experience Manager (AEM) to test Firefly for AI-generated content based on your brand's imagery and publicly available stock. Adobe also states they will have strict safety processes to ensure the content is brand compliant.

On a related note, Adobe Sensei has been around for ages and has helped us as marketers make more informed decisions across our marketing activities (ranging from analysis to performance forecasting and much more). However, with generative AI, Adobe has further developed Sensei and branded it Adobe Sensei GenAI, which will be applied to Adobe Experience Cloud and AEP to work with text, content, insights, analytics, and audiences across your customer journey efforts.

With the launch of Adobe Firefly and the further development of Adobe Sensei GenAI, the impact on the marketing industry will undoubtedly be significant. These new tools offer exciting possibilities for content creators and marketers. As they continue to evolve and improve, we can expect to see even more innovative solutions to the challenges of the modern marketing landscape.

AI in Adobe Experience Platform

​​​​While generative AI is a new and exciting technology, Adobe has also integrated Adobe Sensei (is it dull to call it "ordinary AI"?) into AEP. This incorporation allows for increasing utilization of AI with solutions built on AEP, such as Customer Journey Analytics (CJA) and Real-Time Customer Data Platform (RTCDP) for analysis, performance insights, and smart segmentation. Here are a few exciting examples:

1. AI-driven propensity scores for predicting user conversion

Adobe Sensei incorporates machine learning algorithms to generate propensity scores which will be useful for predicting the propensity of a user converting or churning, including insights into the customer profile attributes that are driving the prediction. This scoring summarizes user propensity, splits them into low, medium, and high propensity groups, and lists the top influential attributes within each group.

2. Lookalike modeling for audience targeting

Lookalike modeling (Beta) enables marketers to target users most similar to their target audience. This function is similar to the one found in Audience Manager and many other media solutions.

3. Predictive lead and account scoring for B2B marketers

B2B marketers can use predictive lead and account scoring to engage with prospective buyers to enhance buyer engagement.

4. Attribution AI for analyzing customer journey touchpoints

Attribution AI breaks down each marketing touchpoint, such as email, search, and display ads. The report provides an overview of the conversion path, the Influenced score (the fraction of the conversion that each marketing touchpoint is responsible for), and the incremental score (the amount of marginal impact directly caused by the marketing touchpoint).

5. Adobe Mix Modeler for holistic marketing planning

Adobe Mix Modeler is a significant step towards incorporating paid media analysis into AEP, along with Attribution AI mentioned above. It allows marketers to integrate data from various sources, such as local and national publishers, social media platforms, search engines, and owned channels. It provides a holistic tool for measurement, reporting, and marketing planning. 

It will be interesting to see how this develops for Adobe Advertising Cloud (AdCloud), which has never been invited to the party when discussing Experience Cloud. While AdCloud currently has integrations with Adobe Analytics and Audience Manager, the possibilities of developing this solution towards AEP integrations, or even better, building native AEP Advertising bid management capabilities, are truly exciting. I am looking forward to seeing how this develops and the potential it brings for enhancing Adobe's advertising capabilities.

6. Product Analytics for combining product and marketing insights

Product Analytics, built on AEP and CJA, combines product and marketing insights to analyze users and determine product growth over time. It seamlessly integrates with RTCDP and AJO for quick and easy activation to drive more targeted personalization. It combines multiple data types, such as CRM, web analytics, transactional, and paid media data, so it's useful for various organizational roles, from data analysts to marketers and product developers.

It is an incredible addition to Adobe's already strong analytics portfolio and could encourage more robust collaboration between product development and marketing teams.

7. #ProjectPathWise for Adobe Journey Optimizer

Suppose Adobe develops the sneak #ProjectPathWise. In that case, Sensei GenAI will be applied to Adobe Journey Optimizer (AJO) for profile engagement predictions across the customer journey, journey orchestration recommendations, and quick and straightforward application of these recommendations. Now that would be a ground-breaking feature.

These examples are a few that show how AI and ML can shape how we create and optimize customer journeys. To explore the full potential of AEP and AI, we recommend attending the Adobe Summit in London in June or watching the digital sessions from the US Summit.

A new era of Collaboration

Although the advancements in technology showcased are exciting, how businesses work with this technology was also a hot topic at this year’s Summit. 2023 is the year of disruption for sure. 

With challenges like the depreciation of third-party cookies, privacy regulations, customer expectations, and technology such as AEP and its AI-based solutions, a shift in how we work is required. Businesses investing in customer journey development face a significant digital transition, requiring IT and marketing departments to work more closely together than ever.

An interesting takeaway was that although many businesses agree a key challenge in that transition is the lack of single executive ownership in the organization, there does not seem to be one clear preferred operating model for enabling personalization. While some organizations prefer building a Center of Excellence (CoE) for personalization, others opt for a cross-functional agile approach or dedicated areas of responsibility within each department. 

As businesses, their people, and their cultures are inherently unique, each company must find its own way by (partially) trial and error. Nonetheless, organizations amid the transition do have a few clear recommendations:

1. Define and assign a single executive owner

It is vital to assign a single executive owner to provide a common direction and ensure all teams are aligned and working toward the same goals.

2. Involve stakeholders early

Early involvement of stakeholders is crucial to building trust and empowering people to feel involved in the transition process.

3. Make sure you have the right team.

Having the right team in place not only applies to the first phase of the transition, during the implementation of the technology but also to ensure you have the right people utilizing the technology. These individuals should feel inspired by what they do and be curious to learn and develop outside of their area of expertise.

4. Don´t overthink silos.

Although silos are prevalent in large organizations, paying attention to how they impact the quality of customer journeys is essential. If the impact is significant enough, it is necessary to prioritize addressing them. 

5. Don´t expect to work in the same way as before.

Hiring more people to deliver across all areas of customer journey orchestration may be necessary. As the industry continues to evolve, businesses must adapt to thrive in this new era of collaboration.

6. Celebrate your wins! 🎉

Even the small ones. Because this can be a long ride, and it’s all too easy to get caught up in our day-to-day challenges.

Takeaways: Leveraging AI for Personalization with Adobe Experience Platform

The capabilities for building and analyzing cross-channel customer journeys based on a unified customer profile, ensuring excellent data governance and compliance, and creating a future-proof marketing rig without 3rd party cookies are exciting. We emphasize these key features to our customers when they explore AEP and its native solutions.

However, leveraging AI to its full potential is essential to take your organization’s personalization efforts to the next level

If used correctly, the new AI-based innovations announced at Summit will empower marketers to make more informed decisions and gain advanced insights. But adopting innovative technology like AEP and AI capabilities built into AEO requires more than just a tech upgrade. Companies must facilitate cross-functional collaboration, encourage experimentation and learning, and create a culture of agility to succeed. Those who do will be the ones to watch in the coming years.

Final thoughts

The Adobe Summit US 2023 showcased exciting announcements in AI, content, and collaboration. The launch of Adobe Firefly and Adobe Sensei GenAI provides innovative solutions for content creators and marketers. At the same time, AI integrations in AEP offer exciting possibilities for businesses to improve customer experiences. With the further development of these tools and solutions, the marketing industry can expect to see more innovative solutions to the challenges of the modern marketing landscape.

To explore the full potential of AEP and AI, we recommend attending the Adobe Summit in London in June. Accrease will be there, and we would be delighted to meet you in-between sessions. Let us know if you will attend by joining this LinkedIn event.

Accrease @ Adobe Summit London

March 28, 2023

Personalizing the Customer Journey: The Power of Lead Lifecycle Model and Scoring Model

Providing an exceptional customer experience is crucial for the success of any business, and lead lifecycle and scoring models can help achieve this. These strategies offer a comprehensive approach to understanding and engaging with potential customers, providing valuable insights into their behavior and preferences to create a more personalized and effective customer journey.

In this post, we'll explore the key benefits of lead lifecycle and scoring models and provide steps on how to implement these strategies as a foundation for creating a better customer experience.

Benefits of lead lifecycle and lead scoring models

Implementing a lead lifecycle and scoring model can offer several benefits, including:

🤝 Improved marketing and sales alignment
🔮 Better customer insights
📬 Personalized and consistent communication
📈 Higher conversion rates, ROI, and increased sales
😀 Improved customer retention

Implementing a lead lifecycle and scoring model can offer a range of benefits to businesses looking to optimize their marketing and sales efforts. One significant advantage is improved alignment between marketing and sales teams. By providing a clear framework for lead handoff and ensuring that both teams work towards the same goals, a lead lifecycle and scoring model can help bridge the gap between the two departments. Assigning scores to leads based on their engagement and fit will make the lead qualification process more efficient, and sales and marketing can prioritize efforts on leads more likely to convert.

In addition to better alignment, businesses can gain valuable customer insights by implementing a lead lifecycle model. By tracking and analyzing leads throughout the buying journey, businesses can gain valuable insights into their customer's behavior and preferences, allowing them to tailor their marketing and sales strategies more effectively.

Personalization is another key benefit of lead lifecycle and scoring models and a key driver for customer satisfaction. By understanding where a customer is in the journey, businesses can tailor their messaging to provide the right information at the right time based on the customers' interests and needs. This not only improves the customer experience but also helps build trust and rapport with the customer, improving retention efforts.

By focusing on leads that are most likely to convert, businesses can increase their conversion rates, generate more revenue from sales and marketing efforts, and improve their ROI. The lead qualification process becomes more efficient by assigning scores to leads based on their engagement and fit, enabling sales and marketing teams to prioritize their efforts on leads more likely to convert.

Ultimately, the goal for a business is to increase sales. By identifying the most promising leads and targeting efforts accordingly, businesses can increase their win rates and close deals faster, resulting in increased revenue and profitability. A clear and cohesive journey from lead to customer can significantly improve the overall experience, leading to a more positive perception of the business and increasing the likelihood of repeat business.

How to implement lead lifecycle and lead scoring strategies

Implementing a lead lifecycle and scoring model can be a game-changer for businesses looking to optimize their marketing and sales efforts. However, it can be challenging to know where to start. Below are some steps for implementing lead lifecycle and scoring strategies:

1. Identify and define the lead lifecycle stages

Start by identifying the stages of your lead lifecycle, such as lead capture, marketing qualified, sales qualified, and lead nurturing. Assign specific criteria for each stage, such as lead source, engagement level, and behavioral actions. This will help you create a structured framework for managing and prioritizing leads.

2. Assign lead scores

Use lead scoring to assign scores to each lead based on their behavior and level of engagement with your brand and their fit with your ideal customer profile. For example, a lead who visits your website and downloads a whitepaper might score higher than a lead who simply opens an email. Lead scoring helps businesses identify the most promising leads and prioritize their efforts accordingly.

3. Use automation

Implement marketing automation tools to help streamline the lead lifecycle process. For example, set up automated workflows to send targeted messages to leads based on their stage in the lifecycle and lead score. Automation can help move leads through the different stages of your lead lifecycle, save time, and improve the efficiency of your lead qualification process.

4. Monitor and analyze

Track and analyze customer interactions at each stage of the lifecycle to gain valuable insights into their behavior and preferences. Use this information to refine your lead scoring and communication strategies. Continuously monitoring and analyzing your lead data can help identify trends and inform ongoing improvements.

5. Personalize communication

Use lead lifecycle and scoring data to personalize your communication with leads. Tailor your messaging to their interests and needs, and provide relevant content and offers to keep them engaged. Personalization is key to building strong relationships with leads and improving conversion rates.

6. Continuous optimization:

Optimize your lead lifecycle and scoring strategies based on performance data. Identify areas for improvement and make adjustments to ensure you are providing the best possible customer experience. Continuously testing and refining your strategies will help ensure that you are meeting your business goals.

Remember, lead lifecycle and scoring strategies will vary depending on your business and industry, so it's important to adapt these steps to your specific needs and goals. By implementing a lead lifecycle and scoring model, businesses can improve their marketing and sales alignment, gain valuable customer insights, and improve conversion rates, ultimately leading to increased revenue and profitability.

Using Adobe Marketo Engage?

We are currently testing a new Maketo Engage Audit service - learn more and submit your interest 👇

Accrease logo

Bring your data to life with Accrease - Adobe Solution Partner Gold.

linkedin

CONTACT

[email protected]
DK: +45 89 871 101

SE: +46 8 446 891 01
NO: +47 75 98 71 01

 

CONTACT

[email protected]
DK: +45 89 871 101

SE: +46 8 446 891 01
NO: +47 75 98 71 01

 

HEADQUARTER

Accrease ApS
Store Kongens Gade 40G 4 1264 København K Denmark

 

© 2025 Acrease ApS | All rights reserved    |    Privacy policy   |   CVR: 37539082