Posts

Auto deployment of DLL in client machine - Ax 2012

Hi, I found some interesting link to deploy the dll into client machine when you open ax. please read it. http://coffeestain-it.blogspot.ca/2015/05/dynamics-ax-sysfiledeployment-framework.html other link: http://daxmusings.codecrib.com/2013/07/auto-deploying-dlls-and-other-resources_31.html Note: 1) DLL deployment is required when you create business logic in Dot.net class library project and reference back in Ax. (via reference node) (ex: AxFTP) 2) When you consume the business logic via web service you no need to deploy the dll in client  (It means, you created a class library project in dot.net and added the service reference to consume the external webservice. when you deploy the dot.net project automatically dll file is copied to ax server VSassembly folder. It is enough. Now u can able to create object in ax class) (ex:AxOasisFinIntegration)

SSRS – No connection could be made because the target machince actively refuesd it..

Hi, Please refer the below link to fix this issue, https://guyterry.wordpress.com/2013/10/02/ssrs-no-connection-could-be-made/ I have faced this issue, because multiple report services instance(one for dev, one for test..etc) has running on one report server. The report services are not pointing to the correct Ax instance. So I referred this link and changed my .axc (copied the ax config file to this location) to point the right Ax instance. My issue resolved and can able to render the report in ax. Thanks, Vijaykarthik

Convert Word to PDF in ax 2012

Hi, please use the below job to covert your word file into pdf file. static void convertWordToPDF(Args _args) {     COM             wordApplication;     COM             wordDocuments;     COM             wordDocument;     //COM             wordRange;         Filename        docFileName = @"C:\AX Documents\Document Handling\GCO-000025.doc";     Filename        pdfFileName;         Filename        filepath;     Filename        fileName;   ...

Document handling - ax 2012

Hi, please refer the below video to create word document with bookmark and dynamically pass the values to the bookmark from dynamics ax. (used the class -> Create a Microsoft Word document by using COM) https://www.youtube.com/watch?v=NVSxc2jg2iY For, programmatically handle the document handling https://www.youtube.com/watch?v=NVSxc2jg2iY https://community.dynamics.com/ax/b/axaptavsme/archive/2013/03/07/document-handling-via-x To show/hide the bookmark in word document template http://www.extendoffice.com/documents/word/848-word-show-hide-bookmarks.html Cool stuff. Thanks, Vijaykarthik

Ax 2012 R3 demo data & Test data Transfer Tool download

Hi, Interesting article to deploy the demo data into ax 2012 R3. refer the link below, http://dynamicsaxsharma.blogspot.com.au/2015/07/ax-2012-r3-demo-data-test-data-transfer.html Thanks, Vijaykarthik

EP (Enterprise portal) not working in Ax 2012

Image
Hi, We have installed the EP in our UAT server and done the configuration. It has created a web site in Ax (system administration -> setup -> Enterprise portal -> websites). when we click the url, the  EP page is not loading, and it thrown the below error. Exception: Wrong type of element at call of conPoke (C)Classes\webSession\webApplication - line 15 (C)Classes\WebSession\init - line 30 To resolve the above error, we done the below (deleted the AUC files /client catch files). steps are, 1.        Stop AOS 2.        Use BC account login SharePoint server which EP cannot work. 3.        Go to BC user’s user profile : %USERPROFILE%\APPDATA\LOCAL 4.        Delete all .auc files. 5.        Start AOS. 6.        Try EP works or not. Note: Please enable the hidden items in s...

Top 10 issues discovered from Dynamics AX Code Review

Hi, Please refer the below link to discovered the top 10 issue in the Ax coding. must read. http://blogs.msdn.com/b/axinthefield/archive/2014/02/18/top-10-issues-discovered-in-the-dynamics-ax-code-review.aspx Thanks, Vijaykarthik