Skip to content

Commit 911df83

Browse files
committed
Merge branch 'master' into LanceDelano
2 parents b83dd86 + 5d240ce commit 911df83

File tree

9 files changed

+253
-20
lines changed

9 files changed

+253
-20
lines changed

powerapps-docs/developer/common-data-service/virtual-entities/sample-generic-ve-plugin.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,9 @@ search.app:
2727

2828
This sample shows a minimal implementation for a generic Common Data Service virtual entity data provider plug-in, **DropboxRetrieveMultiplePlugin**, for the [Dropbox](https://www.dropbox.com/) file-sharing service. It uses the "bare metal" approach, translating the <xref:Microsoft.Xrm.Sdk.Query.QueryExpression> through the creation of the custom visitor class, **DropBoxExpressionVisitor**. It returns a collection of the files that satisfy the search criteria as an <xref:Microsoft.Xrm.Sdk.EntityCollection>.
2929

30+
> [!NOTE]
31+
> This sample requires the use of ILMERGE to combine the plug-in and Dropbox assemblies prior to registering the assembly with Common Data Service. Use of ILMERGE is not officially supported. A future update to this sample will remove the need to use ILMERGE.
32+
3033
## Getting started
3134

3235
In order to build this sample, you must first install the [Dropbox.Api](https://www.nuget.org/packages/Dropbox.Api/) and [Microsoft.CrmSdk.Data](https://www.nuget.org/packages/Microsoft.CrmSdk.Data/) NuGet packages in your solution. You'll also need a DropBox account and pass a real access token when creating an instance of the **DropboxClient**.
@@ -119,4 +122,4 @@ public class DropboxRetrieveMultiplePlugin : IPlugin
119122

120123
[Get started with virtual entities](get-started-ve.md)<br />
121124
[API considerations of virtual entities](api-considerations-ve.md)<br />
122-
[Custom virtual entity data providers](custom-ve-data-providers.md)
125+
[Custom virtual entity data providers](custom-ve-data-providers.md)

powerapps-docs/developer/common-data-service/walkthrough-register-app-azure-active-directory.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,8 +66,10 @@ App registration can also be done by an application developer or individual user
6666
7. Search for and choose **Common Data Service** under the **APIs my organization uses** tab.
6767

6868
![Select API](media/app-registration-select-api-page.png "Select API")
69-
70-
8. Click on **Delegated permissions** and check the options and click on **Add permissions**.
69+
> [!TIP]
70+
> If you are presented with more than one **Common Data Service** item in the search list, choose any one of them. In the next step the service name and URL will be shown. At that point you can go back to the API search and choose a different Common Data Service list item if needed.
71+
72+
8. Click on **Delegated permissions** and check the options and click on **Add permissions**.
7173

7274
![Delegate Permissions](media/app-registration-delegate-permissions-page.png "Delegate Permission")
7375
> [!NOTE]

powerapps-docs/maker/TOC.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1938,7 +1938,7 @@
19381938
- name: Get a session or app ID
19391939
href: ./canvas-apps/get-sessionid.md
19401940
- name: Troubleshoot startup issues for Power Apps
1941-
href: troubleshooting-startup-issues.md
1941+
href: ../troubleshooting-startup-issues.md
19421942
- name: Troubleshoot issues for the Power Apps mobile app
19431943
href: ../user/powerapps_mobile_troubleshoot.md
19441944
- name: Troubleshoot Power Query

powerapps-docs/maker/canvas-apps/controls/control-attachments.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ The attachment control has these limitations:
2323

2424
1. Upload and delete functionality work only inside a form. The Attachment control appears disabled when in Edit mode and not inside a form. To save file additions and deletions, the app user must save the form. Because of this limitation, the Attachment control isn't available from the **Insert** tab but appears in the form when the Attachment form field is enabled in a SharePoint or Common Data Service form.
2525

26-
1. You can upload files only if they're 10 MB or smaller.
26+
1. You can upload files only if they're 50 MB or smaller.
2727

2828
## Description
2929
An **Attachments** control lets you open, add, and delete files from a SharePoint list or a Common Data Service entity.
@@ -33,7 +33,7 @@ An **Attachments** control lets you open, add, and delete files from a SharePoin
3333

3434
**MaxAttachments** – The maximum number of files the control will accept.
3535

36-
**MaxAttachmentSize** – The maximum allowed file size in MB of each new attachment. Currently there is a limit of 10 MB.
36+
**MaxAttachmentSize** – The maximum allowed file size in MB of each new attachment. Currently there is a limit of 50 MB.
3737

3838
**OnAddFile** – How the app responds when the user adds a new file attachment.
3939

powerapps-docs/maker/portals/create-portal.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ author: neerajnandwana-msft
55
ms.service: powerapps
66
ms.topic: conceptual
77
ms.custom:
8-
ms.date: 09/22/2020
8+
ms.date: 10/01/2020
99
ms.author: nenandw
1010
ms.reviewer: tapanm
1111
---
@@ -76,7 +76,6 @@ To edit the portal in Power Apps portals Studio, see [Edit a portal](manage-exis
7676
> - If you have provisioned a portal using the older portal add-on, you can still customize and manage it from [make.powerapps.com](https://make.powerapps.com).
7777
> - Provisioning portals from [make.powerapps.com](https://make.powerapps.com) does not consume the older portal add-ons. Also, these portals are not listed under the **Applications** tab on the **Dynamics 365 Administration Center** page.
7878
> - A Common Data Service starter portal cannot be created from the **Dynamics 365 Administration Center** page.
79-
> - Power Apps portals is not available in the France region.
8079
8180
### Create additional portals in an environment
8281

powerapps-docs/maker/troubleshooting-startup-issues.md

Lines changed: 14 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,19 @@
11
---
22
title: Troubleshooting startup issues for Power Apps | Microsoft Docs
33
description: This troubleshooting guide helps fix common configuration problems that prevent Power Apps from starting.
4-
author: matthewbolanos
5-
manager: kvivek
4+
author: navjotm
65
ms.service: powerapps
76
ms.topic: conceptual
87
ms.custom: canvas
9-
ms.reviewer:
10-
ms.date: 08/31/2020
11-
ms.author: mabolan
8+
ms.reviewer: tapanm
9+
ms.date: 10/01/2020
10+
ms.author: namarwah
1211
search.audienceType:
1312
- maker
1413
search.app:
1514
- PowerApps
1615
---
16+
1717
# Troubleshooting startup issues for Power Apps
1818

1919
This troubleshooting article helps fix common configuration problems that prevent Power Apps from starting.
@@ -38,7 +38,7 @@ This troubleshooting article helps fix common configuration problems that preven
3838
3939
- When you receive a “Hmmm … We couldn’t sign you in” error message and identifier that resembles the following image:
4040
41-
![Hmmm … We couldn’t sign you in. The information below may be helpful](./media/troubleshooting-startup-issues/error.png "Hmmm … We couldn’t sign you in. The information below may be helpful")
41+
![Hmmm … We couldn’t sign you in. The information below may be helpful](media/troubleshooting-startup-issues/error.png "Hmmm … We couldn’t sign you in. The information below may be helpful")
4242
4343
**Resolution**: Check [Resolutions for common errors](#resolutions-for-common-errors) for different error variations and resolutions.
4444
@@ -136,6 +136,8 @@ Power Apps stores some data locally in your browser, including user identity and
136136
- `https://make.*.powerapps.com` (the asterisk is part of the address, don't replace it)
137137
- `https://make.powerapps.com`
138138
- `https://login.microsoftonline.com`
139+
- `https://apps.*.powerapps.com`
140+
- `https://apps.powerapps.com`
139141
140142
- **Option 2: Create exceptions to allow local data for Power Apps and associated services**
141143
@@ -148,6 +150,8 @@ Power Apps stores some data locally in your browser, including user identity and
148150
- `https://make.*.powerapps.com` (the asterisk is part of the address, don't replace it)
149151
- `https://make.powerapps.com`
150152
- `https://login.microsoftonline.com`
153+
- `https://apps.*.powerapps.com`
154+
- `https://apps.powerapps.com`
151155
152156
## Resolution 2: Configure Trust Zones for Internet Explorer and Microsoft Edge Legacy
153157
@@ -166,6 +170,8 @@ Internet Explorer and Microsoft Edge Legacy use *Trust Zones*. Problems can occu
166170
- `https://make.powerapps.com`
167171
- `https://make.*.powerapps.com` (the asterisk is part of the address, don't replace it)
168172
- `https://*.powerapps.com` (the asterisk is part of the address, don't replace it)
173+
- `https://apps.*.powerapps.com` (the asterisk is part of the address, don't replace it)
174+
- `https://apps.powerapps.com`
169175
7. Select **Close**.
170176
8. Select **OK**.
171177
9. Close all Internet Explorer and Microsoft Edge Legacy windows.
@@ -183,6 +189,8 @@ Internet Explorer and Microsoft Edge Legacy use *Trust Zones*. Problems can occu
183189
- `https://make.powerapps.com`
184190
- `https://make.*.powerapps.com` (the asterisk is part of the address, don't replace it)
185191
- `https://*.powerapps.com` (the asterisk is part of the address, don't replace it)
192+
- `https://apps.*.powerapps.com` (the asterisk is part of the address, don't replace it)
193+
- `https://apps.powerapps.com`
186194
- Any other address that ends in **powerapps.com** or **create.powerapps.com**.
187195
7. Select **Close**.
188196

powerapps-docs/teams/manage-your-apps.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
2-
title: Manage your apps | Microsoft Docs
3-
description: Learn how to manage your apps using Power Apps app from Teams.
2+
title: Manage your apps using Power Apps app in Teams | Microsoft Docs
3+
description: Learn how to manage your apps using Power Apps app in Teams.
44
author: tapanm-msft
55
ms.service: powerapps
66
ms.topic: conceptual
@@ -10,7 +10,7 @@ ms.author: tapanm
1010
ms.reviewer:
1111
---
1212

13-
# Manage your apps
13+
# Manage your apps in Teams
1414

1515
[!INCLUDE [cc-beta-prerelease-disclaimer.md](../includes/cc-beta-prerelease-disclaimer.md)]
1616

powerapps-docs/teams/publish-and-share-apps.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
2-
title: Publish and share your app | Microsoft Docs
3-
description: Learn how to publish and share your apps using Power Apps app from Teams.
2+
title: Publish and share your app using Power Apps app in Teams | Microsoft Docs
3+
description: Learn how to publish and share your apps using Power Apps app in Teams.
44
author: tapanm-msft
55
ms.service: powerapps
66
ms.topic: conceptual
@@ -10,7 +10,7 @@ ms.author: tapanm
1010
ms.reviewer:
1111
---
1212

13-
# Publish and share your app
13+
# Publish and share your app in Teams
1414

1515
[!INCLUDE [cc-beta-prerelease-disclaimer.md](../includes/cc-beta-prerelease-disclaimer.md)]
1616

0 commit comments

Comments
 (0)