Skip to content

Commit bb77ee9

Browse files
committed
Merge branch 'master' into Nava_issues
2 parents 786f046 + c8e0a26 commit bb77ee9

File tree

59 files changed

+564
-385
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

59 files changed

+564
-385
lines changed

powerapps-docs/developer/common-data-service/behavior-format-date-time-attribute.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ If you have users and offices around the world, it is important to properly repr
3434
|Member name and value|Description|
3535
|---------------------------|-----------------|
3636
|`UserLocal`|- Stores the date and time value as UTC value in the system.<br />- The retrieve operation returns the UTC value.<br />- The update operation converts the UTC value to the current user’s time zone value, and then stores the updated value as is or as the equivalent UTC value depending on the kind ([DateTimeKind](https://msdn.microsoft.com/library/shx7s921.aspx)) of the value specified for update. If the specified value is of UTC kind, it’s stored as is. Otherwise, the UTC-equivalent value is stored.<br />- Retrieving the formatted value converts from UTC to the user’s current time zone based on the time zone and locale setting of the user.<br />- For the Web API, the attribute is exposed as DateTimeOffset.<br />- This behavior is used for system attributes like `CreatedOn` and `ModifiedOn`, and cannot be changed. You should use this behavior for custom attributes where you want to store date and time values with the time zone information.|
37-
|`DateOnly`|- Stores the actual date value with the time value as 12:00 AM (00:00:00) in the system.<br />- For the retrieve and update operations, no time zone conversion is performed, and the time value is always 12 AM (00:00:00).<br />- Retrieving the formatted value displays the date value without any time zone conversion.<br />- For the Web API, the attribute is exposed as DateTimeOffset.<br />- This behavior should be used for custom attributes that store birthdays and anniversaries, where the time information is not required.|
37+
|`DateOnly`|- Stores the actual date value with no time value.<br />- Retrieving the formatted value displays the date value.<br />- For the Web API, the attribute is exposed as Date.<br />- This behavior should be used for custom attributes that store birthdays and anniversaries, where the time information is not required.|
3838
|`TimeZoneIndependent`|- Stores the actual date and time values in the system regardless of the user time zone.<br />- For the retrieve and update operations, no time zone conversion is performed, and actual date and time values are returned and updated respectively in the system regardless of the user time zone.<br />- Retrieving the formatted value displays the date and time value (without any time zone conversion) based on the format as specified by the current user’s time zone and locale setting.<br />- For the Web API, the attribute is exposed as DateTimeOffset.<br />- This behavior should be used for attributes that store information such as check in and check out time for hotels.|
3939

4040
The following sample code demonstrates how to set a `UserLocal` behavior for a new date time attribute:

powerapps-docs/developer/common-data-service/download-tools-nuget.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,7 @@ You can download tools used in development from NuGet using the powershell scri
4040
1. Copy and paste the following PowerShell script into the PowerShell window and press Enter.
4141

4242
```powershell
43+
[Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12
4344
$sourceNugetExe = "https://dist.nuget.org/win-x86-commandline/latest/nuget.exe"
4445
$targetNugetExe = ".\nuget.exe"
4546
Remove-Item .\Tools -Force -Recurse -ErrorAction Ignore

powerapps-docs/developer/common-data-service/entity-attribute-metadata.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ These are the localizable values that are used to refer to the attributes in an
6262
The `AttributeTypeName` property describes the type of an attribute. This property contains a value of type `AttributeTypeDisplayName` which provides a label for each the different types of attributes that exist.
6363

6464
> [!NOTE]
65-
> Don't be confused by the `AttributeType` property. The values in this older property are mostly aligned with `AttributeTypeName` except that it shows `ImageType` attributes as `Virtual`. You should refer to the `AttributeTypeName` property rather than the `AttributeType` property.
65+
> Don't be confused by the [AttributeType](/dotnet/api/microsoft.xrm.sdk.metadata.attributemetadata.attributetype#Microsoft_Xrm_Sdk_Metadata_AttributeMetadata_AttributeType) property. The values in this older property are mostly aligned with [AttributeTypeName](/dotnet/api/microsoft.xrm.sdk.metadata.attributemetadata.attributetypename#Microsoft_Xrm_Sdk_Metadata_AttributeMetadata_AttributeTypeName) except that it shows `ImageAttributeMetadata` and `MultiSelectPicklistAttributeMetadata` as `Virtual`. Refer to the `AttributeTypeName` property rather than the `AttributeType` property.
6666
6767
In the following table:
6868

-36.9 KB
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-webhooks.md

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: "Use webhooks to create external handlers for server events (Common Data Service) | Microsoft Docs" # Intent and product brand in a unique string of 43-59 chars including spaces
33
description: "You can send data about events that occur on the server to a web application using webhooks. Webhooks is a lightweight HTTP pattern for connecting Web APIs and services with a publish/subscribe model. webhook senders notify receivers about events by making requests to receiver endpoints with some information about the events." # 115-145 characters including spaces. This abstract displays in the search result.
44
ms.custom: ""
5-
ms.date: 09/04/2019
5+
ms.date: 08/29/2020
66
ms.reviewer: "pehecke"
77
ms.service: powerapps
88
ms.topic: "article"
@@ -74,8 +74,7 @@ Other data you can expect to find passed to your service is in the table below:
7474

7575
|Key|Value Description|
7676
|---------|---------|
77-
|`x-request-id`|A unique identifier for the request|
78-
|`x-ms-dynamics-organization`|The name of the tenant sending the request|
77+
|`x-ms-dynamics-organization`|The ___domain name of the environment sending the request|
7978
|`x-ms-dynamics-entity-name`|The logical name of the entity passed in the execution context data.|
8079
|`x-ms-dynamics-request-name`|The name of the Event that the webhook step was registered for.|
8180
|`x-ms-correlation-request-id`|Unique identifier for tracking any type of extension. This property is used by the platform for infinite loop prevention. In most cases, this property can be ignored. This value may be used when working with technical support because it can be used to query telemetry to understand what occurred during the entire operation.
@@ -88,9 +87,6 @@ The body will contain string that represents the JSON value of an instance of th
8887

8988
The service you create must parse this data to extract the relevant items of information for your service to provide its function. How you choose to parse this data depends on the technology you are using and your preferences.
9089

91-
> [!IMPORTANT]
92-
> Due to certain Service Bus optimizations, it is not recommended that .NET developers deserialize the JSON formatted message request body to a <xref:Microsoft.Xrm.Sdk.RemoteExecutionContext> object. Rather, use [JObject](https://www.newtonsoft.com/json/help/html/T_Newtonsoft_Json_Linq_JObject.htm) to parse the message body.
93-
9490
The following is an example of the serialized JSON data passed for a step registered with the following properties:
9591

9692

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/webapi/setup-postman-environment.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@ ms.tgt_pltfrm:
1010
ms.topic: article
1111
ms.assetid: 955BA444-A53D-4843-9429-833B1636E2B4
1212
caps.latest.revision: 7
13-
author: susikka
14-
ms.author: susikka
15-
manager: shujoshi
13+
author: JimDaly
14+
ms.author: jdaly
15+
manager: ryjones
1616
search.audienceType:
1717
- developer
1818
search.app:

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

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

2929
|Name|Type|Required|Description|
3030
|--|--|--|--|
31-
|processId|String|Yes|The Id of the process instance to set as the active instance.|
31+
|processInstanceId|String|Yes|The Id of the process instance to set as the active instance.|
3232
|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 processInstanceId isn’t valid or the process isn’t enabled.|
3333

3434
### Related topics

powerapps-docs/maker/TOC.yml

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1685,10 +1685,14 @@
16851685
href: ./common-data-service/view-component-dependencies.md
16861686
- name: Use environment variables
16871687
href: ./common-data-service/EnvironmentVariables.md
1688-
- name: Translate customized entity and field text
1689-
href: ./common-data-service/export-customized-entity-field-text-translation.md
1690-
- name: Import translated entity and field text
1691-
href: ./common-data-service/import-translated-entity-field-text.md
1688+
- name: Translate customized component text
1689+
items:
1690+
- name: Overview
1691+
href: ./common-data-service/translate-entity-label-text.md
1692+
- name: Export customized component text for translation
1693+
href: ./common-data-service/export-customized-entity-field-text-translation.md
1694+
- name: Import translated component text
1695+
href: ./common-data-service/import-translated-entity-field-text.md
16921696
- name: Use solution checker
16931697
href: ./common-data-service/use-powerapps-checker.md
16941698
items:
@@ -1747,7 +1751,7 @@
17471751
href: ../use-ai-builder.md
17481752
- name: Sample apps and solutions
17491753
items:
1750-
- name: Crisis communication
1754+
- name: Crisis Communication
17511755
href: ./canvas-apps/sample-crisis-communication-app.md
17521756
- name: Hospital Emergency Response
17531757
items:

0 commit comments

Comments
 (0)