[视频]Dynamics AX 使用代码时间探测器改善系统性能
William 11年前 (2013-11-06) 2938浏览 0评论
Microsoft Dynamics AX 使用代码时间探测器跟踪和改善系统性能 开发系列课程,主要内容如下: 一个实例:HcmWorkerLookup 代码时间探测器 在X++代码中使用代码时间探测器 视频: 转载请注明:ww1234...
AX 2009
William 11年前 (2013-11-06) 2938浏览 0评论
Microsoft Dynamics AX 使用代码时间探测器跟踪和改善系统性能 开发系列课程,主要内容如下: 一个实例:HcmWorkerLookup 代码时间探测器 在X++代码中使用代码时间探测器 视频: 转载请注明:ww1234...
William 11年前 (2013-08-29) 3264浏览 0评论
程序调用自身的编程技巧称为递归( recursion),对于开发人员这个概念并不陌生,同样Microsoft Dynamics AX X++语言环境中也可以实现递归算法。 下面的例程演示了如何在X++语言环境中编写递归算法,演示代码的功能为递归遍历“...
William 11年前 (2013-08-13) 4039浏览 0评论
在Microsoft Dynamics AX 销售订单窗体、销售报价单窗体、采购订单窗体,订单头和订单行中有很多一样的字段,比如销售订单头上的“销售税组、维度、站点和仓库、港口、交货方式”等等。Dynamics AX 提供了一个统一的框架用来处理当用...
William 11年前 (2013-08-09) 4661浏览 0评论
Ax中多表关联仅提供Inner Join/Outer Join/Exist join/Not Exist join,而么有union,可以通过Query来实现. 例如 Sql: select ItemType,GoodsName from table...
William 11年前 (2013-07-03) 2571浏览 0评论
如果文本控件不和数据表字段关联,则可以采用下面方式 在文本框控件的”textChange”方法中将输入的字符串过滤一下 this.text(strkeep(this.valueStr(),"0123456789")); 这样用...
William 12年前 (2013-05-31) 2974浏览 0评论
Microsoft Dynamics AX 3.0 – 2012 R2 成本不完全解析视频培训的第4次课程,主要内容如下: Microsoft Dynamics AX 2012 R2 的加权平均结算方法 Microsoft Dynamics AX 2...
William 12年前 (2013-04-06) 3591浏览 0评论
Microsoft Dynamics AX 3.0 – 2012 R2 成本不完全解析视频培训的第2次课程,主要内容如下: Microsoft Dynamics AX 库存成本的基本概念 Microsoft Dynamics AX 的先进先出(FIF...
William 12年前 (2013-04-03) 4877浏览 1评论
Microsoft Dynamics AX 3.0 – 2012 R2 成本不完全解析视频培训的第1次课程,主要内容如下: Microsoft Dynamics AX 库存成本的基本概念 库存交易记录 库存交易记录的基本类型 收货和发货 平均成本价...
William 12年前 (2013-03-28) 4723浏览 0评论
Blogs & code stuff are based on my research & development work. I try my best to publish the safe material. Applying ...
William 12年前 (2013-03-08) 12859浏览 0评论
Microsoft Dynamics AX 登录工具箱 对于Dynamics AX开发人员和系统管理人员往往需要登录不同的环境,比如开发环境、测试环境、生产环境、开发程序层、IDE等。虽然自Microsoft Dynamics AX 4.0之后,我们...
William 12年前 (2013-02-22) 5632浏览 0评论
Dynamics AX, can retrieve output values by using table field and display method. As we know, usually standard dynamics AX fil...
William 12年前 (2013-02-05) 2991浏览 0评论
Dynamics AX 2009 – file and email right permissions in batch job. Files to be read, written and deleted. Email to be ...
William 12年前 (2013-02-04) 7207浏览 0评论
Barcodes have been around for a long time. And despite newer technologies, they remain popular. Deservedly! You can use barco...
William 12年前 (2012-10-25) 3131浏览 0评论
获取Table 记录数和存储空间的一种方法如下: static void RecordCount(Args _args) { SysDictTable dictTable; ; dictTable = new SysDictTable(tablenu...
William 12年前 (2012-10-25) 5232浏览 0评论
X++ does not support constants but has an enumerable type (Enum), which is a list of literals. You need to create an Enum in ...
David M Probst 12年前 (2012-09-11) 1743浏览
I recently reviewed the new training material for the AX2012 version of the Environmental dashboard (EMS). A little late in t...
David M Probst 12年前 (2012-09-11) 1978浏览
I recently reviewed the new training material for the AX2012 version of the Environmental dashboard (EMS). A little late in t...
David M Probst 12年前 (2012-08-21) 1951浏览
Most presentations I have made during the last few years have involved one or more personas. Shannon the machine operator, Li...
David M Probst 12年前 (2012-08-21) 1958浏览
Most presentations I have made during the last few years have involved one or more personas. Shannon the machine operator, Li...
William 13年前 (2012-06-08) 2984浏览 0评论
原文地址:http://dev.goshoom.net/en/2011/10/pessimistic-locking/ AX: Support for pessimistic locking Posted by Martin Dráb on 30 O...