Skip to content

Commit 78d0126

Browse files
authored
Merge pull request #1675 from MicrosoftDocs/master
Pushing updates live
2 parents 8b97e5f + 6039a79 commit 78d0126

File tree

8 files changed

+22
-10
lines changed

8 files changed

+22
-10
lines changed

powerapps-docs/developer/common-data-service/authenticate-oauth.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -312,7 +312,8 @@ To add a password:
312312

313313
#### Common Data Service user account bound to the registered app
314314

315-
The first thing you must do is create a custom security role that will define what access and privileges this account will have within the Common Data Service organization. More information: [Create or configure a custom security role](/power-platform/admin/database-security#create-or-configure-a-custom-security-role).
315+
316+
The first thing you must do is create a custom security role that will define what access and privileges this account will have within the Common Data Service organization. More information: [Create or configure a custom security role](/power-platform/admin/database-security#create-or-configure-a-custom-security-role)
316317

317318
After you have created the custom security role, you must create the user account which will use it.
318319

powerapps-docs/developer/common-data-service/define-alternate-keys-entity.md

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: "Work with alternate keys (Common Data Service) | Microsoft Docs" # Intent and product brand in a unique string of 43-59 chars including spaces
33
description: "The topic explains about how to create alternate keys for an entity. Alternate keys can be created programmatically or by using the customization tools" # 115-145 characters including spaces. This abstract displays in the search result.
44
ms.custom: ""
5-
ms.date: 10/31/2018
5+
ms.date: 06/04/2019
66
ms.reviewer: ""
77
ms.service: powerapps
88
ms.topic: "article"
@@ -39,6 +39,9 @@ You should be aware of the following constraints when creating alternate keys:
3939
| DecimalAttributeMetadata | Decimal Number |
4040
| IntegerAttributeMetadata | Whole Number |
4141
| StringAttributeMetadata | Single line of text |
42+
| DateTimeAttributeMetadata | Date Time |
43+
| LookupAttributeMetadata | Lookup |
44+
| PicklistAttributeMetadata | Option Set |
4245

4346

4447
- **Valid key size**
@@ -85,4 +88,4 @@ If the alternate key is deleted while an index creation job is still pending or
8588
[Using alternate keys](use-alternate-key-create-record.md)<br />
8689
[Use change tracking to synchronize data with external systems](use-change-tracking-synchronize-data-external-systems.md)<br />
8790
[Use Upsert to insert or update a record](use-upsert-insert-update-record.md)
88-
[Define alternate keys to reference records](../../maker/common-data-service/define-alternate-keys-reference-records.md)
91+
[Define alternate keys to reference records](../../maker/common-data-service/define-alternate-keys-reference-records.md)

powerapps-docs/developer/common-data-service/understand-the-data-context.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -177,4 +177,4 @@ There is no way to configure entity images for custom workflow activities since
177177
### See also
178178

179179
[Event Framework](event-framework.md)
180-
[Write a plug-in](write-plug-in.md)
180+
[Write a plug-in](write-plug-in.md)

powerapps-docs/developer/common-data-service/webapi/samples/query-data-csharp.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ Prerequisites for all Common Data Service Web API C# samples are detailed in the
3535

3636
<a name="bkmk_runSample"></a>
3737

38-
## Hpw to run this sample
38+
## How to run this sample
3939

4040
Go to [Web API Query Data Sample (C#)](https://github.com/Microsoft/PowerApps-Samples/tree/master/cds/webapi/C%23), clone or download the samples repository, and extract its contents into a local folder. This folder should contain the following files:
4141

powerapps-docs/developer/model-driven-apps/clientapi/reference/Xrm-WebApi/retrieveRecord.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ Retrieves the name and revenue of an account record wwith record ID = 5531d753-9
8585
```JavaScript
8686
Xrm.WebApi.retrieveRecord("account", "a8a19cdd-88df-e311-b8e5-6c3be5a8b200", "?$select=name,revenue").then(
8787
function success(result) {
88-
console.log(`Retrieved values: Name: ${result.name}, Revenue: ${result.revenue}`);
88+
console.log("Retrieved values: Name: " + result.name + ", Revenue: " + result.revenue);
8989
// perform operations on record retrieval
9090
},
9191
function (error) {
@@ -106,7 +106,8 @@ The above example displays the following in your console; you might see other va
106106
```JavaScript
107107
Xrm.WebApi.retrieveRecord("account", "a8a19cdd-88df-e311-b8e5-6c3be5a8b200", "?$select=name&$expand=primarycontactid($select=contactid,fullname)").then(
108108
function success(result) {
109-
console.log(`Retrieved values: Name: ${result.name}, Primary Contact ID: ${result.primarycontactid.contactid}, Primary Contact Name: ${result.primarycontactid.fullname}`);
109+
console.log("Retrieved values: Name: " + result.name + ", Primary Contact ID: " + result.primarycontactid.contactid +
110+
", Primary Contact Name: " + result.primarycontactid.fullname);
110111
// perform operations on record retrieval
111112
},
112113
function (error) {

powerapps-docs/maker/common-data-service/data-platform-cds-newentity-pq.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -87,3 +87,6 @@ If you select **Load to existing entity**, you can specify an entity into which
8787
We're excited about this functionality and eager to hear your feedback. Please [send us your suggestions and feedback](https://powerusers.microsoft.com/t5/PowerApps-Community/ct-p/PowerApps1) about this feature!
8888

8989
If an [error message about permissions](data-platform-cds-newentity-troubleshooting-mashup.md) appears, talk to your administrator.
90+
91+
> [!WARNING]
92+
> There is a limit of 500,000 rows per run and per project that can be loaded using this feature.

powerapps-docs/maker/common-data-service/define-alternate-keys-reference-records.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: "Define alternate keys to reference records with Common Data Service | MicrosoftDocs"
33
description: "Learn how to define alternate keys that can be used to reference records in Common Data Service"
44
ms.custom: ""
5-
ms.date: 06/06/2018
5+
ms.date: 06/04/2019
66
ms.reviewer: ""
77
ms.service: powerapps
88
ms.suite: ""
@@ -76,6 +76,9 @@ Only these kinds of fields can be used to create alternate keys:
7676
- Decimal
7777
- Whole Number (Integer)
7878
- Single line of Text (String)
79+
- Date and Time
80+
- Lookup
81+
- Option Set
7982

8083
### Number of keys
8184

powerapps-docs/maker/common-data-service/use-solution-explorer.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,10 @@ applies_to:
1212
- "Dynamics 365 (online)"
1313
- "Dynamics 365 Version 9.x"
1414
- "powerapps"
15-
author: "Mattp123"
15+
author: "caburk"
1616
ms.assetid: 72bacfbb-96a3-4daa-88ff-11bdaaac9a3d
1717
caps.latest.revision: 57
18-
ms.author: "matp"
18+
ms.author: "caburk"
1919
manager: "kvivek"
2020
search.audienceType:
2121
- maker
@@ -103,6 +103,7 @@ In PowerApps, you can view the classic solution explorer by selecting **Solution
103103
- Button triggered Flows are not available in solutions.
104104
- Canvas app triggered Flows are not available in solutions.
105105
- Flows triggered from Microsoft 365 applications such as SharePoint and Excel are not available in solutions.
106+
- In a solution, you can create a flow that uses the new Common Data Service connector. However, adding a flow that was created outside a solution isn't supported due to potential failures.
106107

107108
For details about customizing the individual components in a solution, see the following topics:
108109

0 commit comments

Comments
 (0)