Showing posts with label NAV 2013. Show all posts
Showing posts with label NAV 2013. Show all posts

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

Thursday, May 28, 2015

Obtaining Input Without Form


Hi,

Sometimes you don't want to use an entire form to get user input. In this case, we use dialog box window before opening the main form to give input and according to given input we can open form. As we know dialog boxes are not a substitute for forms, but they work just fine for quick input to our form.

Now I am going to implement a simple form as our requirement that open a window before opening the main form to take input.

1) Create a new form named "Input Window Before Main Form" and select some fields according to you. You can also use another name.

2) Form Designer look like this...


3) Add the following global variables...
Name DataType Subtype Length
Window Dialog
DocumentType Option
DocumentNo Code 20

Note: Remember that "DocumentType" is an option datatype. So use the correct option. Select the DocumentType and press "SHIFT+F4" to go to its properties and under the "OptionString" properties write the correct value.

4) Add the Text Constants...
Name ConstValue
Text001 Document Type: #1############# \Document No.:  #2#############

5) Now write the following code to the "OnOpenForm" trigger of the form...
Window.OPEN(Text001);
Window.INPUT(1,DocumentType);
Window.INPUT(2,DocumentNo);
Window.CLOSE;

SETRANGE("Document Type",DocumentType);
SETRANGE("No.",DocumentNo);

6) Now save and close the form and run. When you run your form then "Input Window" will open first.


7) After giving the input press Enter or click Cancel to exit.



Thanks & Regards
Niraj Kumar

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

    

Tuesday, May 26, 2015

Cumulative update 26 for NAV2013

NAV 2013 - Cumulative update 26 has been released  

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

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 this cumulative update from this Link

To download this update you must have "Customer Source" or "Partner Source" login ID

Thanks & Regards
Niraj Kumar