Tuesday, July 14, 2015

Announcement of Microsoft Dynamics NAV 2016

Hi,

You must have read about it .. but a day before ago at WPC the new upcoming version of Microsoft Dynamics NAV 2016 was announced.

Now the Microsoft Dynamics NAV 2016 officially called “Corfu”. Yesterday Microsoft declare this at World Partner Conference 2015.





The NAV 2016 Overviews are:
  • Office 365
  • Azure
  • Winodws(Now with Phone)
  • CRM Online
  • e-Everything
  • Workflows
  • Functionality
  • Engineering

Remember one thing this time It is not announced by name Microsoft Dynamics NAV 2015 R2(Release 2).This time It is announced with unique name “Corfu”. 

Hopefully, Microsoft Dynamics NAV 2016 officially called “Corfu” will released till August 31, 2015 for NAV Partners Only.

Microsoft Dynamics NAV 2015 is not released for Indian localization yet but this time Let's see, what happens. Hopefully, Microsoft will launch NAV 2016 for Indian localization. So guys Finger Cressed!

Let's wait for next update.

Thanks
Niraj kumar

http://niraj-msnav.blogspot.com
http://nirajdynamicsnav.wordpress.com

Monday, July 13, 2015

Page N of M

Hi,
In NAV2013R2, It is easy to print page no. like "1 of 10" but in NAV2009, It is a logical because there is no any function to find out total page no. I have also never done this task in classic view but I tried to solve this query because it was a new for me and asked by one of my colleague. Now I am going to write down the step by step procedure to implement it.

1) Create the new Form named "Page N of M" FROM Customer table.


2) Form Design view will look like this...



3) Add the following global variables...
 Name DataType Subtype Length
Txt000 Text 100
CountRec Integer
r Decimal
q Integer
Flag Integer

4) Write the following code on "OnInit Report"....

MESSAGE('%1',Customer.COUNT);

                   Txt000 := ' of ';

5) Write the following code on "OnPreSection" of Customer body....

CountRec += 1;


6) Write the following code on "OnPreSection" of Customer Footer....

                               Flag +=1;
                                IF Flag=1 THEN BEGIN
                                   MESSAGE('%1',CountRec);
                                   r := COUNT MOD CountRec;
                                   q := COUNT DIV CountRec;
                                   IF r > 0 THEN
                                   q := q+1;
                                   Txt000 := Txt000 + FORMAT(q);

                                 END;


7) Now save and close the form and run.





You can also find the object from this link

Thanks
Niraj Kumar

http://niraj-msnav.blogspot.com
http://nirajdynamicsnav.wordpress.com




Tuesday, July 7, 2015

Cumulative Update 28 for NAV 2013 has been released

Cumulative Update 28 for NAV 2013 has been released

Hi,
Cumulative update 28 has been released for NAV2013 (Build No. 41767) this month.

Cumulative Update 28 includes all application and platform hotfixes and regulatory features that have been released for Microsoft Dynamics NAV 2013.
The cumulative update includes hotfixes that apply to all countries and hotfixes specific to the following local versions: 
  • AU - Australia
  • AT - Austria
  • BE - Belgium
  • CH - Switzerland
  • DE - Germany
  • DK - Denmark
  • ES - Spain
  • FI - Finland
  • FR - France
  • IS - Iceland
  • IT - Italy
  • NA - North America
  • NL - Netherlands
  • NO - Norway
  • NZ - New Zealand
  • SE - Sweden
  • UK - United Kingdom
You can download the cumulative update 28 from this link
To download this update you must have "Customer Source" or "Partner Source" login ID.

Thanks & Regards
Niraj Kumar