随笔分类 -  Dynamics AX

DAX
摘要:public Axapta Logon() { // NameValueCollection settings = (NameValueCollection)System.Configuration.ConfigurationSettings.GetConfig("AXConnection "); string username = System.Configuration.ConfigurationSettings.AppSettings["UserName"].ToString(); string password = System.Configur 阅读全文
posted @ 2012-12-26 10:36 AOT 阅读(250) 评论(0) 推荐(0)
摘要:2008里右键AX Report Deploy工具, 选择Run as Administrator, 如果从VS部署的话,选择run as administrator 启动 visual studio 阅读全文
posted @ 2011-01-11 21:47 AOT 阅读(266) 评论(0) 推荐(0)
摘要:Issue: BC Proxy account fails to start for the SSRS reports in Enterprise Portal with RPC exception 5 When Enterprise Portal starts for the first time and displays SSRS reports, normally two Business ... 阅读全文
posted @ 2011-01-06 08:47 AOT 阅读(884) 评论(0) 推荐(0)
摘要:How it works:1. There is one special table in AOT\System Documentation\Tables\UtilElements, firstly, create a similar table UtilElements_Job with those fields: utilLevel(Enum: UtilEntryLevel), recordT... 阅读全文
posted @ 2010-12-08 13:30 AOT 阅读(357) 评论(1) 推荐(0)
摘要:第一步,先在form的声明的地方声明变量: 第二步,数据源(datasource)对应的表的ini方法:       public void init()       {       super();       criteriaPosted=this.query().dataSourceName('YouTable').addRange(fieldNum(YouTable,FieldName))... 阅读全文
posted @ 2010-12-08 10:18 AOT 阅读(282) 评论(0) 推荐(0)
摘要:recCount = ABCShipTrans_ds.numberOfRowsLoaded();   Tips: How to set text to one control, for example, display the count of record in a IntEdit control: PackageCount 1. Set AutoDeclaration property... 阅读全文
posted @ 2010-12-07 11:34 AOT 阅读(275) 评论(0) 推荐(0)
摘要:主要借用临时表 TmpFrmVirtual 阅读全文
posted @ 2010-11-27 14:18 AOT 阅读(523) 评论(0) 推荐(0)
摘要:主Form 点击按钮弹出子Form 用于选择Employee. 阅读全文
posted @ 2010-11-27 14:16 AOT 阅读(297) 评论(0) 推荐(0)
摘要:新手上路:X++中的subStr: Retrieves part of a string和平常我们用的SubString 不一样的是,_number 参数允许负数, 当_number < 0 时,表示从_position位置开始倒推几位.Example:Parameter Description _text The original string. _position The positio... 阅读全文
posted @ 2010-11-25 19:16 AOT 阅读(363) 评论(0) 推荐(0)