Skip to content

Commit 07430b5

Browse files
authored
Merge pull request #1637 from MicrosoftDocs/repo_sync_working_branch
Confirm merge from repo_sync_working_branch to master to sync with https://github.com/MicrosoftDocs/powerapps-docs (branch live)
2 parents f997c80 + 796e323 commit 07430b5

File tree

6 files changed

+13
-7
lines changed

6 files changed

+13
-7
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/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/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)