send e-mail through code with attachments in AX
2. If you want to configure an email template. That can also be done from the basic module.
Subscribe to be the first to learn about a new blog post. Sign up today!
2. If you want to configure an email template. That can also be done from the basic module.
Hi Folks, This post is about my experience and steps for installing AX 2012 along with EPand SSRS. I have been planning to install AX 2012 from scratch on my laptop along with SSRS and EP because I was not feeling comfortable with the VPC. In today’s post, I would like to explain you about my…
I have already posted 6 sections on the differences between various versions of AX in my previous two posts. In this post, I am going to discuss on the last 3 sections of differences. Workflow S.No. AXAPTA 4.0 AXAPTA 5.0 AXAPTA 2012 1 •Forward only, sequential workflows •Only interactive elements (tasks and approvals) •Support for…
In AX 2009, you can merge two records by using the merge() function in a table. For Example if you have posted a project with different department dimensions and now if you would like to merge two records of department dimension then this merge function can be helpful. The sample code is here as follows:…
Hi Folks, Recently, For a customer, I have observed that the workflow processing has become very slow then when i have observed the workflow batch job history, I have found that there are many errors and it says “The company ‘tst’ does not exist”. But this company has been deleted long back. As we know,…
Hi, In this post, I would like to explain you my experiences on the data upgrade from AX 3.0 and AX 4.0 to AX 2009. Please post your comments if you have any doubts on this…….. Data Upgrade from AX 3.0 to AX 2009 Perform the Consistency Check for all the required modules in AX…
I have observed that lot of developers face difficulty in printing the Sales Invoice report into file system through code. Here is the code snippet for it. SalesFormLetter salesFormLetter; PrintJobSettings printJobSettings; CustInvoiceJour custInvoiceJour; SalesId salesId; #File salesid = “SO-100010”; salesFormLetter = SalesFormLetter::construct(DocumentStatus::Invoice,false); printJobSettings = new PrintJobSettings(); printJobSettings.setTarget(PrintMedium::File); printJobSettings.format(PrintFormat); printJobSettings.fileName( ‘//10.0.57.22/AOSPrintShare//’ + salesId+#pdf ); printJobSettings.warnIfFileExists(false); SalesFormLetter.updatePrinterSettingsFormLetter(printJobSettings.packPrintJobSettings());…
Hi,
your blogs are really interesting.
One thing i would like to know that how can i check in AX whther outlook is installed on a machine or not, if yes then wether it is configured for sending mails or not. please let me know any code regarding that.
Hi,
your blogs are really interesting.
One thing i would like to know that how can i check in AX whther outlook is installed on a machine or not, if yes then wether it is configured for sending mails or not. please let me know any code regarding that.
Thanks,
Yasir