[转]Microsoft dynamics Ax Query 实现 union 关键字
William 12年前 (2013-08-09) 4936浏览 0评论
Ax中多表关联仅提供Inner Join/Outer Join/Exist join/Not Exist join,而么有union,可以通过Query来实现. 例如 Sql: select ItemType,GoodsName from table...
ww12345678 的部落格 | AX Helper
William 12年前 (2013-08-09) 4936浏览 0评论
Ax中多表关联仅提供Inner Join/Outer Join/Exist join/Not Exist join,而么有union,可以通过Query来实现. 例如 Sql: select ItemType,GoodsName from table...
William 12年前 (2013-08-06) 3313浏览 0评论
In axapta 2012 all the common forms are listpage forms , In list page form we can’t override any method so any validati...
William 12年前 (2013-08-03) 3453浏览 0评论
Microsoft Dynamics AX 3.0 – 2012 R2 成本不完全解析视频培训的第5次课程,主要内容如下: 物料组的主要用途: •每个物料组都可过帐到不同的总帐科目。 •使用物料组分类查询有关产品组的销售、采购、财务数据。 过账模板...
William 12年前 (2013-07-30) 1833浏览 0评论
Dear Friends, Thanks to Simon Andras, who authors the Cognitive Group blog http://www.cognitive-group.com/blog/ who asked me...
Ganas1 12年前 (2013-07-29) 2666浏览
Parameter sniffing is the default behavior that SQL Server uses when compiling parameterized SQL statements. When a stored pr...
Youxuan Jin 12年前 (2013-07-26) 1776浏览 0评论
Inevitably, we can’t completely get rid of all line-based data accesses or calculations. So, we discuss here a few ways...
David M Probst 12年前 (2013-07-24) 1818浏览
When we made the Case management feature set in the AX 2012 release we reused a number of existing functionality or design co...
David M Probst 12年前 (2013-07-24) 1726浏览
With the release of the Cumulative update 6 (CU6) for Microsoft Dynamics AX 2012 R2 on June 26 th we introduced an optional e...
David M Probst 12年前 (2013-07-24) 1687浏览
When we made the Case management feature set in the AX 2012 release we reused a number of existing functionality or design co...
David M Probst 12年前 (2013-07-24) 1933浏览 0评论
With the release of the Cumulative update 6 (CU6) for Microsoft Dynamics AX 2012 R2 on June 26 th we introduced an optional e...
Youxuan Jin 12年前 (2013-07-23) 1640浏览 0评论
This pattern applies to a wide range of reports. It is the most applied pattern so far as based on our experience. The idea i...
Youxuan Jin 12年前 (2013-07-23) 2005浏览 0评论
This post is about Query based reports in Ax2012. Ax2012 supports table display method in query based reports. It is convenie...
Youxuan Jin 12年前 (2013-07-19) 1748浏览 0评论
We post it second because it is a low hanging fruit for better performance. One example helps explains this pattern. Here is ...
Youxuan Jin 12年前 (2013-07-19) 1849浏览 0评论
Introduction Ax reports were migrated to Microsoft SSRS in Ax2012, mostly in the form of Report Data Provider classes (RDP)....
chwolf 12年前 (2013-07-19) 1626浏览 0评论
Microsoft Dynamics AX 2012 uses SSRS as its report engine. For each data source in a report, SSRS retrieves the data by makin...
William 12年前 (2013-07-19) 2292浏览 0评论
在过去的几个星期里,微软的Windows 8应用开发团队一直都比较忙,推出了现有应用的重大更新、并且带来了Yammer Feed和网络测速软件。而在本周,Microsoft Dynamics团队又至少推出了3款Windows 8应用,并且都是用来配合...
William 12年前 (2013-07-16) 3688浏览 0评论
近2个多月以来,wordpress 博客一直被“建立数据库连接时出错”所困扰,几乎每天早上博客都会显示“建立数据库连接时出错”而无法登录,需要重启 apache 服务或者服务器临时解决该问题。在Google上以“建立数据库连接时出错”为关键字搜索后,...
William 12年前 (2013-07-12) 1768浏览 0评论
The number sequence is the control point to ensure the transactions, and master data IDs are serialized, the IDs structure is...
William 12年前 (2013-07-05) 1970浏览 0评论
In Cumulative Update 6 for Dynamics AX 2012 R2 we have included a new expression editor forthe Product configurator. You can ...
William 12年前 (2013-07-03) 2816浏览 0评论
如果文本控件不和数据表字段关联,则可以采用下面方式 在文本框控件的”textChange”方法中将输入的字符串过滤一下 this.text(strkeep(this.valueStr(),"0123456789")); 这样用...