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 ...
随机推荐
- Android 使用PullToRefresh实现下拉刷新和上拉加载(ExpandableListView)
PullToRefresh是一套实现非常好的下拉刷新库,它支持: 1.ListView 2.ExpandableListView 3.GridView 4.WebView 等多种常用的需要刷新的Vie ...
- JBOSS安全配置
1.jmx-console登录的用户名和密码设置 默认情况访问http://localhost:8080/jmx-console就可以浏览jboss的部署管理的一些信息,不需要输入用户名和密码,使用起 ...
- shell 判断字符串是否为数字
本篇文章主要介绍了"shell 判断字符串是否为数字",主要涉及到shell 判断字符串是否为数字方面的内容,对于shell 判断字符串是否为数字感兴趣的同学可以参考一下. #!/ ...
- Android 用Animation-list实现逐帧动画
第一步:先上图片素材,以下素材放到res/drawable目录下: http://blog.csdn.net/aminfo/article/details/7847761 图片素材: 文件名称: ic ...
- Java程序员面试失败的5大原因
下面是Java程序员面试失败最有可能的5大原因,当然也许这5点原因适用于所有的程序员,所以,如果你是程序员,请认真阅读以下内容. #1 说得太少 尤其是那些开放式的问题,如“请介绍下你自己”或“请讲一 ...
- Java控制语句——for循环
for循环语句是支持迭代的一种通用结构,是最有效.最灵活的循环结构. 语法形式: for(初始表达式 ; 布尔表达式 ; 步进){ 循环体 } for循环在执行条件测试后,先执行程序部分,再执行步进. ...
- vim中.swp文件处理
参考: http://blog.csdn.net/lingdxuyan/article/details/4993868 http://www.cnblogs.com/softwaretesting/a ...
- 前端学习——css基础知识,选择器与html模板、值得收藏的html标签
一.css需要的html(采用html5标准) DTD,文档类型声明: <!Doctype html> 文本编码声明: <meta charset="utf-8" ...
- Java File类基本操作
我们可以利用Java.io.File类对文件进行操作,基本操作如下: 1)创建文件: public boolean createNewFile() throws IOException 2)删除文件: ...
- 算法-KMP串匹配
字符串匹配 http://www.cnblogs.com/jingmoxukong/p/4343770.html 模式匹配是数据结构中字符串的一种基本运算,给定一个子串,要求在某个字符串中找出与该子串 ...