this is what I’ve found while playing LogisticsPostalAddress X++ query this is the first part of logisticspostaladdress, see the part 2 here I created a X++ query like this source below select LogisticsPostalAddress where LogisticsPostalAddress.RecId=5637155184 the result was 0 the problem is, the record was exists on the table, but why it is hidden on […]

Read More

In Out Inventory Stock

  • Oct 30, 2017

I’ve just made a Form Application that calculate In Out Inventory Stock, enter the filter, and press the Calculate button and this is how I do it create a temporary table called GLK_TBL_INOUTINV Table Type : InMemory the Fields are: DateFinancial (extended), DatePhysical (extended), Description, InventLocationId (extended), InventSiteId (extended), ItemId (extended), ItemName (extended), QTYAwal, QTYAkhir, QTYIn, […]

Read More

I got a project form that calculate fields on the grid on fly, we can use a display method for this solution so this is how I do it on the datasource ds, we create a method, and we passed the method on the grid

Read More

void clicked() { super(); startLengthyOperation(); sysDatabaseLog_ds.research(); endLengthyOperation(); } thanks to msdn, let me copy paste the links and the article here How to: Create Progress Indicators Dynamics AX 2009 Other Versions Use a progress indicator during operations that take more than 2 seconds. Use an hourglass mouse pointer if the process takes 2-7 seconds. Use […]

Read More

Tips Reference Category Group Fields We need to add information about salesman according each address on these customers This is how we did it Go to AOT, open form LogisticsPostalAddress  open table LogisticsPostalAddress fill the property like the picture below while you type extended data type, please aware, there will be warning box “to add […]

Read More

select statement in x++

  • Sep 04, 2017

Im copy paste the manual from msdn about select statement in x++, I hope it usefull for ax programmer Select Statement Syntax [AX 2012] Updated: February 3, 2012 Applies To: Microsoft Dynamics AX 2012 R3, Microsoft Dynamics AX 2012 R2, Microsoft Dynamics AX 2012 Feature Pack, Microsoft Dynamics AX 2012 SelectStatement = select Parameters Parameters [ [  FindOptions  ] [  FieldList  from ] […]

Read More

we have an error while deleting transfer order on Inventory management – Periodic – Transfer order how to solve it: To delete the output order just go to Inventory management – Inquiries – Output order

Read More

while we creating direct delivery from sales order, it raised an error: direct delivery and intercompany purchase orders cannot be created for vendor [….], because change management is enabled and required for this vendor how to solve it: go to master vendor, find the vendors make sure that override settings, activate change management, and allow […]

Read More

Hi Guys, case is, I have visual studio 2013 ultimate for deploying and modifying AX SSRS report, suddenly i have an error while I was deploying the reports   the error is: Error 1 An error occurred : Access is denied.Error 1 An error occurred : Access is denied. If User Account Control (UAC) is […]

Read More

as default, di ax 2012 customer master page there are no “search name” column shows, the question is how to show this column solution: open AOT Goto Form CustTableListPage  Look at Datasources->DirPartyTable->Fields->Name Alias  Drag this field into the grid  Compile and reopen ax    and the result is :  

Read More