Skip to main content

Posts

Right way to Reverse the voucher in MSD Ax 2012

There is Right way to Reverse the voucher in Ax 2012 you can try other option too. Click General ledger > Journals > General journal. Press CTRL+N to create a new voucher and click Lines to open the Journal voucher form. Click Functions and then click Load ledger transactions. Select the voucher type in the Voucher type field. The voucher type will provide the voucher number for the reversed voucher. Note:The voucher type should be of the reverse type to the original voucher smile emoticon . For example, if the original voucher type is Payment, the reversal voucher type must be Receipt. Select the Invert sign check box to activate the Reversal method field. In the Reversal method field, select a reversal option. Debit/credit – The original voucher is reversed by changing the debit entry to credit entry on the reversal voucher. +/- – The original voucher is reversed by inverting the amount signs on the reversal voucher. Click Select to open the Select form. Enter t

Error "not enough rights to use table 'company data' (data area) " in MSD Axapta

If you are facing following Error Error "not enough rights to use table 'company data' (data area) " in Axapta then you can try following steps. Solution : I tried to find security key for data area form but I am not able to get that because security key was not defined for that form. After long troubleshooting I got solution that user profile issue. So I restored user in Ax to repair user profile from domain. I hope you got the point what to do for this error.

Table structure change for Purchase order in MSD ax 2012

Table structure change for Purchase order in ax 2012 There are some Table structure change for Purchase order in ax 2012. In ax 2009 whatever purchase order made its directly insert to inventtrans table but in Ax 2012 there are some more table link. Initially data stored in purchtable and purchline table then purchline data inventtransid stored in InventTransOriginPurchLine table , Intermediate table between inventtrans and purchline is InventTransorigin. You can check relation between tables purchline ,InventTransOriginPurchLine,InventTransorigin and inventTrans . Once you create purchase order and facing any issue in po posting then you need to check data in mentioned tables. Relation mentioned in below tables

Entity Relationship diagram of General Ledger in MSD Ax 2012

Create an Axapta Enterprise Portal extranet site New Web Application in Sharepoint

Create an Enterprise Portal extra-net site 1. Click Administration > Setup > Internet > Enterprise Portal > Web sites. 2. Click the Create site button. 3. Enter information in the Web Application, Title and Description, and Web Site Address sections. 4. Under Template Selection, click the Custom tab. 5. Click Microsoft Dynamics AX Enterprise Portal. 6. Enter information in the Site Owners and Quota sections, and then click OK. 7. Use IIS to assign the SSL certificate to the Web site you just created (Start > Administrative Tools > Internet Information Services (IIS) Manager). Under Web sites, right-click the new site and click Properties. Click Directory Security. Under Secure Communications, click Server Certificate. Complete the Web Server Certificate Wizard 8. Restart IIS. Open a command prompt, type iisreset/noforce, and press ENTER. 9. Verify that the site is configured for SSL. Click Administration > Setup > Internet > Enterpr

Refresh Dictionary Data Element cache in MSD Ax 2012

If you are facing any Cache Related issue in axapta then you can Refresh  Refresh Dictionary, Data, Element cache in Ax 2012. Just Open Ax client then open Application object tree(AOT) then go to tools menu ->cache . Here you can see Refresh dictionary, Refresh data and Refresh element. Sometimes you made some change in any object and its not reflecting to clients then you can use this option to correct the issue. I want to attach screen of menu as below.

Compile forward in MSD Axapta

Compile Forward – Base Class in axapta  When editing the method Class Declaration in a system base class which is inhirit by other classes, the compiler does not compile the inheriting classes, generating errors when the user attempt to call methods in the inherit class. to do this also by code you can use the "compileForward" in "SysCompilerOutput" class SysCompilerOutput::compileForward(className2Id('InventMovement')); This is a example of one class you can compile forward other classes in AX. Happy daxing...