outsourceax.wordpress.com
RecId & Tablebrowser | outsourceax
https://outsourceax.wordpress.com/2011/01/11/recid-tablebrowser
Just another WordPress.com site. January 11, 2011. A table with recId columns (other than its own recId) will not show these in the table browser. Take reqTransCov for example. It has two additional recId columns, linking it to reqTrans: ReceiptRecId and IssueRecId. You will not see those in the table browser. That is because adding them to a grid will always fail. Axapta will pretend it did add them, but in fact it did not. Try it out. Add a new display method to the datasource (or table). You are comme...
outsourceax.wordpress.com
How to set up Production module in AX2009 | outsourceax
https://outsourceax.wordpress.com/2011/02/24/how-to-set-up-production-module-in-ax2009
Just another WordPress.com site. How to set up Production module in AX2009. How to set up Production module in AX2009. February 24, 2011. The production module is a subsidiary module of Inventory. It tracks the production process of manufactured items. The Inventory items and Bill of materials are set up in the Inventory module. Calendars, working time templates, work centers, and employees are set up in Basic module. Simple BOM: Lamp Assembly of a lamp and lamp shade. Transferring the cost of the BOM co...
outsourceax.wordpress.com
Finding files with WinAPI | outsourceax
https://outsourceax.wordpress.com/2011/01/11/finding-files-with-winapi
Just another WordPress.com site. Finding files with WinAPI. Finding files with WinAPI. January 11, 2011. Axapta’s WinAPI class has a bunch of static methods to handle files. The code example below shows how to utilize some of these methods to find files. The two methods used to fetch all files matching the search criteria are findFirstFile() and findNextFile(). Don’t forget to clean up after yourself with findClose(). The code also uses three different find methods:. Static void FindFile(Args args).
outsourceax.wordpress.com
Dynamics AX 2009 Training – Finance | outsourceax
https://outsourceax.wordpress.com/2010/12/08/dynamics-ax-2009-training-finance
Just another WordPress.com site. Dynamics AX 2009 Training – Finance. Dynamics AX 2009 Training – Finance. December 8, 2010. AX 2009 Finance training power point slides. Dynamics AX 2009 finanace training. Http:/ static.slidesharecdn.com/swf/ssplayer2.swf? Leave a Reply Cancel reply. Enter your comment here. Fill in your details below or click an icon to log in:. Address never made public). You are commenting using your WordPress.com account. ( Log Out. Notify me of new comments via email.
outsourceax.wordpress.com
outsourceax | outsourceax
https://outsourceax.wordpress.com/author/outsourceax
Just another WordPress.com site. How to set up Production module in AX2009. February 24, 2011. The production module is a subsidiary module of Inventory. It tracks the production process of manufactured items. The Inventory items and Bill of materials are set up in the Inventory module. Calendars, working time templates, work centers, and employees are set up in Basic module. Vendors created in Account payable module if they are going to be used as Work centers (Subcontractors). Transferring the cost of ...
outsourceax.wordpress.com
December | 2010 | outsourceax
https://outsourceax.wordpress.com/2010/12
Just another WordPress.com site. Archive for December, 2010. Dynamics AX 2009 Training – Finance. December 8, 2010. AX 2009 Finance training power point slides. Dynamics AX 2009 finanace training. Http:/ static.slidesharecdn.com/swf/ssplayer2.swf? Dynamics AX 2009 Training–BOM Calculation. December 8, 2010. Training for BOM Calculation. Dynamics AX 2009 BOM Calculation. Http:/ static.slidesharecdn.com/swf/ssplayer2.swf? Dynamics AX 2009 Training–Master planning. December 8, 2010. Ax 2009 mrp training.
outsourceax.wordpress.com
February | 2011 | outsourceax
https://outsourceax.wordpress.com/2011/02
Just another WordPress.com site. Archive for February, 2011. How to set up Production module in AX2009. February 24, 2011. The production module is a subsidiary module of Inventory. It tracks the production process of manufactured items. The Inventory items and Bill of materials are set up in the Inventory module. Calendars, working time templates, work centers, and employees are set up in Basic module. Vendors created in Account payable module if they are going to be used as Work centers (Subcontractors).
outsourceax.wordpress.com
January | 2011 | outsourceax
https://outsourceax.wordpress.com/2011/01
Just another WordPress.com site. Archive for January, 2011. Finding files with WinAPI. January 11, 2011. Axapta’s WinAPI class has a bunch of static methods to handle files. The code example below shows how to utilize some of these methods to find files. The two methods used to fetch all files matching the search criteria are findFirstFile() and findNextFile(). Don’t forget to clean up after yourself with findClose(). The code also uses three different find methods:. Static void FindFile(Args args).
outsourceax.wordpress.com
Axapta & precision | outsourceax
https://outsourceax.wordpress.com/2011/01/11/axapta-precision
Just another WordPress.com site. January 11, 2011. Brandon reported his frustration about un-Real precision. Yesterday. And he has a point of course. However, I think the real issue here is not how many digits there are after the decimal sign, it is how many decimals there are overall. Axapta handles a precision of up to 16 digits. This can become an issue when dealing with very large numbers and high precision at the same time (inventory closing for example). Static void realPrecision(Args args). You ar...
outsourceax.wordpress.com
Using lists & listIterators – 8 queens example | outsourceax
https://outsourceax.wordpress.com/2011/01/11/using-lists-listiterators-8-queens-example
Just another WordPress.com site. Using lists and listIterators – 8 queens example. Using lists and listIterators – 8 queens example. January 11, 2011. I am not using lists a lot, because I find it too restrictive not to be able to move back in the list. Also, I find it annoying that end() moves beyond the last element, not to the last element. Nevertheless, there are some uses for lists and I want to give an example how it can be used. Static void eightQueens(Args args). ListIterator li OneSolution = new...