Base Enum Properties [AX 2012]
Base Enum Properties [AX 2012]
This topic has not yet been rated - Rate this topic
Updated: December 6, 2011
Applies To: Microsoft Dynamics AX 2012 R2, Microsoft Dynamics AX 2012 Feature Pack, Microsoft Dynamics AX 2012
The following table describes the properties available for enums.
|
Property |
Description |
New in this version of |
|
AnalysisUsage(分析用途) |
标明枚举在 cube 中的作用. 这个设置时自动传播到所有表中引用该枚举的字段. Specify one of the following values.
|
|
|
ConfigurationKey |
Sets the configuration key. |
|
|
CountryRegionCodes |
Specifies the country region code(s) where the view is applicable or valid. 客户端和应用程序用这个属性来启用或禁用国家或区域特性. This is implemented as a comma-separated list of ISO country codes in a single string. The values must match data contained in the global address book. |
AX 2012 |
|
DisplayLength |
Sets the number of characters displayed. Default value is Auto . |
|
|
Help |
为字段创建一个帮助字符串. 当该字段用在窗体上时,显示帮助字符串. |
|
|
Label |
Specifies a label that will be shown in forms and reports. |
|
|
Model |
Specifies which model the table is in. 模型是层中元素的逻辑分组. 一个元素可以存在于一个层中的一个恰当的分组. 元素可以是一个表或类. The same element can exist in a customized version in a model in a higher layer. |
AX 2012 |
|
Name |
Specifies the enum name. 枚举的名字必须表明可能的枚举值或值类型. 比如根据可能的值命名 InclExcl and NextPrevious . 比如根据枚举的值类型命名 ArrivalPostingType and ListStatus . |
|
|
Style |
改变枚举的默认显示. The options are as follows:
|
|
|
UseEnumValue |
该属性若设为 Yes 表明默认 EnumValue 属性被修改 . 将该属性设为 No 可以重设 EnumValue 属性 . |
Best Practices for Enum Properties
Data Dictionary Node in the AOT
Base Enum Properties [AX 2012]的更多相关文章
- Extended Data Type Properties [AX 2012]
Extended Data Type Properties [AX 2012] This topic has not yet been rated - Rate this topic Updated: ...
- View Properties [AX 2012]
View Properties [AX 2012] Other Versions This topic has not yet been rated - Rate this topic Updated ...
- Table Properties [AX 2012]
Table Properties [AX 2012] 1 out of 2 rated this helpful - Rate this topic Updated: July 20, 2012 Ap ...
- Understanding the RelationshipType Enumeration [AX 2012]
Understanding the RelationshipType Enumeration [AX 2012] 3 out of 3 rated this helpful - Rate this t ...
- Hosting custom WPF calendar control in AX 2012
原作者: https://community.dynamics.com/ax/b/axilicious/archive/2013/05/20/hosting-custom-wpf-calendar-c ...
- Temporary TempDB Tables [AX 2012]
Temporary TempDB Tables [AX 2012] 1 out of 4 rated this helpful - Rate this topic Updated: November ...
- Table Groups [AX 2012]
Table Groups [AX 2012] 0 out of 1 rated this helpful - Rate this topic Updated: February 21, 2012 Ap ...
- Overview of Form Control Types [AX 2012]
Overview of Form Control Types [AX 2012] Other Versions 0 out of 1 rated this helpful - Rate this to ...
- Using Controls in a Form Design [AX 2012]
Using Controls in a Form Design [AX 2012] This topic has not yet been rated - Rate this topic Update ...
随机推荐
- 集群中用Memcached来实现session共享
这几天在实现nginx集群的过程中,发现session使用存在问题,登录页面后有时候需要重复登录,和开发部沟通后,决定采用memcached来实现session的共享,这也是各大型网站推荐的方式.开发 ...
- PHP接口类interface的正确使用方法
对于那些初学PHP语言的人来说,对于PHP的接口类也许了解的还不是很深入,接下来我们就来具体讲述PHP接口类interface的使用方法. 如何正确运用PHP XMLReader解析XML文档 深入解 ...
- 利用JBoss漏洞拿webshell方法
JBoss是一个大型应用平台,普通用户很难接触到.越是难以接触到的东西越觉得高深,借用北京公交司机李素丽的一句话“用力只能干出称职,用心才能干出优秀”,在安全上也是如此,虽然JBoss平台很难掌握,但 ...
- Android ListView自定义Adapter使用误区
参考博客:BaseAdapter中重写getview的心得以及发现convertView回收的机制 使用自定义的BaseAdapter实现LIstView的展示 由于Recycler(反复循环器)的机 ...
- set方法内存分析
// // main.m // 04-set方法的内存管理分析 // // Created by apple on 14-3-17. // // #import <Foundation/F ...
- leetcode95 Unique Binary Search Trees II
题目: Given n, generate all structurally unique BST's (binary search trees) that store values 1...n. F ...
- CommonJS规范
CommonJS是一种规范,NodeJS是这种规范的实现.CommonJS是一 个不断发展的规范,计划将要包括如下部分: Modules Binary strings and buffers Char ...
- iOS中model出来一个控制器的尺寸怎么设置?
在xib的控制器里添加self.preferredContentSize = CGSizeMake( , ) 就能修改xib在界面上显示的大小- (void)viewDidLoad { [super ...
- zabbix服务器监控suse系统教程
zabbix服务器监控suse系统教程 作者:尹正杰 版权声明:原创作品,谢绝转载!否则将追究法律责任. 花了近一个星期才学会了如何监控window和linux主机的基本信息以及报价情况(我已经把笔记 ...
- C#: 数据绑定
数据绑定是分离UI和后端主逻辑程序的一种好的办法.这里总结下TextBox, Label, ComboBox, ListBox, DataGridView的数据绑定 数据绑定都是通过DB来和UI控件的 ...