Skip to content

Commit 83fd78c

Browse files
authored
Merge branch 'live' into patch-5
2 parents 6869d78 + 1e682ea commit 83fd78c

File tree

870 files changed

+10639
-8216
lines changed

Some content is hidden

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

870 files changed

+10639
-8216
lines changed

.openpublishing.redirection.json

Lines changed: 319 additions & 299 deletions
Large diffs are not rendered by default.

app-selector2.png

35.1 KB
Loading

powerapps-docs/developer/common-data-service/TOC.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,8 @@
3131
href: org-service/paging-behaviors-and-ordering.md
3232
- name: Use column comparison in queries
3333
href: column-comparison.md
34+
- name: FetchXML search item limit
35+
href: quick-find-limit.md
3436
- name: "Use SQL to query data (Preview)"
3537
href: cds-sql-query.md
3638
- name: Saved Queries

powerapps-docs/developer/common-data-service/activity-entities.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
title: "Activity entities (Common Data Service) | Microsoft Docs" # Intent and product brand in a unique string of 43-59 chars including spaces
3-
description: "In Dynamics 365 (online), activities are tasks that you or your teams perform when they contact customers, for example, sending letters or making telephone calls." # 115-145 characters including spaces. This abstract displays in the search result.
3+
description: "Activities are tasks that you or your teams perform when they contact customers, for example, sending letters or making telephone calls." # 115-145 characters including spaces. This abstract displays in the search result.
44
ms.custom: ""
55
ms.date: 10/31/2018
66
ms.reviewer: "pehecke"

powerapps-docs/developer/common-data-service/apply-slas-entities.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ Service level agreements (SLAs) in Common Data Service help you define the level
6363

6464
<a name="Limitations"></a>
6565

66-
## Limitations to applying SLAs in Dynamics 365 (online)
66+
## Limitations to applying SLAs
6767

6868
In Common Data Service, the following limitations are applicable for SLAs per Common Data Service instance (organization):
6969

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/configure-entities-attributes-auditing.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ There are three levels where auditing can be configured: organization, entity, a
3939

4040
The following table lists the non-customizable entities that cannot be audited. This table was obtained by testing for a `CanModifyAuditSettings` attribute value of `false` on each entity’s metadata.
4141

42-
||
42+
|Non-customizable entities|
4343
|-|
4444
|ActivityPointer|
4545
|Annotation|

powerapps-docs/developer/common-data-service/connect-microsoft-office-365.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
title: "Connect with Microsoft Office 365 and Common Data Service (Common Data Service) | Microsoft Docs" # Intent and product brand in a unique string of 43-59 chars including spaces
3-
description: "The Microsoft Office 365 portal provides a single sign-on experience for Office 365 customers where they can sign in once and access any Office 365 application, including Dynamics 365 (online)" # 115-145 characters including spaces. This abstract displays in the search result.
3+
description: "The Microsoft Office 365 portal provides a single sign-on experience for Office 365 customers where they can sign in once and access any Office 365 application" # 115-145 characters including spaces. This abstract displays in the search result.
44
ms.custom: ""
55
ms.date: 10/31/2018
66
ms.reviewer: "pehecke"
@@ -22,14 +22,14 @@ Common Data Service is part of the Office 365 collaboration and productivity too
2222
Using federation, applications can connect to Common Data Service using the same system user identities and credentials available in an Azure Active Directory based network. More information: [Single sign-on roadmap](https://technet.microsoft.com/library/hh967643.aspx).
2323

2424
## In This Section
25-
[Dynamics 365 (online) Integration with Office 365](online-integration-office-365.md)
25+
[Common Data Service Integration with Office 365](online-integration-office-365.md)
2626

27-
[Authenticate Office 365 Users with Dynamics 365 (online) Web Services](/dynamics365/customer-engagement/developer/authenticate-office-365-users-customer-engagement-web-services)
27+
[Authenticate Office 365 Users with Common Data Service Web Services](/dynamics365/customer-engagement/developer/authenticate-office-365-users-customer-engagement-web-services)
2828

29-
[Sample: Authenticate Users with Dynamics 365 Web Services](/dynamics365/customer-engagement/developer/sample-authenticate-users-web-services)
29+
[Sample: Authenticate Users with Common Data Service Web Services](/dynamics365/customer-engagement/developer/sample-authenticate-users-web-services)
3030

3131
## Related Sections
32-
[Authenticate Users with Dynamics 365 Web Services](/dynamics365/customer-engagement/developer/authenticate-users)
32+
[Authenticate Users with Common Data Service Web Services](/dynamics365/customer-engagement/developer/authenticate-users)
3333

34-
[Connect to the Dynamics 365 Web Services](/dynamics365/customer-engagement/developer/authenticate-office-365-users-customer-engagement-web-services)
34+
[Connect to the Common Data Service Web Services](/dynamics365/customer-engagement/developer/authenticate-office-365-users-customer-engagement-web-services)
3535

powerapps-docs/developer/common-data-service/create-package-app-appsource.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ A package lets you bundle and deploy multiple files related to your app at once.
4444

4545
```xml
4646
<?xml version="1.0" encoding="utf-8"?>
47-
<Types xmlns="https://schemas.openxmlformats.org/package/2006/content-types">
47+
<Types xmlns="http://schemas.openxmlformats.org/package/2006/content-types">
4848
<Default Extension="xml" ContentType="application/octet-stream" />
4949
<Default Extension="xaml" ContentType="application/octet-stream" />
5050
<Default Extension="dll" ContentType="application/octet-stream" />

powerapps-docs/developer/common-data-service/customization-solutions-file-schema.md

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,6 @@ ms.service: powerapps
88
ms.suite: ""
99
ms.tgt_pltfrm: ""
1010
ms.topic: "article"
11-
applies_to:
12-
- "Dynamics 365 (online)"
1311
helpviewer_keywords:
1412
- "schemas"
1513
ms.assetid: 71e3e594-0240-4af1-99b4-135042b7a000
@@ -23,7 +21,6 @@ search.app:
2321
- PowerApps
2422
- D365CE
2523
---
26-
<!-- https://docs.microsoft.com/dynamics365/customer-engagement/developer/customize-dev/customization-solutions-file-schema -->
2724

2825
# Customization solutions file schema
2926

0 commit comments

Comments
 (0)