Skip to content

Commit f5a6845

Browse files
authored
Merge pull request #7902 from MicrosoftDocs/main
Sally - latest from Main
2 parents 905361a + 6f53252 commit f5a6845

23 files changed

+30
-34
lines changed

powerapps-docs/developer/component-framework/implementing-controls-using-typescript.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -930,7 +930,7 @@ Follow these steps to create and import a [solution](../../maker/data-platform/s
930930
Project reference successfully added to Dataverse solution project.
931931
```
932932

933-
1. To generate a zip file from your solution project, when inside the the `cdsproj` solution project directory, using the following command:
933+
1. To generate a zip file from your solution project, when inside the `cdsproj` solution project directory, using the following command:
934934

935935
```CLI
936936
msbuild /t:restore

powerapps-docs/developer/component-framework/sample-controls/customized-editable-grid-control.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ You can find the code for sample here: [PowerApps-Samples/component-framework/Po
3535

3636
The key change is to [PAGridCustomizer/customizers/CellRendererOverrides.tsx ](https://github.com/microsoft/PowerApps-Samples/blob/master/component-framework/PowerAppsGridCustomizerControl/PAGridCustomizer/customizers/CellRendererOverrides.tsx).
3737

38-
This sample uses the following override for the cell renderer to change the the text color for text fields to green, and the color of the `creditlimit` column depends on the value.
38+
This sample uses the following override for the cell renderer to change the text color for text fields to green, and the color of the `creditlimit` column depends on the value.
3939

4040

4141
```typescript

powerapps-docs/developer/data-platform/best-practices/business-logic/set-timeout-for-external-calls-from-plug-ins.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ If a plug-in makes external web requests that fail to respond quickly, the plug-
4545

4646
The default timeout value for .Net Http clients is 100 seconds, just 20 seconds short of the time available for the plug-in to complete. It is best to establish an expected baseline time that a calling service will respond. The longer it exceeds this normal response time, the higher the probability it will ultimately fail. As a performance best practice, it is best to fail quickly rather than allow the default timeout period to expire. You should control the period that your call to the external service will wait.
4747

48-
The timeout value you should set will depend on the service. For example, if you can monitor the performance of the service you may determine a duration where 99.999% of requests succeed and set your timeout period to that duration with a few seconds buffer. This will prevent the the occasional outliers from having an inordinate impact on the performance of your plug-in.
48+
The timeout value you should set will depend on the service. For example, if you can monitor the performance of the service you may determine a duration where 99.999% of requests succeed and set your timeout period to that duration with a few seconds buffer. This will prevent the occasional outliers from having an inordinate impact on the performance of your plug-in.
4949

5050
If you are using [System.Net.Http.HttpClient Class](/dotnet/api/system.net.http.httpclient), you can set the `Timeout` value explicitly, as shown in this example setting the timeout to 15 seconds.
5151

powerapps-docs/developer/data-platform/custom-api.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -389,7 +389,7 @@ HTTP/1.1 204 No Content
389389

390390
To retrieve the localized labels use the `RetrieveLocLabels` message using either the Web API [RetrieveLocLabels Function](/dynamics365/customer-engagement/web-api/retrieveloclabels) or the Organization Service <xref:Microsoft.Crm.Sdk.Messages.RetrieveLocLabelsRequest>.
391391

392-
The following example shows using the RetrieveLocLabels Function to retrieve the labels for the the `displayname` property of a Custom API with the `customapiid` of `88602189-183d-4584-ba4b-8b60f0f5b89f`
392+
The following example shows using the RetrieveLocLabels Function to retrieve the labels for the `displayname` property of a Custom API with the `customapiid` of `88602189-183d-4584-ba4b-8b60f0f5b89f`
393393

394394
**Request**
395395

powerapps-docs/developer/data-platform/org-service/samples/create-update-records-with-related-records.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ Checks for the current version of the org.
4646

4747
### Demonstrate
4848

49-
1. The `Account` method creates a account record for which we will add letters.
49+
1. The `Account` method creates an account record for which we will add letters.
5050
1. The `Relationship` method creates the reference between letter and account.
5151

5252
### Clean up

powerapps-docs/developer/data-platform/tools/devtools-create-project.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ Only projects created from Power Platform Tools templates should be added to a s
110110
1. Remove any deployed assembly and steps of your project from the Dataverse environment and solution. <p/>If you removed a plug-in or workflow activity library project from the Visual Studio solution, you may want to also remove any related assembly and steps from the Dataverse environment and solution. You can do this in **Power Platform Explorer** by expanding the Plug-in Assemblies node of your environment tree, right-click the target assembly, and choose **Delete Assembly**. This will delete the assembly and any registered steps.
111111

112112
> [!IMPORTANT]
113-
> Your Dataverse logon account must own or have delete access to the the deployed assembly in order for you to delete it from the environment.
113+
> Your Dataverse logon account must own or have delete access to the deployed assembly in order for you to delete it from the environment.
114114
115115
## Next steps
116116

powerapps-docs/developer/data-platform/use-category-entity.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Categorizing rows in Microsoft Dataverse helps you tag the rows so that you can
2222

2323
A category can have multiple child categories, but a child category can have only one parent category. Deleting a parent `Category` row automatically deletes all its child rows and table associations. You define a parent category for a category using the `Category.ParentCategoryId` column.
2424

25-
Use the `Category.SequenceNumber` column to programmatically define the display order for categories in the hierarchy. When you a add a new category using the web client, it is automatically added after the last category in the hierarchy. You can also use the `Category.CategoryNumber` column to programmatically set or update a number for category to help you easily distinguish a group of categories. Category number can be set to any value programmatically, but is automatically set when you create a category using the web client based on the auto-numbering prefix specified by the administrator for categories in the web client (**Settings** > **Administration** > **Auto-Numbering** > **Categories** tab).
25+
Use the `Category.SequenceNumber` column to programmatically define the display order for categories in the hierarchy. When you add a new category using the web client, it is automatically added after the last category in the hierarchy. You can also use the `Category.CategoryNumber` column to programmatically set or update a number for category to help you easily distinguish a group of categories. Category number can be set to any value programmatically, but is automatically set when you create a category using the web client based on the auto-numbering prefix specified by the administrator for categories in the web client (**Settings** > **Administration** > **Auto-Numbering** > **Categories** tab).
2626

2727
You can associate `Category` rows with system and custom table rows by using relationships and connections. A category row can be associated with different rows. For example, you can programmatically associate a `Category` row with an `Account`, `Contact` and `Incident` rows.
2828

powerapps-docs/developer/data-platform/webapi/web-api-basic-operations-sample.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -728,7 +728,7 @@ This section demonstrates how to associate and disassociate existing table rows.
728728
Retrieved role: Example Security Role
729729
```
730730

731-
1. Dissociate the the security role from the from your user record. Note again, that this has the same general syntax used to remove a one-to-many association.
731+
1. Dissociate the security role from the from your user record. Note again, that this has the same general syntax used to remove a one-to-many association.
732732

733733
**Request**
734734

powerapps-docs/developer/data-platform/webapi/web-api-navigation-properties.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ These values are stored in the relationship definitions that can be accessed eit
6464

6565
### Lookup properties
6666

67-
We introduced lookup properties in the the [Web API Properties](web-api-properties.md) topic. See [Lookup properties](web-api-properties.md#lookup-properties).
67+
We introduced lookup properties in the [Web API Properties](web-api-properties.md) topic. See [Lookup properties](web-api-properties.md#lookup-properties).
6868

6969
Single-valued navigation properties have a `ReferentialConstraint` with a `Property` attribute that refers to a lookup property. You can recognize lookup properties because they use the following naming convention: `_<name>_value`.
7070

powerapps-docs/guidance/fusion-dev-ebook/04-using-dataverse-as-data-source.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ A view provides access to specified columns and rows in one or more related tabl
6262

6363
![Defining a view in Dataverse.](media/image79.png)
6464

65-
You use business rules to define validations and automate the flow of control when data is added, modified, or deleted in an entity. A business rule comprises a condition that can test for certain conditions in the affected entity, such as whether the data in a column matches or breaks a given rule. The business rules designer in Power Apps Studio provides a graphical user interface for defining business rules, as shown in the the following image.
65+
You use business rules to define validations and automate the flow of control when data is added, modified, or deleted in an entity. A business rule comprises a condition that can test for certain conditions in the affected entity, such as whether the data in a column matches or breaks a given rule. The business rules designer in Power Apps Studio provides a graphical user interface for defining business rules, as shown in the following image.
6666

6767
![Defining business rules in Dataverse.](media/image80.png)
6868

0 commit comments

Comments
 (0)