Creation of new financial dimension in Dynamics Ax « CristianRamon's Blog (CRG) There are two different ways to create a new Financial Dimension in Dynamics Ax. The first way is by means of using the Financial Dimension Wizard. This wizard helps you on dimension creation, however seems that this wizard has some bugs either in 4.0 and 2009 versions. Next link explains where to find the wizard and needed code to fix the bug: Financial dimension Wizard creation Second way to create those dimensions is modify required objects manually. Creation of new Financial Dimension manually Cristian Like this: Like Loading...
Tags: development, dimension, dynamics AX, financial dimension.
DescriptifClasse/Tables. Args. Lookup. Dimension. Query. Jeroen Doens) - Dynamics AX Blog - Part 5. Records with RecId 101090 August 4, 2010 2 comments I was using the postload method of the HRMBenefitType-table to fill the description-field with language-sensitive description (from LanguageTxt). This works fine when I view the record, but not when I use a lookup. I’ve put a break-point on my postload method and noticed the recId (this.recid of the HRMBenefitType table). This is always the 101090. The solution to this problem is simple. Best Practices – Technical Best Practices for Dynamics AX June 28, 2010 No comment While surfing on the web about Ax Best-Practices I found the following link on Packt Publishing.
This article is a part of the book ‘Quality Assurance for Dynamics AX-Based ERP Solutions‘, maybe I’ll read it. (more…) Enterprise Portal – titlebar issue (part 2) June 25, 2010 While I was checking my previous Enterprise Portal titlebar issue, me and my colleagues found a second bug. Anyone any idea? Enterprise Portal – titlebar issue June 21, 2010 (Source: Microsoft) June 18, 2010 (more…) Refresh picture in a specific form - Microsoft Dynamics AX - Microsoft Dynamics AX. A button code to open a new form - Dynamics AX / Axapta - Technical Forum - Dynamics User Group. Adding a “Go to the Main Table Form” link | Fatih DEMİRCİ. Jinx´s AX Blog - Manipulation an der Form ausserhalb der Form Teil 2. Nachdem nun in diesem Artikel schon die ersten Schritte unternommen und vorhandene Elemente manipuliert wurden, werden nun auch neue Elemente hinzuzugefügt. Einfügen einer neuen Formcontrol im Design. FormRun fr; Args args = new ARgs(); FormStringControl fsc; ; args.name(formstr(InventTable)); fr = new FormRun(args); fr.init(); // Neue Control (Tabellenfeld "AltItemID") im Design anfügenfsc = fr.design().addDataField(fr.dataSource(1).id(),fieldnum(InventTAble, altitemid)); fr.run(); fr.wait(); In dem o.g.
Beispiel wird das Feld Ersatz-Artikelnummer direkt im Design der Form eingefügt. Bei einem Datenfeld ist es wichtig das als Datasource immer die ID der FormDatasource übergeben wird um die richtige Referenz zu erhalten. Anstelle eines Datenfeldes kann natürlich auch jedes andere Formcontrol eingefügt werden, was wiederrum anderen Möglichkeiten der weiteren Verwendung bieten kann. Möchte man kein Datenfeld erzugen kann mit .addControl(... auch ein beliebiges FormControl hinzugefügt werden. Dynamics AXBR Blog destinado a usuários do Dynamics AX no Brasil.
Caros, Hoje fui chamado para tentar resolver um problema, o consultor tinha uma Ordem de Compra que estava sendo contabilizada pela metade, no entanto, quando você consultava o Diário Razão Auxiliar ele mostrava corretamente. Conversando com um amigo meu, o Gustavo Alves, ele me explicou sobre este processo e fui atrás para entender. O processo é bem bacana, consiste em postergar a transferencia dos lançamentos contábeis do subledger para o generalledger. O principal motivo para esta configuração é fazer a contabilidade em outro momento e com isso economizar tempo no post das transações! Imagine por exemplo que você tem uma NF que irá gerar vários lançamentos contábeis, com este processo ativo ele irá fazer o básico e o restante será executado em outro momento. []s Pichler. Development-axapta. Adding a “Go to the Main Table Form” link | Fatih DEMİRCİ. Tutorial Form MultiSelectCheckBox - Axaptapedia. [edit] A tutorial about MultiSelect options in Dynamics AX download the project [edit] Preview [edit] Description Sometimes, simply selecting the lines you want in a datasource and pressing OK (or other button) is not enough for the users.
They want to clearly see what they have selected, be able to easily modify the selecting, and to their liking whould be to see a checkbox on the left of the grid for each line. (For an example, see CustTransOpen form where you mark transaction with a checkbox) Here is a simple tutorial form based on InventTable datasource. [edit] Update (2007-03-13) Added 2 more Tabs - using Set(Types::Record) and InventTable.setTmp() - to see if the difference with StandardMultiSelect is smalled for these processing options Added a chechbox on the form to control whether the Infolog messages with Itemname are shown. [edit] Update (2007-03-06) Various tabs now allow selecting different processing options. [edit] Resuls I received on my DAX installations (2-tier and 3-tier)
Coloring Grids in DAX - Arijit Basu | Dynamics AX MVP. Display: Display: Now to get the color codes u want , look at the form tutorial_Form_DisplayOptions.Tweak it a bit by adding this line in\Forms\tutorial_Form_DisplayOptions\Designs\Design\[ButtonGroup:ButtonGroup]\Button:SetColor\Methods\clicked()if (conlen(c)) { backColor = WinAPI::RGB2int( conpeek(c,1), conpeek(c,2), conpeek(c,3) ); Info(Strfmt("%1",backColor)); // Add this line // Clear the display options for the once which allready has been set. for (common = custTable_ds.getFirst(); common; common = custTable_ds.getNext()) {........When u run the form & select the color u want, the int value will be there in the infolog :)If you want to turn off active highlighting then select the Grid, Click on Properties & Set the property ' HighlightActive' to No. :)Happy DAX-ing :)