Skip to content

Commit cb6ed2a

Browse files
authored
Merge branch 'main' into patch-4
2 parents 3d5a9bd + fe48bfe commit cb6ed2a

File tree

121 files changed

+1256
-378
lines changed

Some content is hidden

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

121 files changed

+1256
-378
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ _repo.*/
77

88
.openpublishing.buildcore.ps1
99
settings.json
10+
.DS_Store
1011

1112
# Folder config file
1213
[Dd]esktop.ini

.openpublishing.redirection.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
{
22
"redirections": [
3+
{
4+
"source_path": "powerapps-docs/maker/dev-community-plan.md",
5+
"redirect_url": "developer-plan",
6+
"redirect_document_id": "false"
7+
},
38
{
49
"source_path": "powerapps-docs/user/powerapps-mobile-troubleshoot.md",
510
"redirect_url": "../mobile/powerapps-mobile-troubleshoot",

powerapps-docs/.DS_Store

0 Bytes
Binary file not shown.

powerapps-docs/developer/data-platform/calculated-rollup-attributes.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -61,15 +61,15 @@ search.app:
6161

6262
| Property | Definition |
6363
|---------------------|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
64-
| `FormulaDefinition` | Contains the XAML definition of the formula used to perform the calculation or rollup. The only supported way to change this value is through the application formula editor.<br /><br /> For information about configuring the formulas for these columns see the following topics in the customization guide: [Define rollup columns](https://docs.microsoft.com/powerapps/maker/data-platform/define-rollup-fields) and [Define calculated columns](https://docs.microsoft.com/powerapps/maker/data-platform/define-calculated-fields). |
64+
| `FormulaDefinition` | Contains the XAML definition of the formula used to perform the calculation or rollup. The only supported way to change this value is through the application formula editor.<br /><br /> For information about configuring the formulas for these columns see the following topics in the customization guide: [Define rollup columns](../../maker/data-platform/define-rollup-fields.md) and [Define calculated columns](../../maker/data-platform/define-calculated-fields.md). |
6565
| `SourceTypeMask` | The bitmask value of this read-only property describes the types of sources used in the formula of the calculated column or if the formula of a calculated or rollup column is not valid.<br /><br /> - 0: **Undefined**. The default value for simple and rollup columns.<br />- 1: **Simple**. The calculated column refers to a column in the same record.<br />- 2: **Related**. The calculated column refers to a column in a related record.<br />- 4: `Logical`. The calculated column refers to a column in the same record which is actually stored in a different database table. More information: [Logical columns](/dynamics365/customer-engagement/developer/introduction-to-entity-attributes#BKMK_LogicalAttributes)<br />- 8: `Calculated`. The calculated column refers to another calculated column.<br />- 16: `Rollup`. The calculated column refers a rollup column.<br />- 32: `Invalid`. The calculated or rollup column is invalid.<br /> Typically this would be where a column refers to a column that no longer exists. **Note:** One or more of these conditions may be true for any calculated or rollup column. Because this is a bitmask value, you may find it useful to use the [SourceTypeMasks enumeration](calculated-rollup-attributes.md#BKMK_SourceTypeMasks) when performing bitwise operations. |
6666

6767

6868
## Calculated columns
6969

70-
Calculated columns are calculated in real-time when they are retrieved. Calculated columns can be composed using different data types. For example, an Integer calculated column may reference values from Decimal or Currency columns. More information: [Define calculated columns](https://docs.microsoft.com/powerapps/maker/data-platform/define-calculated-fields).
70+
Calculated columns are calculated in real-time when they are retrieved. Calculated columns can be composed using different data types. For example, an Integer calculated column may reference values from Decimal or Currency columns. More information: [Define calculated columns](../../maker/data-platform/define-calculated-fields.md).
7171

72-
Calculated column values are available in the retrieve plug-in pipeline. Post image of table record update or create contains the calculated column value in stage 40. More information: [Event execution pipeline](event-framework.md#event-execution-pipeline) and [Table images](understand-the-data-context.md#table-images)
72+
Calculated column values are available in the retrieve plug-in pipeline. Post image of a table record update or create contains the calculated column value in stage 40. More information: [Event execution pipeline](event-framework.md#event-execution-pipeline) and [Entity images](understand-the-data-context.md#entity-images)
7373

7474
### Limitations
7575
You can’t use values in calculated columns on a *logical value* in the same table to sort data returned by a query. Although your query can specify that the results should be ordered using a calculated column, the sort direction will be ignored and will not throw an error. If the calculated column references only simple values in the same record, sorting works normally. You can determine the sources used in a calculated column using the `SourceTypeMask` property on the column definitions. More information: [Logical columns](/dynamics365/customer-engagement/developer/introduction-to-entity-attributes.md#BKMK_LogicalAttributes)
@@ -87,7 +87,7 @@ search.app:
8787
<a name="BKMK_Rollup"></a>
8888

8989
## Rollup columns
90-
Because rollup columns persist in the database, they can be used for filtering or sorting just like regular columns. Any kind of process or plug-in will use the most recently calculated value of the column. Rollup column values are calculated asynchronously by scheduled system jobs. Administrators set when a job is run or pause the job. By default, each column is updated hourly. More information: [Define rollup columns](https://docs.microsoft.com/powerapps/maker/data-platform/define-rollup-fields).
90+
Because rollup columns persist in the database, they can be used for filtering or sorting just like regular columns. Any kind of process or plug-in will use the most recently calculated value of the column. Rollup column values are calculated asynchronously by scheduled system jobs. Administrators set when a job is run or pause the job. By default, each column is updated hourly. More information: [Define rollup columns](../../maker/data-platform/define-rollup-fields.md).
9191

9292
When a rollup column is created or updated a **Mass Calculated Rollup Fields** job is scheduled to run in 12 hours. The 12-hour delay is intended to perform this resource intensive operation during a time that will affect users the least. After the job completes, the next time it is scheduled to run will be 10 years in the future. If there is a problem with the calculation, this will be reported with the system job. Locate the system job in **Settings** > **System Jobs** to find any errors with rollup fields.
9393

@@ -188,8 +188,8 @@ search.app:
188188
### See also
189189
[Video: Rollup and calculated columns in Dataverse](https://youtu.be/RoahCH1p3T8)
190190
[Introduction to table columns](/dynamics365/customer-engagement/developer/introduction-to-entity-attributes)
191-
[Define calculated columns](https://docs.microsoft.com/powerapps/maker/data-platform/define-calculated-fields)
192-
[Define rollup columns](https://docs.microsoft.com/powerapps/maker/data-platform/define-rollup-fields)
191+
[Define calculated columns](../../maker/data-platform/define-calculated-fields.md)
192+
[Define rollup columns](../../maker/data-platform/define-rollup-fields.md)
193193

194194

195195
[!INCLUDE[footer-include](../../includes/footer-banner.md)]

powerapps-docs/developer/data-platform/customize-entity-metadata.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ If working with Organization Service, use <xref:Microsoft.Xrm.Sdk.Messages.Retri
8484
|----------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
8585
| **Allow Quick Create** | Use `IsQuickCreateEnabled` to enable quick create forms for the table. Before you can use quick create forms you must first create and publish a quick create form.<br /> **Note**:<br /> Activity tables do not support quick create forms. |
8686
| **Access Teams** | Use `AutoCreateAccessTeams` to enable the table for access teams. See [About team templates](/dynamics365/customer-engagement/admin/about-team-templates) for more information. |
87-
| **Primary Image** | If a table has an image column you can enable or disable displaying that image in the application using `PrimaryImageAttribute`. For more information see [Table Images](/dynamics365/customer-engagement/developer/introduction-entities). |
87+
| **Primary Image** | If a table has an image column you can enable or disable displaying that image in the application using `PrimaryImageAttribute`. For more information see [Entity Images](/dynamics365/customer-engagement/developer/introduction-entities). |
8888
| **Change display text** | The managed property `IsRenameable` prevents the display name from being changed in the application. You can still programmatically change the labels by updating the `DisplayName` and `DisplayCollectionName` properties. |
8989
| **Edit the table Description** | The managed property `IsRenameable` prevents the table description from being changed in the application. You can still programmatically change the labels by updating the `Description` property. |
9090
| **Enable for use while offline** | Use `IsAvailableOffline` to enable or disable the ability of Dynamics 365 for Microsoft Office Outlook with Offline Access users to take data for this table offline. |

powerapps-docs/developer/data-platform/dataverse-sql-query.md

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -91,9 +91,6 @@ There is an 80-MB maximum size limit for query results returned from the Dataver
9191
9292
Dates returned in query results are formatted as Universal Time Coordinated (UTC). Previously, dates were returned in local time.
9393
94-
> [!NOTE]
95-
> Until a service update planned for January 2021 has deployed, using date filters will be slow.
96-
9794
Querying data using SQL does not trigger any plug-ins registered on the <xref:Microsoft.Xrm.Sdk.Messages.RetrieveMultipleRequest> or <xref:Microsoft.Xrm.Sdk.Messages.RetrieveRequest> messages. Any rewriting of the query or results that would normally be performed by such a plug-in will therefore not take effect for a SQL query.
9895
9996
Queries using the TDS endpoint execute under the service protection API limits.
@@ -158,4 +155,4 @@ This means the port has been blocked at the client.
158155
[Service Protection API Limits](api-limits.md)
159156
160157
161-
[!INCLUDE[footer-include](../../includes/footer-banner.md)]
158+
[!INCLUDE[footer-include](../../includes/footer-banner.md)]

powerapps-docs/developer/data-platform/entity-attribute-metadata.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ In the following table:
8080
|Collection|`PartyListType`|No|Contains a collection of `ActivityParty` table records.<br />More information: [ActivityParty table](reference/entities/activityparty.md)|
8181
|Date and Time|`DateTimeType`<br />[DateTimeAttributeMetadata](/dotnet/api/microsoft.xrm.sdk.metadata.datetimeattributemetadata)|Yes<br />**Date and Time**|Contains a date and time value.<br />All date and time columns support values as early as 1/1/1753 12:00 AM.|
8282
|File|`FileType`<br />[FileAttributeMetadata](/dotnet/api/microsoft.xrm.sdk.metadata.fileattributemetadata)|Yes<br />**File**|Contains data to support retrieving binary data for a table record.<br />More information: [File columns](file-attributes.md)|
83-
|Image|`ImageType`<br />[ImageAttributeMetadata](/dotnet/api/microsoft.xrm.sdk.metadata.imageattributemetadata)|Yes<br />**Image**|Contains data to support retrieving image data for a table record.<br />More information: [Table Images](entity-metadata.md#table-images)|
83+
|Image|`ImageType`<br />[ImageAttributeMetadata](/dotnet/api/microsoft.xrm.sdk.metadata.imageattributemetadata)|Yes<br />**Image**|Contains data to support retrieving image data for a table record.<br />More information: [Entity Images](entity-metadata.md#entity-images)|
8484
|Managed Property|`ManagedPropertyType`<br />[ManagedPropertyAttributeMetadata](/dotnet/api/microsoft.xrm.sdk.metadata.managedpropertyattributemetadata)|No|Contains data that describe whether the solution component stored in the table record can be customized when included in a managed solution.<br />More information: [Managed Properties](/power-platform/alm/managed-properties-alm)|
8585
|Quantity|`BigIntType`<br />[BigIntAttributeMetadata](/dotnet/api/microsoft.xrm.sdk.metadata.bigintattributemetadata)|No|Contains a `BigInt` value. For internal use only.|
8686
|Quantity|`DecimalType`<br />[DecimalAttributeMetadata](/dotnet/api/microsoft.xrm.sdk.metadata.decimalattributemetadata)|Yes<br />**Decimal Number**|Contains a `Decimal` value. The `Precision` property sets the level of precision.|

0 commit comments

Comments
 (0)