Skip to content

Commit ee5d009

Browse files
Merge pull request MicrosoftDocs#4115 from MicrosoftDocs/main638132294109998216sync_temp
For protected CLA branch, push strategy should use PR and merge to target branch method to work around git push error
2 parents 21b4dc1 + 4434d7b commit ee5d009

File tree

3 files changed

+27
-9
lines changed

3 files changed

+27
-9
lines changed

powerapps-docs/developer/data-platform/org-service/execute-multiple-requests.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: "Execute multiple requests using the Organization service (Microsoft Dataverse) | Microsoft Docs" # Intent and product brand in a unique string of 43-59 chars including spaces
33
description: "ExecuteMultipleRequest message supports higher throughput bulk message passing scenarios in Microsoft Dataverse." # 115-145 characters including spaces. This abstract displays in the search result.
4-
ms.date: 02/16/2023
4+
ms.date: 02/28/2023
55
ms.reviewer: pehecke
66
ms.topic: article
77
author: divkamath # GitHub ID
@@ -22,11 +22,11 @@ contributors:
2222

2323
The primary purpose of executing multiple requests it so improve performance in high-latency environments by reducing the total volume of data that is transmitted over the network.
2424

25-
You can use the <xref:Microsoft.Xrm.Sdk.Messages.ExecuteMultipleRequest> message to support higher throughput bulk message passing scenarios in Microsoft Dataverse. <xref:Microsoft.Xrm.Sdk.Messages.ExecuteMultipleRequest> accepts an input collection of message <xref:Microsoft.Xrm.Sdk.Messages.ExecuteMultipleRequest.Requests>, executes each of the message requests in the order they appear in the input collection, and optionally returns a collection of <xref:Microsoft.Xrm.Sdk.Messages.ExecuteMultipleResponse.Responses> containing each messages response or the error that occurred. Each message request in the input collection is processed in a separate database transaction. <xref:Microsoft.Xrm.Sdk.Messages.ExecuteMultipleRequest> is executed by using the <xref:Microsoft.Xrm.Sdk.IOrganizationService>.<xref:Microsoft.Xrm.Sdk.IOrganizationService.Execute%2a> method.
25+
You can use the <xref:Microsoft.Xrm.Sdk.Messages.ExecuteMultipleRequest> message to support higher throughput bulk message passing scenarios in Microsoft Dataverse. <xref:Microsoft.Xrm.Sdk.Messages.ExecuteMultipleRequest> accepts an input collection of message <xref:Microsoft.Xrm.Sdk.Messages.ExecuteMultipleRequest.Requests>, executes each of the message requests in the order they appear in the input collection, and optionally returns a collection of <xref:Microsoft.Xrm.Sdk.Messages.ExecuteMultipleResponse.Responses> containing each message's response or the error that occurred. Each message request in the input collection is processed in a separate database transaction. <xref:Microsoft.Xrm.Sdk.Messages.ExecuteMultipleRequest> is executed by using the <xref:Microsoft.Xrm.Sdk.IOrganizationService>.<xref:Microsoft.Xrm.Sdk.IOrganizationService.Execute%2a> method.
2626

2727
In general, <xref:Microsoft.Xrm.Sdk.Messages.ExecuteMultipleRequest> behaves the same as if you executed each message request in the input request collection separately, except with better performance. Use of the <xref:Microsoft.Xrm.Sdk.Client.OrganizationServiceProxy.CallerId> parameter of the service proxy is honored and will apply to the execution of every message in the input request collection. Plug-ins and workflow activities are executed as you would expect for each message processed.
2828

29-
Plug-ins and custom workflow activities are not blocked from using <xref:Microsoft.Xrm.Sdk.Messages.ExecuteMultipleRequest>. However, this is not recommended. Any failures in the synchronous step must rollback all data operations to maintain data integrity. Each operation performed within `ExecuteMultiple` will not be rolled back. `ExecuteMultiple` also causes issues when the operations exceed the maximum plug-in timeout duration.
29+
Plug-ins and custom workflow activities are not blocked from using <xref:Microsoft.Xrm.Sdk.Messages.ExecuteMultipleRequest>. However, this is not recommended. Any failures in the synchronous step must rollback all data operations to maintain data integrity. Each operation performed within `ExecuteMultiple` must be rolled back. `ExecuteMultiple` also causes issues when the operations exceed the maximum plug-in timeout duration.
3030

3131
More information: [Do not use batch request types in plug-ins and workflow activities](../best-practices/business-logic/avoid-batch-requests-plugin.md)
3232

