Skip to main content

Posts

Showing posts from December, 2012

Duplicate SSRS Report In Axapta 2012

If you want to create duplicate of existing report in axapta 2012 then you can visit following link to get steps. Duplicate SSRS reports [Dynamics AX 2012] To Duplicate SSRS Reports wizard with artifacts [Data provider, Contract, UIBuilder, CSharp project [Dynamics AX 2012] you can try following link to see details. Duplicate SSRS Reports wizard  

Download Dynamics AX 2012 EP session

To Download Dynamics AX 2012 EP session you can try this link. http://vimeo.com/26902748  By using this link you can download a video to have the understanding of the development of EP in AX2012. As you know Enterprise Portal for Microsoft Dynamics AX provides a Web-based application framework that allows for users to interact with data in Microsoft Dynamics AX through a Web browser

Application layout with partition in AX2012 R2

This is simple example view of Application layout with partition in AX2012 R2.  

Create General Journal in axapta 2012 by code

To Create General Journal entries in axapta 2012 by code you can try following code statements in job and can see in whether journal is created in General journal under chart up account menu. AxLedgerJournalTable LedgerjournalTable; AxLedgerJournalTrans LedgerjournalTrans; container AccountSer; container OffsetAccountSer; ; LedgerjournalTable = new AxLedgerJournalTable(); LedgerjournalTrans = new AxLedgerJournalTrans(); LedgerjournalTable.parmJournalName("JV"); LedgerjournalTable.save(); LedgerjournalTrans.parmJournalNum(journalTable.ledgerJournalTable().JournalNum); LedgerjournalTrans.parmTransDate(systemDateGet()); LedgerjournalTrans.parmAccountType(LedgerJournalACType::Ledger); AccountSer = ["abc101", "abc102", 0]; LedgerjournalTrans.parmLedgerDimension(AxdDimensionUtil::getLedgerAccountId(AccountSer)); LedgerjournalTrans.parmAmountCurDebit(2000); OffsetAc

Download Support for previous POS version in Dynamics AX 2012 R2 pdf

This is a good link to Download document for  Support for previous POS version in Dynamics AX 2012 R2 in  pdf format. Microsoft Dynamics AX 2012 R2 White Paper: Support for Previous POS Versions This document describes how to enable previous versions of Retail Point of Sale (POS) to exchange data with Microsoft Dynamics AX 2012 R2.

Resize an image in AX 2012 using Batch functionality

How To re size an image in AX 2012 using Batch functionality. If You have thousands of images and want to re size them through batch.  You need to use System.Drawing.Image::FromFile(imagePath) method to get the image object. You can use the "resize" method in "image" class image img = new image(); ; img.loadImage("_filename"); img.resize(200,200, interpolationmode::InterpolationModeDefault);