You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
| `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). |
65
65
| `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. |
66
66
67
67
68
68
## Calculated columns
69
69
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).
71
71
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)
73
73
74
74
### Limitations
75
75
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:
87
87
<aname="BKMK_Rollup"></a>
88
88
89
89
## 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).
91
91
92
92
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.
93
93
@@ -188,8 +188,8 @@ search.app:
188
188
### See also
189
189
[Video: Rollup and calculated columns in Dataverse](https://youtu.be/RoahCH1p3T8)
190
190
[Introduction to table columns](/dynamics365/customer-engagement/developer/introduction-to-entity-attributes)
|**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. |
86
86
|**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). |
88
88
|**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. |
89
89
|**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. |
90
90
|**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. |
Copy file name to clipboardExpand all lines: powerapps-docs/developer/data-platform/dataverse-sql-query.md
+1-4Lines changed: 1 addition & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -91,9 +91,6 @@ There is an 80-MB maximum size limit for query results returned from the Dataver
91
91
92
92
Dates returned in query results are formatted as Universal Time Coordinated (UTC). Previously, dates were returned in local time.
93
93
94
-
> [!NOTE]
95
-
> Until a service update planned for January 2021 has deployed, using date filters will be slow.
96
-
97
94
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.
98
95
99
96
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.
Copy file name to clipboardExpand all lines: powerapps-docs/developer/data-platform/entity-attribute-metadata.md
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -80,7 +80,7 @@ In the following table:
80
80
|Collection|`PartyListType`|No|Contains a collection of `ActivityParty` table records.<br />More information: [ActivityParty table](reference/entities/activityparty.md)|
81
81
|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.|
82
82
|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)|
84
84
|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)|
85
85
|Quantity|`BigIntType`<br />[BigIntAttributeMetadata](/dotnet/api/microsoft.xrm.sdk.metadata.bigintattributemetadata)|No|Contains a `BigInt` value. For internal use only.|
86
86
|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