Pages

Tuesday, July 14, 2015

Microsoft Dynamics NAV 2016 Announced !!!

Hi Guys,

Microsoft has announced Microsoft Dynamics NAV 2016 at World Partner Confrence 2015.
Buckle up, There's more coming in the way of Developers like us!

I am expecting, We will have so much more to learn and explore with the next version of our favourite ERP >>> Dynamics NAV :) .


Dynamics NAV 2016 Feature update.


Check out MVP updates about NAV 2016 @


Cheers!
Ishwar Sharma

Monday, July 13, 2015

Send Mail with Attachment in NAV 2013 R2

Hi guys,

This article explains a way for Sending an E-mail with PDF attachment in NAV 2013 R2.

Scenario : An E-mail must be sent to Customer when a Sales Invoice is posted in which Sales Invoice is attached.


Desired Output - An E-mail will be sent through Outlook which is configured on the workstation where NAV Client is installed.

Wednesday, July 08, 2015

Error - The type NavOption is unknown.

Hi guys,

I would like to share the solution to the error which came up with me while developing a report. It is quite a silly mistake which beginners like us make often.



Solution : Go back to the C/AL code and look up that you must have typed a wrong GET statement there.

In my situation, I was doing

SalesHeader.GET("Sales Line"."Document No.");  //Wrong GET

which resulted in 'The type NavOption is unknown.' error.

I corrected my code and wrote,

SalesHeader.GET("Sales Line"."Document Type","Sales Line"."Document No.");  //Correct GET

And this issue was resolved. Hope you will find this useful.

Cheers!
Ishwar