Skip to content

Commit 443a6bd

Browse files
committed
acrolinx
1 parent 66bdfaf commit 443a6bd

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

powerapps-docs/developer/data-platform/webapi/merge-entity-using-web-api.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: "Merge table rows using the Web API (Microsoft Dataverse)| Microsoft Docs"
33
description: "Read how to use the Merge unbound action to merge two table rows"
4-
ms.date: 08/10/2023
4+
ms.date: 08/30/2024
55
author: MicroSri
66
ms.author: sriknair
77
ms.reviewer: jdaly
@@ -15,7 +15,7 @@ contributors:
1515

1616
[!INCLUDE[cc-terminology](../includes/cc-terminology.md)]
1717

18-
When you find duplicate records you can combine them into one using the <xref:Microsoft.Dynamics.CRM.Merge?text=Merge Action>.
18+
When you find duplicate records, you can combine them into one using the [Merge Action](xref:Microsoft.Dynamics.CRM.Merge).
1919

2020
> [!NOTE]
2121
> Only the following entity types can be merged:
@@ -34,11 +34,11 @@ Merge is an unbound action that accepts four parameters:
3434
|---------|---------|---------|---------|
3535
|`Target`|<xref:Microsoft.Dynamics.CRM.crmbaseentity>|The target of the merge operation.| No|
3636
|`Subordinate`|<xref:Microsoft.Dynamics.CRM.crmbaseentity>|The entity record from which to merge data.| No|
37-
|`UpdateContent`|<xref:Microsoft.Dynamics.CRM.crmbaseentity>|Additional entity attributes to be set during the merge operation.| Yes|
37+
|`UpdateContent`|<xref:Microsoft.Dynamics.CRM.crmbaseentity>|More entity attributes to be set during the merge operation.| Yes|
3838
|`PerformParentingChecks`|Boolean|Indicates whether to check if the parent information is different for the two entity records.| No|
3939

40-
Merging will move any useful data from the `Subordinate` record to the `Target` record. Any existing data in the `Target` record will not be overwritten. Then the `Subordinate` record is deactivated.
41-
To perform this operation the caller must have privileges and access rights to both the records identified as the `Target` and `Subordinate`.
40+
Merging moves any useful data from the `Subordinate` record to the `Target` record. Any existing data in the `Target` record aren't overwritten. Then the `Subordinate` record is deactivated.
41+
To perform this operation, the caller must have privileges and access rights to both the records identified as the `Target` and `Subordinate`.
4242

4343
Use a POST request to send data to merge records.
4444
This example merges two account entity records while updating `accountnumber` property of the record that will remain after the merge.
@@ -85,18 +85,18 @@ OData-Version: 4.0
8585

8686
The merge behavior for `incident` (case) table is different from `account`, `contact`, or `lead` tables.
8787

88-
- The `UpdateContent` parameter data is not used.
88+
- The `UpdateContent` parameter data isn't used.
8989
- Merge is performed in the security context of the user
9090

91-
Merge operations for other tables are performed with a system user security context. Because incident merge operations are performed in the security context of the user, the user must have the security privileges to perform any of the actions, such as re-parenting related records, that are performed by the merge operation.
91+
Merge operations for other tables are performed with a system user security context. Because incident merge operations are performed in the security context of the user, the user must have the security privileges to perform any of the actions, such as reparenting related records, that the merge operation performs.
9292

93-
If the user merging records doesn't have privileges for all the actions contained within the merge operation, the merge operation will fail and roll back to the original state.
93+
If the user merging records doesn't have privileges for all the actions contained within the merge operation, the merge operation fail and roll back to the original state.
9494

9595
### See also
9696

9797
[Use Web API actions](use-web-api-actions.md)<br />
9898
[Merge duplicate records](../../../user/merge-duplicate-records.md)<br />
99-
<xref:Microsoft.Crm.Sdk.Messages.MergeRequest?text=MergeRequest Class><br />
99+
[MergeRequest Class](xref:Microsoft.Crm.Sdk.Messages.MergeRequest)<br />
100100
[Administration Guide: Merge data](/power-platform/admin/merge-data)<br />
101101
[Dynamics 365 for Service: Merge cases](/dynamics365/customer-service/customer-service-hub-user-guide-merge-cases)
102102

0 commit comments

Comments
 (0)