首页 > 其他分享 >Dataverse Table Types

Dataverse Table Types

时间:2022-11-08 15:01:34浏览次数:46  
标签:tables activity virtual Standard Dataverse table Table Types

Table types

There are OOB tables which are preconfigured by Microsoft, such as Account and Contact tables, and there are the custom tables, which is created by system customizers to configure Dynamics 365 and Power Apps. In addition, both OOB and custom tables have different types based on the purpose of the table. For more information 

1. Standard table

The main and most common table, as the name indicates, most of the tables are standard tables, such as account, contact, case, lead and opportunity tables.

To create a Standard table, More Settings > Table type > Choose table type > Standard table and set the ownership to either user/team or organization, ownership will be covered in a future post.

The easiest way to understand standard table is to understand the other two tables.

Standard Table

2. Activity table

The activity table is a time duration scope table that has a start and end dates. Moreover, the activity table integrates with the user calendar and can be marked as due or completed. For example, a meeting has a start date and time and end date and time. Appointment, Email, Fax, Letter, Phone call, Recurring appointment and Task are pre-created OOB activity tables.

More activity custom can be created, for example, SMS or Interview. To create a Standard table, More Settings > Table type > Choose table type > Activity table. Activity ownership can be owned by a user/team only and not by organization.

Activity Table

3. Virtual table

First of all, there are no OOB virtual tables and all the virtual tables are custom tables. The virtual table is read-only tables made for integration purposes only. The virtual table makes external data available within Dynamics 365 and Power Apps; However, the integrated data isn’t copied over to Dataverse. The virtual table record doesn’t have status and statute reason.

Ownership of virtual table is limited to organization. 

标签:tables,activity,virtual,Standard,Dataverse,table,Table,Types
From: https://www.cnblogs.com/Javi/p/16869722.html

相关文章

  • [Typescript] 90. Medium - Replace
    Implement Replace<S,From,To> whichreplacethestring From with To onceinthegivenstring SForexampletypereplaced=Replace<'typesarefun!','f......
  • 【TypeScript教程】02—设置TypeScript
    教程 | https://www.typescripttutorial.net翻译|杨小爱在今天的教程中,我们将一起来学习如何设置TypeScript开发环境。使用TypeScript需要准备以下工具:Node.js –......
  • iptables 防火墙
    一.iptables概述1、netfilter/iptables关系二、iptables的四表五链1、四表2、五链三、iptables规则链(五链)的匹配顺序1、规则链之间的匹配顺序2、规则链内的匹......
  • 10 个关于 TypeScript 的小技巧
    英文| https://www.sangle7.com/1、 TypeScript和DOM当你开始使用TypeScript时,你会发现在浏览器环境中使用它,你需要非常了解它。假设我想在页面搜索框里找到一个元素......
  • elementUI table 第一列值相等合并
    效果如下: 首先:在table上加:span-method="spanMethod"   其次:methods中加两个方法dataPretreatment(){ //表格数据列合并预处理,生成一个与行数相同的数......
  • iOS15.6以后UITableview设置UITableViewStyleGrouped底部会多出一段空白
    在适配iPhone14的过程中,发现之前没问题的UITableview底部会多出一截,查看低版本系统手机正常显示,iOS15.6的iPhone11也有同样的问题。继iOS11以后UITableview多出空白又有新......
  • 我要涨知识 —— TypeScript 常见面试题(一)
    1、ts中的any和unknown有什么区别?unknown和any的主要区别是unknown类型会更加严格:在对unknown类型的值执行大多数操作之前,我们必须进行某种形式的检查。而在......
  • QTableWidget 遍历
    for(introw=0;row<ui->tableWidget->rowCount();row++){ for(intcol=0;col<ui->tableWidget->columnCount();col++) { QTableWidgetItem*item=ui->tableWidg......
  • contentEditable 富文本,中文输入法触发多次oninput事件解决办法
    1. contentEditable富文本,没有onchange事件,有oninput事件,但是遇见中文输入法时,会触发多次,而我们只想输入结束时触发。那我们需要用到compositionstart和compositionend事......
  • [Typescript] 89. Hard - Currying 1
    TypeScript4.0isrecommendedinthischallengeCurrying isthetechniqueofconvertingafunctionthattakesmultipleargumentsintoasequenceoffunction......