Skip to content

Commit 01623a7

Browse files
authored
Merge branch 'live' into patch-7
2 parents a33d6f9 + 84addf6 commit 01623a7

28 files changed

+345
-512
lines changed
Loading

powerapps-docs/developer/common-data-service/time-zone-entities.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: "Time zone entities (Common Data Service) | Microsoft Docs" # Intent and product brand in a unique string of 43-59 chars including spaces
33
description: "The time zone entities contain time zone information, such as supported time zone, time zone code, localized time zone, storing information on how times are calculated." # 115-145 characters including spaces. This abstract displays in the search result.
44
ms.custom: ""
5-
ms.date: 10/31/2018
5+
ms.date: 08/27/2020
66
ms.reviewer: "pehecke"
77
ms.service: powerapps
88
ms.topic: "article"
@@ -17,15 +17,16 @@ search.app:
1717
---
1818
# Time zone entities
1919

20-
The *time zone* entities can be used when you write code that works in multiple time zones. The following three read-only entities in Common Data Service contain time zone information:
20+
> [!NOTE]
21+
> The *time zone rule* entity is deprecated. The time conversion calculation is now provided by Microsoft Windows. Refer to this article for more information: [Microsoft policy in response to daylight saving time and time zone changes](https://support.microsoft.com/help/22803/daylight-saving-time).
22+
23+
The *time zone* entities can be used when you write code that works in multiple time zones. The following two read-only entities in Common Data Service contain time zone information:
2124

22-
- The *time zone definition entity* stores basic information about each supported time zone, including the time zone code and the standard time zone name.
25+
- The *time zone definition entity* stores basic information about each supported time zone, including the time zone code and the standard time zone name.
2326

2427
- The *time zone localized name* entity stores the localized time zone names.
2528

26-
- The *time zone rule* entity stores information about how times are calculated.
27-
28-
The following table lists the messages that are related to time zones, but don’t refer to a specific entity.
29+
The following table lists the messages that are related to time zones, but don’t refer to a specific entity.
2930

3031
|Message|Description|
3132
|-------------|-----------------|
@@ -39,5 +40,4 @@ The *time zone* entities can be used when you write code that works in multiple
3940
[timezonedefinition EntityType](reference/entities/timezonedefinition.md)
4041
[timezonelocalizedname EntityType](reference/entities/timezonelocalizedname.md)
4142
[timezonerule EntityType](reference/entities/timezonerule.md)
42-
[Sample: Retrieve Time Zone Information](org-service/samples/retrieve-time-zone-information.md)
4343
[Transaction Currency (Currency) Entity](transaction-currency-currency-entity.md)

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: "Use change tracking to synchronize data with external systems (Common Data Service) | Microsoft Docs" # Intent and product brand in a unique string of 43-59 chars including spaces
33
description: "The change tracking feature provides a way to keep the data synchronized in an efficient manner by detecting what data has changed since the data was initially extracted or last synchronized" # 115-145 characters including spaces. This abstract displays in the search result.
44
ms.custom: ""
5-
ms.date: 10/31/2018
5+
ms.date: 09/01/2020
66
ms.reviewer: "pehecke"
77
ms.service: powerapps
88
ms.topic: "article"
@@ -128,7 +128,7 @@ System query options `$filter`, `$orderby` and `$top` are not supported when usi
128128

129129
<a name="BKMK_SampleCode"></a>
130130
## Sample code
131-
The following code snippet shows how the `RetrieveEntityChangesRequest` message is used to retrieve the changes for an entity. For the complete sample, see [Synchronize data with external systems using change tracking](https://go.microsoft.com/fwlink/p/?LinkId=533957).
131+
The following code snippet shows how the `RetrieveEntityChangesRequest` message is used to retrieve the changes for an entity. For the complete sample, see [Synchronize data with external systems using change tracking](https://github.com/microsoft/PowerApps-Samples/tree/master/cds/orgsvc/C%23/Changetracking).
132132

133133
```csharp
134134
string token;

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ App registration can also be done by an application developer or individual user
6363

6464
![Add app permission](media/azure-api-permissions-page.png "Add app permission")
6565

66-
7. Select **Dynamics CRM** under the **Microsoft APIs** tab.
66+
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")
6969

powerapps-docs/developer/common-data-service/xrm-tooling/use-connection-strings-xrm-tooling-connect.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ Create a new connection to Common Data Service using the current logged in user
131131
Url=https://contosotest.crm.dynamics.com;
132132
AppId=51f81489-12ee-4a9e-aaae-a2591f45987d;
133133
RedirectUri=app://58145B91-0C36-4500-8554-080854F2AC97;
134-
TokenCacheStorePath=c:\MyTokenCache;
134+
TokenCacheStorePath=c:\MyTokenCache\msal_cache.data;
135135
LoginPrompt=Auto"/>
136136
```
137137

powerapps-docs/developer/model-driven-apps/clientapi/reference/formContext-data-process/activeprocess/setActiveProcess.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ If there is an active instance of the process, the entity record is loaded with
3030

3131
|Name|Type|Required|Description|
3232
|--|--|--|--|
33-
|processInstanceId|String|Yes|The Id of the process to set as the active process.|
33+
|processId|String|Yes|The Id of the process to set as the active process.|
3434
|callbackFunction|Function|No|A function to call when the operation is complete. This callback function is passed one of the following string values to indicate whether the operation succeeded:<br/>- **success**: The operation succeeded.<br/>- **invalid**: The processId isn’t valid or the process isn’t enabled.|
3535

3636
### Related topics

powerapps-docs/developer/model-driven-apps/clientapi/reference/formContext-data/save.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,9 @@ You can also set an object to control how appointment, recurring appointment, or
3333
|successCallback|Function|No|A function to call when the operation succeeds.|
3434
|errorCallback|Function|No|A function to call when the operation fails. An object with the following properties will be passed:<br/><br/>- **errorCode**: Number. The error code.<br/><br/>- **message**: String. A localized error message.|
3535

36+
[!NOTE]
37+
> When working with forms, and you call the `formContext.data.save` method, make sure that you also call the [preventDefault](../save-event-arguments/preventDefault.md) to ensure that any default save operation is not triggered when a user saves the form.
38+
3639

3740
### Related topics
3841

powerapps-docs/maker/TOC.yml

Lines changed: 7 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -941,15 +941,15 @@
941941
items:
942942
- name: SharePoint scenarios overview
943943
href: ./canvas-apps/sharepoint/scenarios-intro.md
944-
- name: How to filter a search list in an app?
944+
- name: Filter a search list in an app
945945
href: ./canvas-apps/sharepoint/scenarios-filter-search-list.md
946-
- name: How to use drop down list with choices from lookup column in a SharePoint list?
946+
- name: Use drop down list with choices from lookup column in a SharePoint list
947947
href: ./canvas-apps/sharepoint/scenarios-choice-to-lookup.md
948-
- name: How to customize an app screen based on column status inside SharePoint list?
948+
- name: Customize an app screen based on column status inside SharePoint list
949949
href: ./canvas-apps/sharepoint/scenarios-customize-view-based-on-column-status.md
950-
- name: How to work with permissions in a lookup list from SharePoint site?
950+
- name: Work with permissions in a lookup list from SharePoint site
951951
href: ./canvas-apps/sharepoint/scenarios-lookup-list-permissions.md
952-
- name: How to create SharePoint integrated canvas app from scratch to view, edit, add, and delete SharePoint list items?
952+
- name: Create SharePoint integrated canvas app from scratch to view, edit, add, and delete SharePoint list items
953953
href: ./canvas-apps/sharepoint/scenarios-sharepoint-form-from-scratch.md
954954
- name: Cognitive Services
955955
href: ./canvas-apps/cognitive-services-api.md
@@ -1163,11 +1163,9 @@
11631163
href: ./model-driven-apps/set-properties-chart-list-included-dashboard.md
11641164
- name: Use system controls for data visualizations
11651165
items:
1166-
- name: Set up the Notes control
1167-
href: ./model-driven-apps/notes-control-legacy.md
1168-
- name: Set up timeline control
1166+
- name: Set up the timeline control
11691167
href: ./model-driven-apps/set-up-timeline-control.md
1170-
- name: FAQs for timeline control
1168+
- name: FAQs for the timeline control
11711169
href: ./model-driven-apps/faqs-timeline-control.md
11721170
- name: Quick view control properties
11731171
href: ./model-driven-apps/quick-view-control-properties-legacy.md

powerapps-docs/maker/canvas-apps/limits-and-config.md

Lines changed: 14 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ ms.service: powerapps
66
ms.topic: conceptual
77
ms.custom: canvas
88
ms.reviewer: tapanm
9-
ms.date: 03/19/2020
10-
ms.author: lanced
9+
ms.date: 08/31/2020
10+
ms.author: gregli
1111
search.audienceType:
1212
- maker
1313
search.app:
@@ -64,21 +64,24 @@ Calls made from an API connected through an app (for example, the SQL API or the
6464
You should use these addresses if, for example, you must allow IP addresses for an Azure SQL database.
6565

6666
> [!IMPORTANT]
67-
> If you have existing configurations, please update them as soon as possible before September 30, 2018 so they include and match the IP addresses in this list for the regions where your Power Apps apps exist.
67+
> If you have existing configurations, please update them as soon as possible before September 30, 2018 so they include and match the IP addresses in this list for the regions where your Power Apps apps exist.
6868
6969
| Region | Outbound IP |
7070
| --- | --- |
71-
| Asia | 13.75.36.64 - 13.75.36.79, 13.67.8.240 - 13.67.8.255, 52.175.23.169, 52.187.68.19, 127.0.0.1 |
72-
| Australia | 13.70.72.192 - 13.70.72.207, 13.72.243.10, 13.77.50.240 - 13.77.50.255, 13.70.136.174, 127.0.0.1 |
73-
| Brazil | 191.233.203.192 - 191.233.203.207, 104.214.19.48 - 104.214.19.63, 13.65.86.57, 104.41.59.51, 127.0.0.1 |
74-
| Canada | 13.71.170.208 - 13.71.170.223, 13.71.170.224 - 13.71.170.239, 52.237.24.126, 40.69.106.240 - 40.69.106.255, 52.242.35.152, 127.0.0.1|
75-
| Europe | 13.69.227.208 - 13.69.227.223, 52.178.150.68, 13.69.64.208 - 13.69.64.223, 52.174.88.118, 137.117.161.181, 127.0.0.1|
76-
| India | 104.211.81.192 - 104.211.81.207, 52.172.211.12, 40.78.194.240 - 40.78.194.255, 13.71.125.22, 104.211.146.224 - 104.211.146.239, 104.211.189.218, 127.0.0.1 |
71+
| Asia | 13.75.36.64 - 13.75.36.79, 13.67.8.240 - 13.67.8.255, 52.175.23.169, 52.187.68.19, 104.214.164.0 - 104.214.164.31, 13.67.15.32 - 13.67.15.63, 20.44.29.64 - 20.44.29.95, 40.79.189.64 - 40.79.189.95, 40.80.180.64 - 40.80.180.95, 52.231.148.224 - 52.231.148.255, 127.0.0.1 |
72+
| Australia | 13.70.72.192 - 13.70.72.207, 13.72.243.10, 13.77.50.240 - 13.77.50.255, 13.70.136.174, 13.70.78.224 - 13.70.78.255, 13.77.55.160 - 13.77.55.191, 127.0.0.1 |
73+
| Brazil | 191.233.203.192 - 191.233.203.207, 104.214.19.48 - 104.214.19.63, 13.65.86.57, 104.41.59.51, 191.233.207.160 - 191.233.207.191, 127.0.0.1 |
74+
| Canada | 13.71.170.208 - 13.71.170.223, 13.71.170.224 - 13.71.170.239, 52.237.24.126, 40.69.106.240 - 40.69.106.255, 52.242.35.152, 13.71.175.160 - 13.71.175.191, 13.71.170.224 - 13.71.170.239, 40.69.111.0 - 40.69.111.31, 127.0.0.1|
75+
| Europe | 13.69.227.208 - 13.69.227.223, 52.178.150.68, 13.69.64.208 - 13.69.64.223, 52.174.88.118, 137.117.161.181, 13.69.231.192 - 13.69.231.223, 13.69.71.192 - 13.69.71.223, 40.79.148.96 - 40.79.148.127, 40.79.180.224 - 40.79.180.255, 127.0.0.1|
76+
| India | 104.211.81.192 - 104.211.81.207, 52.172.211.12, 40.78.194.240 - 40.78.194.255, 13.71.125.22, 104.211.146.224 - 104.211.146.239, 104.211.189.218, 20.38.128.224 - 20.38.128.255, 20.43.123.0 - 20.43.123.31, 127.0.0.1 |
7777
| Japan | 13.78.108.0 - 13.78.108.15, 13.71.153.19, 40.74.100.224 - 40.74.100.239, 104.215.61.248, 127.0.0.1 |
7878
| South America | 191.233.203.192 - 191.233.203.207, 104.214.19.48 - 104.214.19.63, 13.65.86.57, 104.41.59.51, 127.0.0.1 |
79-
| United Kingdom | 51.140.148.0 - 51.140.148.15, 51.140.80.51, 51.140.211.0 - 51.140.211.15, 51.141.47.105, 127.0.0.1 |
80-
| United States | 13.89.171.80 - 13.89.171.95, 52.173.245.164, 40.71.11.80 - 40.71.11.95, 40.71.249.205, 40.70.146.208 - 40.70.146.223, 52.232.188.154, 52.162.107.160 - 52.162.107.175, 52.162.242.161, 40.112.243.160 - 40.112.243.175, 104.42.122.49, 127.0.0.1 |
79+
| United Arab Emirates | 20.45.67.28, 127.0.0.1 |
80+
| United Kingdom | 51.140.148.0 - 51.140.148.15, 51.140.80.51, 51.140.211.0 - 51.140.211.15, 51.141.47.105, 51.105.77.96 - 51.105.77.127, 51.140.212.224 - 51.140.212.255, 127.0.0.1 |
81+
| United States | 13.89.171.80 - 13.89.171.95, 52.173.245.164, 40.71.11.80 - 40.71.11.95, 40.71.249.205, 40.70.146.208 - 40.70.146.223, 52.232.188.154, 52.162.107.160 - 52.162.107.175, 52.162.242.161, 40.112.243.160 - 40.112.243.175, 104.42.122.49, 13.66.145.96 - 13.66.145.127, 13.71.199.192 - 13.71.199.223, 13.73.244.224 - 13.73.244.255, 13.86.223.32 - 13.86.223.63, 13.89.178.64 - 13.89.178.95, 40.70.151.96 - 40.70.151.127, 40.71.15.160 - 40.71.15.191, 52.162.111.192 - 52.162.111.223, 127.0.0.1 |
8182
| United States (Early Access) | 13.71.195.32 - 13.71.195.47, 52.161.102.22, 13.66.140.128 - 13.66.140.143, 52.183.78.157, 127.0.0.1 |
83+
| United States Government (GCC) | 20.140.137.128 - 20.140.137.159, 52.127.5.224 - 52.127.5.255, 127.0.0.1 |
84+
| Department of Defense (DoD) in Azure Government | 52.127.61.192 - 52.127.61.223, 127.0.0.1 |
8285

8386
## Required services
8487
This list identifies all services to which Power Apps Studio talks and their usages. Your network must **not** block these services.

powerapps-docs/maker/canvas-apps/share-app.md

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,13 @@
11
---
22
title: Share a canvas app | Microsoft Docs
33
description: Share your canvas app by giving other users permission to run or modify it
4-
author: tapanm-msft
5-
manager: kvivek
4+
author: alaug
65
ms.service: powerapps
76
ms.topic: conceptual
87
ms.custom: canvas
9-
ms.reviewer:
10-
ms.date: 06/16/2020
11-
ms.author: tapanm
8+
ms.reviewer: tapanm
9+
ms.date: 09/02/2020
10+
ms.author: alaug
1211
search.audienceType:
1312
- maker
1413
search.app:
@@ -170,7 +169,7 @@ Power Apps canvas apps can be shared with guest users of an Azure Active Directo
170169

171170
> [!NOTE]
172171
> - Guests may only be assigned the **User** role, and not the **Co-owner** role, for apps shared with them.
173-
> - Power Apps canvas app guest access leverages Azure B2B. Power Apps recognizes guests outlined by states 1 – 4 in the [Azure B2B documentation](https://docs.microsoft.com/azure/active-directory/b2b/user-properties). Power Apps can't recognize guests that authenticate using [Azure AD direct federation](https://docs.microsoft.com/azure/active-directory/b2b/direct-federation).
172+
> - Power Apps canvas app guest access leverages Azure B2B. Power Apps recognizes guests outlined by states 1 – 4 in the [Azure B2B documentation](https://docs.microsoft.com/azure/active-directory/b2b/user-properties). Power Apps can't recognize guests that authenticate using [Azure AD direct federation](https://docs.microsoft.com/azure/active-directory/b2b/direct-federation) or [Email one-time passcode authentication](https://docs.microsoft.com/azure/active-directory/external-identities/one-time-passcode).
174173
175174
### Prerequisites
176175

0 commit comments

Comments
 (0)