lingdanglfw(DAX)

导航

2011年2月28日

ax2009 + sql2008

摘要: Dynamics AX 2009 SP1 Reports Deployment Issue on SQL Server 2008One of our clients tried to install SQL Server 2008 Reporting Services with Microsoft Dynamics AX 2009 Reporting Extensions on a 64-Bit Windows Server 2008 system. But they have got some error messages during the AX reporting extensions 阅读全文

posted @ 2011-02-28 14:11 lingdanglfw 阅读(250) 评论(0) 推荐(0) 编辑

2011年2月24日

get record count of form datasource

摘要: modified class : SysQuerypublic client server static Integer countTotal(QueryRun _queryRun,int num = 1)//add datasource num{ container c = SysQuery::countPrim(_queryRun.pack(false),num); return conpeek(c,1);}private server static container countPrim(container _queryPack,int num = 1)//add datasource 阅读全文

posted @ 2011-02-24 11:36 lingdanglfw 阅读(296) 评论(0) 推荐(0) 编辑

2010年6月12日

Run server /Run Client /Run Call From

摘要: public void calculateRowsCalcList( Map _rowsCalcExpressionList, Map _ledgerBalColList, container _rowList, container _rowListIdx ){ MapIterator ledgerBalColListIterator; LedgerBalColumnsDim ledgerBalC... 阅读全文

posted @ 2010-06-12 16:07 lingdanglfw 阅读(444) 评论(0) 推荐(0) 编辑

2009年7月28日

在QueryRange里面慎用strfmt拼出来的条件

摘要: gStartAmount = -40000; gEndAmount = -1;使用下面的语句 gStrAmountRangeCredit = strfmt("%1..%2",gStartAmount,gEndAmount); gStrAmountRangeDebit = strfmt("%1..%2",-1*gEndAmount,-1*gStartAmount); Qbds.addRange(fi... 阅读全文

posted @ 2009-07-28 19:20 lingdanglfw 阅读(344) 评论(1) 推荐(0) 编辑

2009年7月3日

ItemID lookup

摘要: 一般lookup是建立在扩展数据类型上的,使用Formhelp配窗体或者表上的AutoLookup组,但是InventTable中的ItemID的lookup很特别,是基于Index的。 阅读全文

posted @ 2009-07-03 12:22 lingdanglfw 阅读(150) 评论(0) 推荐(0) 编辑

2009年2月10日

Form中对象的引用

摘要: •Form中对象的引用 Object Access from X++ FormRun ... 阅读全文

posted @ 2009-02-10 17:10 lingdanglfw 阅读(212) 评论(0) 推荐(0) 编辑

Task

摘要: Automatically open grid filter when opening form In some forms it may be convenient that the grid filter (new in Ax 4.0) is activated automatically. If you want to get that behaviour, just add one l... 阅读全文

posted @ 2009-02-10 16:24 lingdanglfw 阅读(303) 评论(0) 推荐(0) 编辑

2008年11月17日

lookup (relation)

摘要: EDT(relation to Table)-->Table(form ref to Master Form) or Table(relation EDT field to Master Table) 阅读全文

posted @ 2008-11-17 11:59 lingdanglfw 阅读(178) 评论(0) 推荐(0) 编辑

2008年10月14日

CustVend Settlement by programming

摘要: 在这里备注一下:(程序结算) static void testCustTransSettle(Args _args) { custtable ct; custaccount acc; custtrans cut, cut1,cut2; custTransOpen custVendTransOpen; //初始化结算辅助类,传入客户代码 Specifi... 阅读全文

posted @ 2008-10-14 10:17 lingdanglfw 阅读(261) 评论(0) 推荐(0) 编辑

2008年9月23日

Crystal Report in AX

摘要: COM com = new COM("CrystalRuntime.Application"); COM report = new COM("CrystalRuntime.Report"); str pathfile = "F:\\CrystalReport1.rpt"; ; report = com.OpenReport(pathfile,... 阅读全文

posted @ 2008-09-23 13:59 lingdanglfw 阅读(221) 评论(0) 推荐(0) 编辑