tile label using [#99ccff]property BackgroundColor - > expression=Iif(Fields!Flag.Value = "1", "Green","Transparent") Read More
转载 2021-08-13 10:21:13
217阅读
Deploy script: Publish-AXReport -SkipReportServerAdminCheck -ReportName [AOTREPORTNAME]such as:Administrative tools - > Microsoft Dynamics AX 2012 Management Shell
转载 2021-08-13 10:46:49
140阅读
AX 系统中,用户可以自己添加财务维度(Finance Dimension)来满足财务核算和财务分析的要求。财务维度的设计在AX 2012AX 2009 及以前版本中的改动较大,相应的步骤和设置完全不同,用户需要执行哪些以下操作在AX2012系统中添加维度以保证其可以正确设置和使用:a. General ledger > Setup > Chart of account > Configure account structures > select one that is being used in your company by some of your Mai Read More
原创 2021-08-13 09:54:34
139阅读
// This is a framework class. Customizing this class may cause problems with future upgrades to the software.class XppSource{ #define.defaultIndentColumns(4)
转载 2021-08-13 10:39:29
97阅读
AX2012的Form开发中,微软引入了新的控件ReferenceGroup,它用在Lookup其他表RecId的时候显示更人性化的字段,它的使用还必须从表的索引说起。AX2012的表有这些索引(http://msdn.microsoft.com/en-us/library/hh812105.aspx):Primary key:主键用来唯一标识一条纪录,比如InventTable的ItemId
转载 2021-08-13 10:28:41
126阅读
In this post, I will take you through a very simple functionality called the intercompany accounting in dynamics AX 2012. This is a simple walk through of the setup required to
AX
转载 2021-08-13 10:26:41
457阅读
setp 1. First create New Edit.setp 2.Create New TableFirst Table Name is NParentRelthen drag and drop the newly created Edt in NParentRel Tablesetp 3.Create Index for new created EDT in NParentRel Tablethe properties on index is AllowDuplicates to Noand Alternativekey to Yessetp 4.then select the NP Read More
原创 2021-08-13 09:52:40
338阅读
Resolve:Stop the AOSBack up the table SYSXPPASSEMBLYGet the create script of table SYSXPPASSEMPLY and Drop the tableCreate a new SYSXPPASSEMBLY table with the scriptBack up
转载 2021-08-13 10:43:15
351阅读
add the display method under the table methods nodes.public display WorkflowStatusUserName getApproverUserName(){ WorkflowTrackingStatusTable trackingStatusTable; WorkflowTrackingTable workflowTrackingTable; ; select firstOnly User from workflowTrackingTable ord... Read More
原创 2021-08-13 09:54:29
152阅读
static void THK_importLedgerJournalTrans(Args _args){ Filename fileName = "C:\\Users\\ksiu3880\\Desktop\\GL Journal test.xlsx"; LedgerJournalId ledgerJournalId
转载 2021-08-13 10:23:44
193阅读
Well I hope everyone is having a fine week so far. Oh Wednesdays, the furthermost point between two weekends. It's a day of great productivity, as we push towards that glimpse,
转载 2021-08-13 10:38:38
107阅读
After install Data import/export framework (DIXF, DMF) on AX 2012 R2 and above, we should make sure two following things readyThe "Microsoft Dynamics Ax Data Import Export Framework Service Users
原创 2014-12-02 11:11:44
1060阅读
From: https://community.dynamics.com/ax/b/mukeshhirwani_dynamicsax/archive/2012/09/07/how-add-financial-dimension-on-forms-inside-ax2012.aspx1. Performa) Open AOT>>Data Dictionary>>Extended Data Types type/select DimensionDefault and drag it in table which will be used further as a datas Read More
原创 2021-08-13 09:54:31
406阅读
1.//Create party for the vendorpublic void createParty(VendorRequestCreate _vendorRequestCreate){ ; if(_vendorRequestCreate.DirPartyType == DirPartyBaseType
转载 2021-08-13 10:27:23
1334阅读
Today I want to talk about executing SQL statements in X++ on both the currentAX database and external databases. This is something probably every AX developer will have to do at some point.You’ll want to do this for many reasons; to execute stored procedures, to improve performance, to get data fro Read More
原创 2021-08-13 09:46:31
652阅读
1. Add a new method inhcmWorkertable, and add this script :public static client void lookupWorkerByLegalEntity(FormStringControl _lookupctrl, Int64 _LegalEntity)
ide
转载 2021-08-13 10:22:21
233阅读
static void FAN_GLImport(Args _args){ AxLedgerJournalTable header = new AxLedgerJournalTable(); AxLedgerJournalTrans trans = new AxLedgerJournalTrans(); container ledgerDim, offsetDim; LedgerJournalNameId ledgerJournalNameId = "GeneralJR"; Dimen... Read More
原创 2021-08-13 09:46:34
857阅读
To get financial dimension value from worker position, add a new method inhcmWorkerTable with script like below:public static str getDimensionValue (HcmWorkerRecId _workerRecId, Name _DimensionName, utcdatetime _asOfDate = DateTimeUtil::utcNow()){ DimensionAttribute... Read More
原创 2021-08-13 09:43:10
453阅读
Common requirement is to show the reports in customer’s language.[example : Quotations, sales confirmations, invoices, Free text invoices, Return order acknowledgements , Agreements, Purchase order confirmations etc].This was easily achievable in Dynamics AX 2009 reports by usingelement.design().lan Read More
原创 2021-08-13 09:46:35
370阅读
对于我们开发人员来说,系统默认的字体,本人实在不喜欢,尤其是属性字体【太小,太细,根本看不清】,每次做一个新项目【AX2012】第一件事就是更改字体。由于AX2012没有像AX2009那样,可以工具选项中自定义更改字体。微软也真是的,干吗把这个功能取消呢。有点不解啊。所以就写个小Job,update一下。
转载 2021-08-13 10:37:12
51阅读
  • 1
  • 2
  • 3
  • 4
  • 5