Skip to content

Commit 22b0380

Browse files
committed
Acrolinx corrections
1 parent 52b7c94 commit 22b0380

File tree

1 file changed

+18
-18
lines changed

1 file changed

+18
-18
lines changed

powerapps-docs/developer/data-platform/virtual-entities/get-started-ve.md

Lines changed: 18 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: "Get started with virtual tables (entities) (Microsoft Dataverse) | Microsoft Docs"
3-
description: "Virtual tables enable the integration of data residing in external systems by seamlessly representing that data as tables in Microsoft Dataverse, without replication of data and often without custom coding."
4-
ms.date: 08/06/2024
3+
description: "Virtual tables enable integration of data residing in external systems with Microsoft Dataverse."
4+
ms.date: 08/08/2024
55
author: mkannapiran
66
ms.author: kamanick
77
ms.reviewer: pehecke
@@ -20,14 +20,14 @@ contributors:
2020

2121
[!INCLUDE[cc-terminology](../includes/cc-terminology.md)]
2222

23-
*Virtual tables*, also known as *virtual entities*, enable the integration of data residing in external systems by seamlessly representing that data as tables in Microsoft Dataverse, without replication of data and often without custom coding.
23+
*Virtual tables*, also known as *virtual entities*, enable the integration of data residing in external systems with Microsoft Dataverse. This integration seamlessly represents that external data as tables in Dataverse, without replication of data and often without custom coding.
2424

25-
Virtual tables replace previous client-side and server-side approaches to integrating external data which required customized code and suffered from numerous limitations. These limitations include imperfect integration, data duplication, or extensive commitment of development resources. In addition, for administrators and system customizers, the use of virtual tables greatly simplifies administration and configuration.
25+
Virtual tables replace previous client-side and server-side approaches to integrating external data, which required customized code and suffered from numerous limitations. These limitations include imperfect integration, data duplication, or extensive commitment of development resources. In addition, for administrators and system customizers, the use of virtual tables greatly simplifies administration and configuration.
2626

2727
> [!NOTE]
2828
> This section discusses the implications of virtual tables for developers. For more information about managing virtual tables from the user interface, see [Create and edit virtual tables that contain data from an external data source](../../../maker/data-platform/create-edit-virtual-entities.md).
2929
30-
## Virtual tables, data providers and data sources
30+
## Virtual tables, data providers, and data sources
3131

3232
A virtual table includes a definition of a table in Dataverse without the associated physical table for record storage in the Dataverse database. During runtime, when a record is required, its state is dynamically retrieved from the associated external system. Each virtual table type is associated with a *virtual table data provider* and (optionally) some configuration information from an associated *virtual table data source*.
3333

@@ -39,37 +39,37 @@ The following data providers ship with Dataverse:
3939
- An [OData v4](https://www.odata.org/documentation/) provider is included with the service and is installed by default. This provider supports create, read (retrieve, retrieve multiple), update and delete (CRUD) operations.
4040
- An [Azure Cosmos DB](/azure/cosmos-db) (formerly *Microsoft Document DB*) provider is available from [AppSource](https://appsource.microsoft.com).
4141

42-
If a data provider cannot be found for your external data source, you can develop a *custom virtual table data provider*. More information: [Virtual table data providers](custom-ve-data-providers.md)
42+
If a data provider can't be found for your external data source, you can develop a *custom virtual table data provider*. More information: [Virtual table data providers](custom-ve-data-providers.md)
4343

4444
Full CRUD operation is now supported for custom virtual table data provider. Developers can implement plug-ins, and register them using the Plug-in Registration tool, for each of the CRUD operations supporting the virtual table.
4545

4646
## Virtual table creation and mapping
4747

4848
Initially, defining a virtual table is the same as defining a custom table. You specify the table, columns, and relationships for the new virtual table type. You then connect the virtual table to a data provider to manage data operations.
4949

50-
The custom table type and its columns must be mapped to the corresponding data in the external data source. For example, a virtual table might be represented as a row in an external relational database, and each of its columns might correspond to a column in that row. Note that these external data names are often different than their corresponding virtual table names. A specific and required mapping occurs for the entity ID field - the data provider must be able to provide this GUID and associate it to the external record that represents this record. The most direct way to achieve this is to actually use GUIDs as primary keys in the external data source.
50+
The custom table type and its columns must be mapped to the corresponding data in the external data source. For example, a virtual table might be represented as a row in an external relational database, and each of its columns might correspond to a column in that row. These external data names are often different than their corresponding virtual table names. A specific and required mapping occurs for the entity ID field - the data provider must be able to provide this GUID and associate it to the external record that represents this record. The most direct way to achieve this result is to actually use GUIDs as primary keys in the external data source.
5151

5252
In this example, a corresponding virtual table data source would also be provided to supply user and connection information for the external database.
5353

5454
## Limitations of virtual tables
5555

5656
The following are limitations of virtual tables that should be considered.
5757

58-
- Only organization-owned tables are supported. The security filtering applied to user-owned tables is not supported. Access to the virtual table data can be turned on or off for individual users based on their security role. Field-level security is not supported.
58+
- Only organization-owned tables are supported. The security filtering applied to user-owned tables isn't supported. Access to the virtual table data can be turned on or off for individual users based on their security role. Field-level security isn't supported.
5959
- It must be possible to model the external data as a Dataverse table. This means:
6060
- All tables in the external data source must have an associated GUID primary key.
6161
- All table properties must be represented as Dataverse table columns. You can use simple types representing text, numbers, choices, dates, images, and lookups.
6262
- You must be able to model any table relationships in Dataverse.
63-
- A column on a virtual table cannot be calculated or rollup.  Any desired calculations must be done on the external side, possibly within or directed by the data provider.
64-
- Although you can add virtual table columns as a lookup on a grid or other UI views, you cannot filter or sort based on this virtual table lookup column.
65-
- Auditing is not supported.
66-
- Search functionality is not supported for virtual tables as they do not persist data.
67-
- Charts and dashboards are not supported for virtual tables.
68-
- Virtual tables cannot be enabled for queues.
69-
- Offline caching of values is not supported for virtual tables.
70-
- A virtual table cannot represent an activity and do not support business process flows.
71-
- Once created, a virtual table cannot be changed to be a standard (non-virtual) table. The reverse is also true whereas a standard table cannot be converted into a virtual table.
72-
- Selecting attributes in Retrieve and RetrieveMultiple queries will not be applied since all attributes will be returned
63+
- A column on a virtual table can't be calculated or rollup.  Any desired calculations must be done on the external side, possibly within or directed by the data provider.
64+
- Although you can add virtual table columns as a lookup on a grid or other UI views, you can't filter or sort based on this virtual table lookup column.
65+
- Auditing isn't supported.
66+
- Search functionality isn't supported for virtual tables as they don't persist data.
67+
- Charts and dashboards aren't supported for virtual tables.
68+
- Virtual tables can't be enabled for queues.
69+
- Offline caching of values isn't supported for virtual tables.
70+
- A virtual table can't represent an activity and don't support business process flows.
71+
- Once created, a virtual table can't be changed to be a standard (nonvirtual) table. The reverse is also true whereas a standard table can't be converted into a virtual table.
72+
- Selecting attributes in Retrieve and RetrieveMultiple queries won't be applied since all attributes are returned
7373

7474
For more information about how these limitations are reflected in the Dataverse API, see [API considerations of virtual tables](api-considerations-ve.md).
7575

0 commit comments

Comments
 (0)