background preloader

DAX

Facebook Twitter

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.

Creation of new financial dimension in Dynamics Ax « CristianRamon's Blog (CRG)

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.

EditMethod

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).

Jeroen Doens) - Dynamics AX Blog - Part 5

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). 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 1 comment Smart projects The Agenda: 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. 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.

jinx´s AX Blog - Manipulation an der Form ausserhalb der Form Teil 2

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. .addControl(... auch ein beliebiges FormControl hinzugefügt werden. Element.design().addControl(FormControltype::String, "Neue Control"); Hierzu wird die FormGridControl „Grid“ aus der Maske gesucht und dort das neue Feld hinzugefügt. parentControl.addControl(…

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.

Dynamics AXBR Blog destinado a usuários do Dynamics AX no Brasil.

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. Development-axapta. Adding a “Go to the Main Table Form” link. 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.

Tutorial Form MultiSelectCheckBox - Axaptapedia

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. Here is a simple tutorial form based on InventTable datasource. Coloring Grids in DAX - Arijit Basu. 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 :)