This is a quick overview of the main tables involved in the address book functionality of Ax2012.In Ax2009, the integration between the address book and ‘entities’, like customers, suppliers, etc was a bit flaky. This has been tightened up in Ax2012 so that now the address book has a much more important role in maintaining…
Måned: september 2013
Microsoft Dynamics Ax
How to Assert multiple file IO permission
by Bo Jensen •
server static void CAP_copyFile(FilenameOpen _attachmentFilename, str _attachmentsFolder){Set permissionSet; ; // Revert permissionsCodeAccessPermission::revertAssert();permissionSet = new Set(Types::Class);permissionSet.add(new FileIoPermission(_attachmentFilename,’r’));permissionSet.add(new FileIoPermission(_attachmentsFolder,’w’));CodeAccessPermission::assertMultiple(permissionSet);// Move to processed folder// BP Deviation Documented winAPI::copyFile(_attachmentFilename,_attachmentsFolder,true);CodeAccessPermission::revertAssert();} H K Srikanth Dynamics Axapta Blog: How to Assert multiple file IO permission
Microsoft Dynamics Ax
Mukesh Hirwani – Dynamics Ax: Creating Vendors thru X++ in AX 2012
by Bo Jensen •
Here are come methods for all steps of creating new vendors in Ax2012 from dirparty to logistic and electronic addresses.
Microsoft Dynamics Ax
InventTrans Marking in Ax 3.0 via X++
by Bo Jensen •
How do you mark 1 line to another using AX 3.0 in X++? I’ve looked through the code using the inventMarking form but can’t quite get it to work via coding. Basically in all my coding examples, the findMovement function within the updateTmpMark doesn’t get called (since I somehow don’t have an _inventTrans). With the…
Microsoft Dynamics Ax, SQL Analysis Services, Business Intelligence
Setting up scheduled processing of cubes in AX2012
by Bo Jensen •
Here is a quick guide on how you can easily and quickly setup scheduled processing of the cubes for Microsoft Dynamics AX 2012. The same approach works for other Analysis Databases, but sometimes it helps to put things in context in order to make it easier for you AX geeks out there.
