Compare Web / EP Objects using compare tool in AX 2009
Hi folks,
Subscribe to be the first to learn about a new blog post. Sign up today!
Hi folks,
1. To send an email through AX, Initially we need to configure the e-mail parameters in the administration module. 2. If you want to configure an email template. That can also be done from the basic module. LanguageId LanguageId; FilePath FilePath; SysMailer mailer; SysEmailAddress ToAddress; SysEmailId EmailId; new InteropPermission(InteropKind::ComInterop).assert(); FilePath = @’//10.0.23.25/AOSPrintShare/TestSalesOrder.pdf; mailer = New…
When you try to validate the Workflow URL, you might get an error saying “The request failed with HTTP status 405: Method Not Allowed.” To resolve this error , there are two ways : If your system configuration is 1. Windows 2008 R2 64 bit. 2. SQL Server 2008 3. IIS 7 To resolve this…
If you want to get all the error messages in the infolog in a desired language then just put this small code snippet and run it in a job. infolog.language(LanguageId); then whole UI of AX Client will be changed to the desired language and we will get the error messages into the infolog in that…
Hi Folks, I have seen that most of the developers face the problem in displaying the Page footer only in the last page of the report. Epilog is printed just after the page footer on the last page in a report. So, this is printed in a separate page. But to print in the last…
Here, I am telling you about how to register a COM wrapper dll and then extract & use it in AX. (i) Install the COM Wrapper DLL Files, into the bin directory of the AOS. (ii) Register it with the following Command,%WINDIR%Microsoft.NETFrameworkv2.0.50727regasm.exe Test.Wrapper.DLL /tlb:Test.Wrapper.tlb (iii) Now, After Successful Registration, Follow the below path and click…
Last month, I have found a problem after installing RU-7 kernel update to one of our Customer and thats very strange. We were not able to build a project for a layer using Project Filter( i.e., to automatically get all the objects of a layer into a project) even after putting the layer in the…