Showing posts with label Sitecore Cloud. Show all posts
Showing posts with label Sitecore Cloud. Show all posts

Monday, 13 October 2025

Understanding Sitecore CDP: A Beginner’s Guide to Customer Data Platforms

October 13, 2025 0

 


What is a Customer Data Platform (CDP)?

A Customer Data Platform (CDP) is a tool that collects data from multiple sources  to create a single centralized customer database.

In recent years, customer data platforms (CDP) become a hot topic. Brands are set to create strong relationships with their customers through personalized and meaningful digital experiences.

In this blog, we’ll cover the basics of Sitecore CDP and user interface in Sitecore portal.

What is Sitecore CDP?

Sitecore CDP is a customer data platform by Sitecore. It was introduced after Sitecore acquired Boxever in 2021, which later changed to Sitecore CDP..

Sitecore CDP captures, integrates, unifies, segments, and activates all customer data and creates seamless and consistent customer experiences. 

Sitecore CDP Architecture

The architecture of Sitecore CDP supports real-time data collection, processing, segmentation, and activation across different channels.

It is a cloud-native, API-first platform that integrates seamlessly with other Sitecore products and third-party systems, making it highly flexible and scalable.


Why Sitecore CDP?

Sitecore CDP helps business to deliver the next best experience, offer, or action for each user, so  organizations can build brand loyalty and revenue.

It achieves this through three main capabilities:
  1. Data Management
  2. Decisioning & Experimentation
  3. Orchestration

1. Data Management

Sitecore CDP helps you build a complete understanding of your customers by collecting and combining data from multiple sources, such as websites, mobile apps, and third-party systems.

Key Features:

  • Track every click, search, tap, and purchase signal
  • Consolidate all customer data in one place
  • Build customer profiles and segments with real-time data
  • Seamlessly integrate data across the entire business

2. Decisioning & Experimentation

Sitecore CDP enables you to predict, test, and optimize customer interactions across every product and digital experience. It provides a visual interface for creating and managing decision strategies.

Key Features:

  • Use predictive analytics and AI for smarter interactions
  • Combine real-time context with customer and business data
  • Make powerful data-driven decisions
  • Run A/B tests for features and experiences across any channel

3. Orchestration

With Sitecore CDP, you can deliver more connected and personalized experiences across all digital channels. Its orchestration capabilities ensure that each message reaches the right customer at the right time.

Key Capabilities:

  • Manage every interaction across all digital touchpoints
  • Create seamless, cross-channel customer experiences
  • Deliver hyper-relevant, personalized messages
  • Trigger timely actions to guide customers through their journey

User Interface in the Sitecore CDP Cloud Portal

The Sitecore CDP portal is organized into several key sections:


  • Guests
  • Batch Segments
  • Audience Export
  • Dashboards
  • Data Browser


Guests

This section displays the most recent 100 guests and updates every 24 hours.

There are three main types of guests:

Customer: A guest who has provided enough identity information to meet the organization’s identity rules.

Visitor: A guest who has provided partial or insufficient identity information.

Retired: A guest profile that has been archived because its data has been merged with another profile. Retired profiles cannot be accessed.




Batch Segments

Sitecore Batch Segments allow you to create large-scale custom segments using any attributes passed to the CDP. You can combine real-time behavior with historical customer data to build meaningful audience groups.


Audience Export

The Audience Export feature lets you export audiences built from segments. This exported data can be used to activate audiences in external marketing platforms or systems outside Sitecore CDP.




Dashboards

The Dashboards section provides a variety of reports and visual analytics to help you monitor and analyze your customer data effectively.




Data Browser

This enables to retrieve the data based on the fields/conditions available.



Conclusion 

This is the first post in my Sitecore CDP series, where we explored the the basics of Sitecore CDP and how the UI looks in the Sitecore Cloud Portal. In the upcoming blogs, we’ll dive deeper into more advanced topics. Stay tuned for the next post in this series!

Monday, 25 August 2025

Migrating from Sitecore XM to XM Cloud Using the Migration Tool GUI

August 25, 2025 0

 



Sitecore XM to XM Cloud Migration tool helps to move content, media and user data from a on-prem Sitecore Experience Manager (XM) instance to a target XM Cloud environment. It is middleware that simplifies the task of entering and selecting data, and orchestrating the migration. The tool is available in both a Graphical User Interface (GUI) tool, and a Command Line Interface (CLI) comprising operations that you can embed into your own tooling.

In my previous blog, I discussed about complete analysis a developer should perform before migrating from Sitecore XP/XM to XM Cloud. In our today's blog, I'll discuss about the Sitecore XM to XM Cloud Migration tool Graphical User Interface features and process.

