Skip to content

Commit 65610f3

Browse files
authored
Merge branch 'main' into sitarampemmaraju-patch-1
2 parents f6c94d7 + 3b7219b commit 65610f3

File tree

4 files changed

+3
-16
lines changed

4 files changed

+3
-16
lines changed

powerapps-docs/developer/data-platform/bulk-operations.md

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -396,9 +396,6 @@ A key requirement of the bulk operation messages is that organizations must not
396396

397397
- When a single operation message is used, the respective bulk operation event occurs with an [EntityCollection](xref:Microsoft.Xrm.Sdk.EntityCollection) containing a *single* [Entity](xref:Microsoft.Xrm.Sdk.Entity) instance passed in the `Targets` parameter. You can move any logic that responds to single operation events to the more efficient bulk operation events and the logic is applied for both individual and multiple operations.
398398

399-
> [!NOTE]
400-
> Don't migrate custom logic to the `DeleteMultiple` message until [Known issue: DeleteMultiple plug-ins not invoked for Delete](deletemultiple.md#deletemultiple-plug-ins-not-invoked-for-delete) is resolved.
401-
402399
Before the introduction of bulk operation messages, all custom logic was on the single operation messages. That logic must continue to be applied when client applications use the bulk operation messages. For tables used with high-volume bulk operations, we recommend that you begin to move any synchronous logic from single message events to bulk operation events. If you're introducing new logic, use the bulk operation events rather than the single operation events.
403400

404401
> [!CAUTION]

powerapps-docs/developer/data-platform/deletemultiple.md

Lines changed: 1 addition & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: Use DeleteMultiple (preview)
33
description: Learn how to use Delete to delete multiple rows of data in a Microsoft Dataverse elastic table.
4-
ms.date: 11/13/2023
4+
ms.date: 11/15/2023
55
author: pnghub
66
ms.author: gned
77
ms.reviewer: jdaly
@@ -120,16 +120,6 @@ OData-Version: 4.0
120120

121121
`DeleteMultiple` is supported only for elastic tables. Elastic tables don't support [table relationship cascading behavior](configure-entity-relationship-cascading-behavior.md), which can result in unpredictable execution times for delete operations. If you use `DeleteMultiple` on a standard table, you get the error: `DeleteMultiple has not yet been implemented.`
122122

123-
## Known issues
124-
125-
The following issues will be addressed before `DeleteMultiple` becomes generally available.
126-
127-
### DeleteMultiple plug-ins not invoked for Delete
128-
129-
As part of the changes we made to [merge message pipelines](bulk-operations.md#message-pipelines-merged), any custom logic for the multiple version of the message must also be invoked when the single version of the message is invoked. At this time, plug-in steps registered for the `DeleteMultiple` message *are not* being called when `Delete` is used. Plug-in steps registered for `Delete` *are* being invoked when `DeleteMultiple` is used.
130-
131-
You shouldn't migrate custom logic from `Delete` to `DeleteMultiple` until this issue is resolved. You can use `DeleteMultiple` and any logic that's associated with the `Delete` message still works.
132-
133123

134124
## Examples
135125

powerapps-docs/developer/data-platform/org-service/quick-start-org-service-console-app.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,7 @@ To see and understand the `IOrganizationService` interface a little better, try
150150
//ServiceClient implements IOrganizationService interface
151151
IOrganizationService service = new ServiceClient(connectionString);
152152

153-
WhoAmIExample(service: serviceClient);
153+
WhoAmIExample(service: service);
154154

155155
// Pause the console so it does not close.
156156
Console.WriteLine("Press the <Enter> key to exit.");

powerapps-docs/developer/model-driven-apps/clientapi/reference/Xrm-Navigation/openAlertDialog.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ contributors:
1717

1818
## Syntax
1919

20-
`Xrm.Navigation.openAlertDialog(alertStrings,alertOptions).then(closeCallback,errorCallback);`
20+
`Xrm.Navigation.openAlertDialog(alertStrings,alertOptions).then(successCallback,errorCallback);`
2121

2222
## Parameters
2323

0 commit comments

Comments
 (0)