Skip to content

Commit 5147392

Browse files
authored
Merge branch 'main' into patch-7
2 parents 579f703 + f921c84 commit 5147392

38 files changed

+509
-245
lines changed

powerapps-docs/developer/data-platform/optional-parameters.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: "Use optional parameters (Microsoft Dataverse) | Microsoft Docs"
33
description: "Use optional parameters to control operation behaviors"
4-
ms.date: 05/27/2023
4+
ms.date: 06/28/2023
55
ms.reviewer: jdaly
66
ms.topic: article
77
author: divkamath
@@ -222,6 +222,9 @@ More information:
222222

223223
Use the `tag` parameter to include a shared variable value that is accessible within a plug-in. This extra information allows a plug-in to apply logic that depends on the client application.
224224

225+
> [!NOTE]
226+
> This parameter is intended for client applications to be able to set any value they wish. No Microsoft feature should require that you set a specific value in your client application code to enable different behaviors.
227+
225228
To access the value in a plug-in, use the [IExecutionContext.SharedVariables collection](xref:Microsoft.Xrm.Sdk.IExecutionContext.SharedVariables)
226229

227230
```csharp

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

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

1818
This sample shows how to execute multiple organization message requests by using a single web service method call, passing [ExecuteMultipleRequest](/dotnet/api/microsoft.xrm.sdk.messages.executemultiplerequest) as a parameter. Reducing the number of message requests that must be transmitted over the network results in increased message processing performance.
1919

20-
You can download the sample from [here](https://github.com/microsoft/PowerApps-Samples/tree/master/dataverse/orgsvc/C%23/ExecutemultipleRequests).
20+
You can download the sample from [here](https://github.com/microsoft/PowerApps-Samples/tree/master/dataverse/orgsvc/C%23/ExecuteMultipleRequests).
2121

2222
[!INCLUDE[cc-terminology](../../includes/cc-terminology.md)]
2323

powerapps-docs/developer/data-platform/use-change-tracking-synchronize-data-external-systems.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ There are two ways to check whether change tracking is enabled for a table using
4242
There are system tables with change tracking enabled, for example [Auditing (Audit)](reference/entities/audit.md). You can use the following query to see the full list:
4343

4444
```http
45-
GET [Organization URI]/api/data/v9.2/EntityDefinitions?$select=SchemaName&$filter=ChangeTrackingEnabled eq true and IsCustomEntity eq false&$select=LogicalName
45+
GET [Organization URI]/api/data/v9.2/EntityDefinitions?$filter=ChangeTrackingEnabled eq true and IsCustomEntity eq false&$select=LogicalName
4646
```
4747

4848
More information: [Query table definitions using the Web API](webapi/query-metadata-web-api.md)

powerapps-docs/developer/model-driven-apps/clientapi/create-app-side-panes.md

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -91,6 +91,26 @@ Xrm.App.sidePanes.createPane({
9191
> [!div class="mx-imgBorder"]
9292
> ![Screenshot showing an Active Reservations list opened to an individual record.](../media/app-side-panes-opening-record.png "Open record")
9393
94+
### Showing a web resource
95+
96+
This example shows how to display a webresource in the side pane. A custom html page is opened in a side pane where the default header is visible & close button is hidden.
97+
98+
```javascript
99+
Xrm.App.sidePanes.createPane({
100+
title: "Registration Page",
101+
imageSrc: "WebResources/msfp_SurveyIcon_32",
102+
paneId: "RegistrationPage",
103+
canClose: false
104+
}).then((pane) => {
105+
//navigate to webresource
106+
pane.navigate({
107+
pageType: "webresource",
108+
webresourceName: "new_RegistrationPage",
109+
})
110+
});
111+
```
112+
113+
94114
### Managing side panes
95115

96116
In addition to creating side panes and showing rows or views within the side pane, you can also:

0 commit comments

Comments
 (0)