Skip to content

Commit fbf8980

Browse files
committed
Merge branch 'master' into portals-1948172
2 parents e45a75c + d57a351 commit fbf8980

File tree

4 files changed

+17
-5
lines changed

4 files changed

+17
-5
lines changed

powerapps-docs/developer/common-data-service/best-practices/business-logic/avoid-batch-requests-plugin.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ search.app:
3131

3232
## Symptoms
3333

34-
Due to their long-running nature, using <xref:Microsoft.Xrm.Sdk.Messages.ExecuteMultipleRequest> or <xref:Microsoft.Xrm.Sdk.Messages.ExecuteTransactionRequest> message request classes within the context of a plug-in or workflow activity expose sandbox-isolated plug-in types to the two-minute (12000ms) channel timeout exception and can degrade the user experience for synchronous registrations.
34+
Due to their long-running nature, using <xref:Microsoft.Xrm.Sdk.Messages.ExecuteMultipleRequest> or <xref:Microsoft.Xrm.Sdk.Messages.ExecuteTransactionRequest> message request classes within the context of a plug-in or workflow activity expose sandbox-isolated plug-in types to the two-minute (120000ms) channel timeout exception and can degrade the user experience for synchronous registrations.
3535

3636

3737
<a name='guidance'></a>

powerapps-docs/maker/canvas-apps/embed-apps-dev.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,11 @@ If you have an app you want to embed, the first step is to set parameters for th
3434
```
3535
https://apps.powerapps.com/play/[AppID]?source=iframe
3636
```
37+
For GCC users
38+
39+
```
40+
https://apps.gov.powerapps.us/play[AppID]?source=iframe
41+
```
3742

3843
> [!IMPORTANT]
3944
> As of August 2019, the URI format has changed from https://web.powerapps.com/webplayer to https://apps.powerapps.com/play. Please update any embedded iframes to use the new URI format. References to the previous format will be redirected to the new URI to ensure compatibility.

powerapps-docs/maker/canvas-apps/functions/function-form.md

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,16 +14,19 @@ search.audienceType:
1414
search.app:
1515
- PowerApps
1616
---
17+
1718
# EditForm, NewForm, SubmitForm, ResetForm, and ViewForm functions in Power Apps
19+
1820
View, edit, or create an item, save the contents, and reset the controls in an **[Edit form](../controls/control-form-detail.md)** control.
1921

2022
## Overview
23+
2124
These functions change the state of the **Edit form** control. The form control can be in one of these modes:
2225

2326
| Mode | Description |
2427
| --- | --- |
2528
| **FormMode.Edit** |The form is populated with an existing record and the user can modify the values of the fields. Once complete, the user can save the changes to the record. |
26-
| **FormMode.New** |The form is populates with default values and the user can modify the values of the fields. Once complete, the user can add the record to the data source. |
29+
| **FormMode.New** |The form is populated with default values and the user can modify the values of the fields. Once complete, the user can add the record to the data source. |
2730
| **FormMode.View** |The form is populated with an existing record but the user cannot modify the values of the fields. |
2831

2932
## Description
@@ -56,7 +59,7 @@ The **ResetForm** function resets the contents of a form to their initial values
5659
The **ViewForm** function changes the Form control's mode to **FormMode.View**. In this mode, the contents of the Form control's **[Item](../controls/control-form-detail.md)** property are used to populate the form. The **SubmitForm** and **ResetForm** functions have no effect when in this mode.
5760

5861
### DisplayMode Property
59-
The current mode can be read through the **Mode** property. The mode also determines the value of the **DisplayMode** property which can be used by data cards and controls within the form control. Often, the data card's **DisplayMode** property will be set to **Parent.DisplayMode** (referencing the form) as will the control's **DisplayMode** property (referencing the data card):
62+
The current mode can be read through the **Mode** property. The mode also determines the value of the **DisplayMode** property, which can be used by data cards and controls within the form control. Often, the data card's **DisplayMode** property will be set to **Parent.DisplayMode** (referencing the form) as will the control's **DisplayMode** property (referencing the data card):
6063

6164
| Mode | DisplayMode | Description |
6265
| --- | --- | --- |

powerapps-docs/maker/canvas-apps/use-native-cds-connector.md

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ ms.service: powerapps
77
ms.topic: conceptual
88
ms.custom: canvas
99
ms.reviewer: tapanm
10-
ms.date: 07/09/2020
10+
ms.date: 07/29/2020
1111
ms.author: lanced
1212
search.audienceType:
1313
- maker
@@ -109,7 +109,11 @@ To convert your app that uses the Dynamics 365 connector, you'll need to remove
109109
3. Add the connections to your data sources to the Common Data Service using the new data source selection experience.
110110

111111
> [!NOTE]
112-
> If you have connections to other environments (other than current), select the *Entity* category and then the *More* (...) option to change the environment. You can then select an entity from a different environment to add to your application. Cross-tenant connections don't work with the improved native connector. You'll need to use data integration to access data cross-tenant.
112+
> - If you have connections to other environments (other than current), select the *Entity* category and then the *More* (...) option to change the environment. You can then select an entity from a different environment to add to your application. Cross-tenant connections don't work with the improved native connector. You'll need to use data integration to access data cross-tenant.
113+
> - You need to meet one of the following requirements to be able to see an environment that you want to add the connection to:
114+
> - You're the **Owner** of the app, or the app is [shared](share-app.md) with you as a **Co-owner**.
115+
> - You're a member of at least one of these security roles: **Environment Admin**, **Environment Maker**, or **System Administrator**. For more information about the security roles in an environment, go to [Configure user security to resources in an environment](https://docs.microsoft.com/power-platform/admin/database-security).
116+
113117
4. Save your application.
114118

115119
*Possible errors and suggestions*:

0 commit comments

Comments
 (0)