Pages

Wednesday, September 30, 2015

Update Help in NAV

Hi Guys,

We often get this requirement to update existing Help Topics in Dynamics NAV Help Server, which has been introduced in NAV 2013 and later versions.

In this walk-through I have used NAV 2013 R2 to depict the steps on How to Upgrade NAV Help.


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

Sunday, June 28, 2015

Register and Consume Codeunit as a Web Service in NAV 2013 R2

Hi Guys,



Today we will be learning :

1. How to Register a Web Service in NAV 2013 R2.
2. How to Consume it using Visual Studio.

Saturday, June 27, 2015

Column Grouping in Report in NAV 2013 R2


Hi,


Today we will learn how to Apply Column Grouping on Data in a Report in NAV 2013 R2.


Scenario : We want to analyse Customer wise Sales per Month per Year.


Sunday, June 14, 2015

Toggle Visibility in Report in NAV 2013 R2

"Toggle" is an Interactive Reporting Feature of Visual Studio. It makes Data Analysis quite interesting and easy. We will make a very simple report to demonstrate this Feature.

Saturday, June 13, 2015

Configuring NAS to schedule Batch Jobs in NAV 2013 R2

The NAS (NAV Application Server) is used and configured to run the batch jobs and processes in background which need recurring execution.


To Schedule Execution of a Batch in NAV 2013 R2, we need to take help of Job Queue.



Saturday, May 23, 2015

Create Business Charts from Scratch in NAV 2013 R2

To Create Business Charts in NAV 2013 I will take help of :


> A Query to fetch the Data from Database.
> A Codeunit to fetch the Data from this Query and feed it to the Chart.
> A Page to Display my Chart.




Friday, May 15, 2015

Hello World! :)


This is my very first blog. My inspiration to write has came from the Maestros of the technology I am currently working in, which is Dynamics NAV. I would not mention names here but I want to thank all of them.


As there is always a space for something new to learn, that is also the reason that has drew me to writing blogs.

I hope I will be able to write blogs which are helpful to Developers and Learners of Microsoft Dynamics NAV.



Cheers!
Ishwar Sharma