Skip to main content

Posts

Enterprise Portal architecture in Ax 2012

Assign multiple human resource on the same operation in route.

Resources with the same capability by example two labor in packing operation. In this case we have two options ,1st is to define capability group for packing labors or do not work with capability and define resource group for packing labors then assign the group "capability , resource" to the packing operation and in rout line type in quantity 2 which mean i need 2 labors from this group to this operation and load here if 100 % then the process time will be divided by 2 and so on. Option 2 : if you want to assign specific resource " labor xyz and labor abc . In this case just define packing operation twice one is primary and second in secondary then in route line select resource xyz to primary operation and assign resource abc to secondary operation and for sure process time for secondary operation will be copied from primary. Here it depends in your way to define the resources either you are defining the resources in groups general then combine it by capability or di

Axapta Retail

This blog is intended for Axapta technical Consulatant and Retail Professionals. Just visit link below to get many posts on Retail Troubleshootings , problems and solution.   http://axretail.blogspot.com   What's New in Microsoft Dynamics AX 2012 Feature Pack for Retail                   http://www.microsoft.com/en-in/download/details.aspx?id=28780

how to delete duplicate records through ax 2012

To Delete duplicate records  from salesTable or any other table through ax 2012 by x++ code you can write code in Ax job. Set fieldSet = new set(Types::Integer); DictIndex IndexName = new DictIndex( tablenum(SalesTable), indexnum(SalesTable,SalesIdx)); int i; ; if(IndexName.numberOfFields()) { for(i=1;i<=IndexName.numberOfFields();i++) { fieldSet.add(IndexName.field(i)); } ReleaseUpdateDB::indexAllowDup(IndexName); ReleaseUpdateDB::deleteDuplicatesUsingIds(tablenum(SalesTable),0, fieldSet); ReleaseUpdateDB::indexAllowNoDup(IndexName); } info("Duplicate records deleted successfully");

Calling a SSRS Report from x++ in Ax 2012

For Calling a SSRS Report from x++ in Ax 2012 you can try following code hints. You can use SrsReportRunController  class to call SSRS Report. SrsReportRunController controller; controller = new SrsReportRunController(); controller.parmReportName(ssrsReportStr(TestReport, Detail)); controller.startOperation();