@@ -85,7 +85,7 @@ More information: [Sample: Execute multiple requests](samples/execute-multiple-
8585

8686
## Specify run-time execution options
8787

88-
The <xref:Microsoft.Xrm.Sdk.Messages.ExecuteMultipleRequest.Settings> parameter of <xref:Microsoft.Xrm.Sdk.Messages.ExecuteMultipleRequest> applies to all of the requests in the request collection controlling execution behavior and results returned. Lets take a look at these options in more detail.
88+
The <xref:Microsoft.Xrm.Sdk.Messages.ExecuteMultipleRequest.Settings> parameter of <xref:Microsoft.Xrm.Sdk.Messages.ExecuteMultipleRequest> applies to all of the requests in the request collection controlling execution behavior and results returned. Let's take a look at these options in more detail.
8989

9090
|ExecuteMultipleSettings Member|Description|
9191
|------------------------------------|-----------------|
@@ -120,7 +120,7 @@ There are several constraints related to the use of the <xref:Microsoft.Xrm.Sdk.
120120

121121
## Handle a batch size fault
122122

123-
What should you do when your input request collection exceeds the maximum batch size? Your code cant directly query the maximum batch size through the deployment web service unless it is run under an account that has the deployment administrator role.
123+
What should you do when your input request collection exceeds the maximum batch size? Your code can't directly query the maximum batch size through the deployment web service unless it is run under an account that has the deployment administrator role.
124124

125125
Fortunately, there is another method that you can use. When the number of requests in the input <xref:Microsoft.Xrm.Sdk.Messages.ExecuteMultipleRequest.Requests> collection exceeds the maximum batch size allowed for an organization, a fault is returned from the <xref:Microsoft.Xrm.Sdk.Messages.ExecuteMultipleRequest> call. The maximum batch size is returned in the fault. Your code can check for that value, resize the input request collection to be within the indicated limit, and re-submit the <xref:Microsoft.Xrm.Sdk.Messages.ExecuteMultipleRequest>. The following code snippet demonstrates some of this logic.
126126

powerapps-docs/maker/model-driven-apps/form-component-control.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: "Edit table records directly from another table’s main form | MicrosoftDocs"
33
description: Learn how to design a main form that can be used to edit a related table record.
44
ms.custom: ""
5-
ms.date: 10/17/2022
5+
ms.date: 02/28/2023
66
ms.reviewer: ""
77
ms.suite: ""
88
ms.tgt_pltfrm: ""
@@ -130,6 +130,8 @@ Note the following limitations when you add the form component control to a tabl
130130

131131
- The form that you use with a form component must be included in your app. If it isn't, or if the current user doesn't have access to the form, it will fall back to the top-most main form that is included in the app and available to the user (based on form order). More information: [Add a component](add-edit-app-components.md#add-a-component).
132132

133+
- Form component controls have certain limitations when rendered in multi-session apps. If the client API is used to modify the form component control, the changes might not be persisted when switching multi-session tabs.
134+
133135
- You may notice that the timeline wall may not update when a column that is used to set the timeline wall has changed in the form component. When the page is refreshed the timeline wall will update as expected.
134136

135137
- On mobile, the timeline control doesn't currently appear in the form component control.

powerapps-docs/maker/model-driven-apps/rich-text-editor-control.md

Lines changed: 19 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: Use the rich text editor control in Power Apps | MicrosoftDocs
33
description: "The rich text editor control provides the app user a WYSIWYG editing area for formatting text"
44
ms.custom: ""
5-
ms.date: 11/18/2022
5+
ms.date: 02/28/2023
66
ms.reviewer: "matp"
77
ms.suite: ""
88
ms.tgt_pltfrm: ""
@@ -737,10 +737,26 @@ Depends on showAsTabControl and showPreview set to true.
737737
```"showPreviewHeaderWarning": false```
738738
</td>
739739

740-
</tr>
741-
</table>
740+
<tr>
741+
<td>
742+
allowSameOriginSandbox
743+
</td>
744+
<td>
745+
This property enables the content within the rich text editor to be treated as from the same origin as the rendering app.
746+
747+
> [!CAUTION]
748+
> Use this property with caution. Only use trusted external content because any untrusted external content could be allowed access to internal resources. <br></br>
749+
750+
Default value is false.
751+
</td>
752+
<td>
742753

754+
```"allowSameOriginSandbox": false```
755+
</td>
756+
</tr>
743757

758+
</tr>
759+
</table>
744760

745761
## Commonly used rich text editor configurations
746762

0 commit comments

Comments
 (0)