The current version is v2.1.71. Current supported Sitecore XM versions are 9.1+ and 10.0+

Key Features

  • Dual support for GUI and CLI.

  • TreeView selection for choosing content and media items.

  • Media migration via CDN or on-premise MSSQL database binaries.

  • User migration directly into the Sitecore Cloud Portal.

Prerequisites

Before starting, ensure you have:

  • A Sitecore XM on-premise instance with content, media, or users.

  • A fresh XM Cloud environment.

  • Compatible OS: Windows Server 2022, Windows 10 (64-bit), or Windows 11 (64-bit).

What’s Inside the ZIP Package?

The migration tool’s ZIP file includes:

  • appsettings.json – configuration file.

  • Executable (.exe) to run the application.

  • SitecorePackage.zip – required for setup.

  • Logs folder.

  • README.md – highly recommended to read before starting.

  • Docs folder with details on configuration, dependencies, FAQs, and known issues.



Initial Setup

  1. Upload and install the SitecorePackage.zip file into your on-prem XM application.



  2. After installation, a new _MigrationHarness folder will appear in your XM root directory.


  3. Update the Web.config file to include specific <assemblyBinding> entries (for assemblies like protobuf-net, System.Buffers, System.Memory, etc.).

    <probing privatePath="_MigrationHarness/bin" />

              <dependentAssembly>

                <assemblyIdentity name="protobuf-net" publicKeyToken="257b51d87d2e4d67" />

                <codeBase version="2.4.0.0" href="_MigrationHarness/bin/protobuf-net.dll" />

              </dependentAssembly>

              <dependentAssembly>

                <assemblyIdentity name="Microsoft.Extensions.Logging.Abstractions" publicKeyToken="adb9793829ddae60" />

                <codeBase version="6.0.0.0" href="_MigrationHarness/bin/Microsoft.Extensions.Logging.Abstractions.dll" />

              </dependentAssembly>

              <dependentAssembly>

                <assemblyIdentity name="System.Buffers" publicKeyToken="cc7b13ffcd2ddd51" />

                <codeBase version="4.0.2.0" href="_MigrationHarness/bin/System.Buffers.dll" />

              </dependentAssembly>

              <dependentAssembly>

                <assemblyIdentity name="System.Memory" publicKeyToken="cc7b13ffcd2ddd51" />

                <codeBase version="4.0.1.2" href="_MigrationHarness/bin/System.Memory.dll" />

                <bindingRedirect oldVersion="4.0.1.1" newVersion="4.0.1.2" />

              </dependentAssembly>

              <dependentAssembly>

                <assemblyIdentity name="System.Runtime.CompilerServices.Unsafe" publicKeyToken="b03f5f7f11d50a3a" />

                <codeBase version="6.0.0.0" href="_MigrationHarness/bin/System.Runtime.CompilerServices.Unsafe.dll" />

                <bindingRedirect oldVersion="4.0.4.1" newVersion="6.0.0.0" />

              </dependentAssembly>


  4. Adjust the appsettings.json file if needed, especially the line:

    "SitecoreCmMigrationHandlerFileRelativePath": "_MigrationHarness/MigrationHandler.ashx"

Running the Migration GUI

  1. Launch XMMigrationGUI.exe and select the data types to migrate (Content, Media, and Users if required).


  2. Click on Next and you can see the Source configuration- Sitecore XM/XP on premises. 

    Please provide CM Base URL, Username and Password.



  3. Click on Next button and provide the XM Cloud settings. Please follow the instruction to find the specific data for each fields.




  4. You can get the XM Cloud Envionment related information from the enviornment (in our case Development) details section.



  5. If credentials are not already available, create new Cloud Portal credentials.


  6. Use the Content Tree view to select the items and Media you wish to migrate.


  7. Click on Next, and provide the credential to choose the users you want to migrate.


  8. Click the Next button and configure the Users Migration Target Settings. Click the Connect to Sitecore Cloud button and follow the instructions. A new browser window will be opened where you should log in as a Sitecore Portal User and confirm the code that you see in the Migration tool.


  9. As the last step for users configuration, choose an environment where you would like to invite users under the chosen organization.



  10. Review the migration summary and start the process.


  11. Once complete, your content, media, and users will be successfully migrated to your XM Cloud environment.

    On-Prem XM :



    XM Cloud



Conclusion

The Sitecore XM to XM Cloud Migration Tool (GUI) provides a guided approach for migrating data from on-premise to the cloud. By supporting both content and user migration, it eliminates much of the complexity involved in traditional migration methods. Whether you’re performing a quick lift-and-shift or preparing for a larger digital transformation, this tool ensures a smooth, reliable, and efficient migration experience.

References

1. XM Cloud Tools and Resources