lingdanglfw(DAX)

导航

2012年12月26日

dynamics ax2009 ep on sharepoint 2010

摘要: Windows SDK for Windows Server 2008 and .NET Framework 3.5 (only the .NET Development Tools package is required) http://www.microsoft.com/downloads/details.aspx?FamilyID=e6e1c3df-a74f-4207-8586-711ebe331cdc&displaylang=enMicrosoft Visual Studio 2008 Shell (isolated mode)http://www.microsoft.com/ 阅读全文

posted @ 2012-12-26 12:22 lingdanglfw 阅读(857) 评论(0) 推荐(0) 编辑

2012年7月8日

consume AIF webservice

摘要: 1. endpoint, local endpoint2.action policies -- > data policies3.exceptions4.bc connection5.wsHttpWindowsAuthAif6.anonymous Authentication7.directory permission 阅读全文

posted @ 2012-07-08 12:51 lingdanglfw 阅读(140) 评论(0) 推荐(0) 编辑

2012年5月25日

Dynamics CRM

摘要: GetCrmService method: private MyCrmService.CrmService GetCrmService() { /* // Setup the Authentication Token MyCrmService.CrmAuthenticationToken token = new MyCrmService.CrmAuthenticationToken(); token.OrganizationName = "crm"; MyCrmService.CrmService crmService = new MyCrmService.CrmServi 阅读全文

posted @ 2012-05-25 14:33 lingdanglfw 阅读(218) 评论(0) 推荐(0) 编辑

2011年11月23日

odd method

摘要: if (range.FieldLabel == (new dictType(typeId(CustAccount) >> 16).label())) SysDictField dictField; SysDictType dictType; ; dictField = new SysDictField(range.Table_Id,range.Field_Id); if (dictField.typeId()) { dictType = new SysDictType(dictField.typeId()); if(dictType.name() == "CustAcco 阅读全文

posted @ 2011-11-23 05:52 lingdanglfw 阅读(154) 评论(0) 推荐(0) 编辑

2011年11月18日

ax multi-layer technology

摘要: if there are var, cus,usr layer in ax system, and modify object in var layer and usr layer, the code will keep var layer code until you modify it in usr layer. and then whatever you modify it in var layer or usr layer, the code is saved in usr layer.if you want tomigrate the codefrom usr layer tovar 阅读全文

posted @ 2011-11-18 15:41 lingdanglfw 阅读(181) 评论(0) 推荐(0) 编辑

2011年8月12日

"" is not equal to '' in query

摘要: this.query().dataSourceTable(tablenum(CustInvoicejour)).addRange(fieldnum(CustInvoicejour,InvoiceId)).value('(CustInvoicejour.InvoiceId == "")');Rightthis.query().dataSourceTable(tablenum(CustInvoicejour)).addRange(fieldnum(CustInvoicejour,InvoiceId)).value("(CustInvoicejour.I 阅读全文

posted @ 2011-08-12 04:46 lingdanglfw 阅读(165) 评论(0) 推荐(0) 编辑

2011年7月16日

call webservice

摘要: 1. install soapsdk2. write a webservice for test public string Add(string ssLeft, string ssRight){return ssLeft + " and " + ssRight;}3. call in ax URL url; xml xml; COM WSCOM; ; new InteropPermission(InteropKind::ComInterop).assert(); WSCOM = new COM("MSSOAP.SOAPClient30"); url = 阅读全文

posted @ 2011-07-16 02:12 lingdanglfw 阅读(173) 评论(0) 推荐(0) 编辑

2011年7月12日

enterprise portal

摘要: 1、微软两个补丁必须安装。2、全语言包license。3、日期期间,若为2011年后要调整,表方法pupolate。4、cue在过滤条件里面5、报表要加sharelibrary,deploy后确认名字。 阅读全文

posted @ 2011-07-12 22:40 lingdanglfw 阅读(224) 评论(0) 推荐(0) 编辑

2011年4月2日

run on server ,run on call from ,run on client

摘要: run on server ,run on call from ,run on client在类的配置上要慎重,在参数传递的时候,类如果是在窗体里面实例化,那个参数多数在客户端内存,如果调用到server端的类,有可能参数传递不过去LedgerBalanceSheetDimPrint(中国式财务报表)就存在这个问题,未记账勾选之后,在AX4.0上是运行在server端,就没有问题,在AX5.0改成了call from,这个选项就没有用了(不起作用),改回server端就可以了。另外类似map,list,set等ax的数据结构也存在类似的问题。在这里做个备注。 阅读全文

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

2011年3月7日

AX Call StoreProcedure

摘要: 调用存储过程的类要run on server否则有时候调不起来函数也要加server关键字改过存储过程要重启客户端 阅读全文

posted @ 2011-03-07 14:18 lingdanglfw 阅读(152) 评论(0) 推荐(0) 编辑