πŸ“‹ Microsoft Entra Documentation Changes

Daily summary for changes since December 14th 2025, 7:45 PM PST

Report generated on December 15th 2025, 7:45 PM PST

πŸ“Š Summary

7
Total Commits
0
New Files
3
Modified Files
0
Deleted Files
5
Contributors

πŸ“ Modified Documentation Files

+29 / -13 lines changed
Commit: Making updates to replace PR10494
Changes:
Before
After
ms.service: entra-id
ms.subservice: app-provisioning
ms.topic: reference
ms.date: 03/04/2025
ms.author: jfields
ms.reviewer: chmutali
ai-usage: ai-assisted
By using JSONPath transformation, you can customize the behavior of the Microsoft Entra provisioning app to retrieve custom attributes and handle scenarios such as rehiring, worker conversion and global assignment.
 
This section covers how you can customize the provisioning app for the following HR scenarios:
* [Retrieving more attributes](#retrieving-more-attributes)
* [Retrieving custom attributes](#retrieving-custom-attributes)
* [Mapping employment status to account status](#mapping-employment-status-to-account-status)
* [Handling worker conversion and rehiring scenarios](#handling-worker-conversion-and-rehiring-scenarios)
* [Retrieving current active employment record](#retrieving-current-active-employment-record)
* [Handling global assignment scenario](#handling-global-assignment-scenario)
* [Handling concurrent jobs scenario](#handling-concurrent-jobs-scenario)
* [Retrieving position details](#retrieving-position-details)
* [Provisioning users in the Onboarding module](#provisioning-users-in-the-onboarding-module)
* [Enabling OData API Audit logs in SuccessFactors](#enabling-odata-api-audit-logs-in-successfactors)
ms.service: entra-id
ms.subservice: app-provisioning
ms.topic: reference
ms.date: 12/15/2025
ms.author: jfields
ms.reviewer: chmutali
ai-usage: ai-assisted
By using JSONPath transformation, you can customize the behavior of the Microsoft Entra provisioning app to retrieve custom attributes and handle scenarios such as rehiring, worker conversion and global assignment.
 
This section covers how you can customize the provisioning app for the following HR scenarios:
- [How Microsoft Entra provisioning integrates with SAP SuccessFactors](#how-microsoft-entra-provisioning-integrates-with-sap-successfactors)
- [Establishing connectivity](#establishing-connectivity)
- [Supported entities](#supported-entities)
- [How full sync works](#how-full-sync-works)
- [How incremental sync works](#how-incremental-sync-works)
- [How pre-hire processing works](#how-pre-hire-processing-works)
- [Reading attribute data](#reading-attribute-data)
- [Handling different HR scenarios](#handling-different-hr-scenarios)
- [Retrieving more attributes](#retrieving-more-attributes)
- [Retrieving custom attributes](#retrieving-custom-attributes)
+4 / -4 lines changed
Commit: Revise PowerShell commands for app deletion
Changes:
Before
After
2. Now delete the old application and object using the following PowerShell cmdlets:
 
```powershell
$app = Get-MgApplication | Where-Object { $_.IdentifierUris -eq 'https://sync.aaddc.activedirectory.windowsazure.com' }
Remove-MgApplication -ApplicationIdΒ $app.Id
$sp = Get-MgServicePrincipal -Filter "DisplayName eq 'Azure AD Domain Services Sync'"
Remove-MgServicePrincipal -ServicePrincipalId $sp.Id
```
 
After you delete both applications, the Azure platform automatically recreates them and tries to resume password synchronization. The managed domain's health automatically updates itself within two hours and removes the alert.
2. Now delete the old application and object using the following PowerShell cmdlets:
 
```powershell
Install-Module Microsoft.Graph -Scope CurrentUser
Connect-MgGraph -Scopes "Application.ReadWrite.All"
$app = Get-MgApplication -Filter "DisplayName eq 'Azure AD Domain Services Sync'"
Remove-MgApplication -ApplicationId $app.Id
```
 
After you delete both applications, the Azure platform automatically recreates them and tries to resume password synchronization. The managed domain's health automatically updates itself within two hours and removes the alert.
+2 / -2 lines changed
Commit: Typo correction.
Changes:
Before
After
---
title: Just-In-Time Password Migration to Microsoft Entra External ID (Preview) (Preview)
description: Learn how to migrate passwords from another identity provider to Microsoft Entra External ID using Just-In-Time (JIT) Migration.
 
author: garrodonnell
 
## Customer intent: As a developer or administrator responsible for managing user identities, I want to implement Just-In-Time (JIT) password migration to migrate user credentials from a legacy identity provider to Microsoft Entra External ID, so that users can continue using their existing passwords without requiring an immediate password reset or bulk migration of password hashes.
---
# Just-In-Time Password Migration to Microsoft Entra External ID (Preview) (Preview)
 
This guide describes how to implement Just-In-Time (JIT) password migration to migrate user credentials from a legacy identity provider to Microsoft Entra External ID. If you're a developer or administrator responsible for managing user identities, this guide will help you understand the steps involved in the migration process.
 
---
title: Just-In-Time Password Migration to Microsoft Entra External ID (Preview)
description: Learn how to migrate passwords from another identity provider to Microsoft Entra External ID using Just-In-Time (JIT) Migration.
 
author: garrodonnell
 
## Customer intent: As a developer or administrator responsible for managing user identities, I want to implement Just-In-Time (JIT) password migration to migrate user credentials from a legacy identity provider to Microsoft Entra External ID, so that users can continue using their existing passwords without requiring an immediate password reset or bulk migration of password hashes.
---
# Just-In-Time Password Migration to Microsoft Entra External ID (Preview)
 
This guide describes how to implement Just-In-Time (JIT) password migration to migrate user credentials from a legacy identity provider to Microsoft Entra External ID. If you're a developer or administrator responsible for managing user identities, this guide will help you understand the steps involved in the migration process.