简体   繁体   English

Microsoft Dynamics CRM-“电子邮件”选项卡中附件的注释(注)实体的文件大小属性与设置文件大小限制

[英]Microsoft Dynamics CRM - Annotation(Note) entity's filesize attribute vs set filesize limit for attachments in Email tab

I have been recently working on creating Annotations(Notes/Attachments) in Microsoft Dynamics CRM 2016. I have noticed that there are different settings for attachment file size as below. 我最近一直在努力在Microsoft Dynamics CRM 2016中创建注释(注释/附件)。我注意到,附件文件大小有不同的设置,如下所示。

  1. In the Settings Email tab which is ranging from 0 through 131,072 kilobytes 在“设置电子邮件”标签中,范围从0131,072 KB

    Microsoft Dynamics CRM -> Settings -> System Settings -> Email -> Set file size limit for attachments -> Maximum file size (in kilobytes) Microsoft Dynamics CRM->设置->系统设置->电子邮件->设置附件的文件大小限制->最大文件大小(以千字节为单位)

  2. The Organization entity's " MaxUploadFileSize " field setting which is ranging from 0 through 2,147,483,647 Bytes 组织实体的“ MaxUploadFileSize ”字段设置,范围从02,147,483,647字节
  3. The Annotation(Note) entity's " FileSize " field setting which is ranging from 0 through 1,000,000,000 Bytes . Annotation(Note)实体的“ FileSize ”字段设置,范围从01,000,000,000 Bytes The description says it's " File Size (Bytes) of Note ". 描述说它是“ 注释的文件大小(字节) ”。 Does this mean that it's only applies to attachments uploaded against Notes? 这是否意味着它仅适用于针对Notes上传的附件?

The Annotation Entity Documentation specifies as below: 注释实体文档规定如下:

The maximum size of files that can be uploaded is determined by the Organization.MaxUploadFileSize property. 可以上载的最大文件大小由Organization.MaxUploadFileSize属性确定。 This property is set in the Email tab of the System Settings in the Dynamics 365 application. 在Dynamics 365应用程序的“系统设置”的“电子邮件”选项卡中设置此属性。 This setting limits the size of files that can be attached to email messages, notes, and web resources. 此设置限制了可以附加到电子邮件,便笺和Web资源的文件的大小。 The default setting is 5 MB. 默认设置为5 MB。

I suppose " Organization.MaxUploadFileSize " is the global setting and any other specific settings as in Email or Notes take precedence over it for corresponding entities. 我想“ Organization.MaxUploadFileSize ”是全局设置,而对于电子邮件Notes ,任何其他特定设置都优先于相应实体。 But this behavior is different from the above documentation. 但是此行为与上述文档不同。

Could anyone please clarify whether all these settings are interrelated and if so then what's the order of preference among them. 任何人都可以澄清一下所有这些设置是否相互关联,如果可以的话,它们之间的优先顺序是什么。

There is only one setting in all this. 所有这一切只有一种设置。 To clarify: 澄清:

  1. As the MSDN documentation quote says, the Organization.MaxUploadFileSize defines the maximum size of a file that you can attach to an annotation or an email message. 就像MSDN文档中所说的那样, Organization.MaxUploadFileSize定义了可以附加到注释或电子邮件中的文件的最大大小。 That's the one setting you can define or change. 这就是您可以定义或更改的设置。

  2. The user interface to set Organization.MaxUploadFileSize is located at the bottom of the Email tab under System Settings (where you found it). 设置Organization.MaxUploadFileSize的用户界面位于“ System Settings (找到位置)下System Settings Email选项卡的底部。

  3. Valid values for Organization.MaxUploadFileSize are in the range of 0 to 131072 KB. Organization.MaxUploadFileSize有效值在0到131072 KB的范围内。

  4. The FileSize field of the Annotation entity is not a setting, it's the actual size (in bytes) of a specific attachment in one specific annotation record. Annotation实体的FileSize字段不是一项设置,而是一个特定注释记录中特定附件的实际大小(以字节为单位)。 The field is populated once you upload (attach) a file. 上传(附加)文件后,将填充该字段。

    To see an example, create a note somewhere (for example under an account or a contact) and attach a file to it. 要查看示例,请在某处(例如在客户或联系人下方)创建便笺,然后将文件附加到该便笺。 Now open Advanced Find and search for annotations. 现在打开“ Advanced Find并搜索注释。 If you add the FileSize column to the output you'll see the size of the file you attached. 如果将FileSize列添加到输出中,您将看到附件的大小。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

相关问题 Microsoft Dynamics CRM 2016的特定实体属性的数据大小限制的文档 - Documentation for specific entity attribute's data size limits of Microsoft Dynamics CRM 2016 这些注释是做什么用的? @ param,@ return,@ var,并在Entity的注释中设置 - What are those annotation for? @param, @return, @var, and set in annotation of Entity 在每个注解的构造函数之后自动设置属性 - Automatically set attribute after constructor per annotation Java:如何将默认值设置为注释,并将另一个注释作为其属性? - Java: how to set default value to annotation with another annotation as its attribute? 根据注释的属性设置注释的字形文本 - Set annotation's glyphtext based on the annotation's properties Java注释将字段设置为其名称 - Java annotation to set a field to it's name 显示实体属性描述的注释-使用nelmioapidocbundle - Annotation to show Entity's property description - using nelmioapidocbundle Java注解:元素声明为方法,但值设置为属性 - Java annotation: elements declared as method but value set as attribute 如何通过注释注入对象并在此对象上设置属性值 - How to inject an object via annotation and set an attribute value on this object C#中XML元素的元素/属性注释 - XML Element's element/attribute annotation in C#
 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM