<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Dynamics NAV 2016 Archives - Shan Abeywickrama | Dynamics NAV &amp; Business Central Insights</title>
	<atom:link href="https://navsupports.com/tag/dynamics-nav-2016/feed/" rel="self" type="application/rss+xml" />
	<link></link>
	<description>Microsoft Dynamics NAV &#124; Business Central</description>
	<lastBuildDate>Wed, 21 Nov 2018 07:53:27 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.7.5</generator>

<image>
	<url>https://navsupports.com/wp-content/uploads/2018/11/cropped-fav-1-32x32.png</url>
	<title>Dynamics NAV 2016 Archives - Shan Abeywickrama | Dynamics NAV &amp; Business Central Insights</title>
	<link></link>
	<width>32</width>
	<height>32</height>
</image> 
	<item>
		<title>Dynamics NAV Error Handling using Try Function</title>
		<link>https://navsupports.com/dynamics-nav-error-handling-using-try-function/</link>
					<comments>https://navsupports.com/dynamics-nav-error-handling-using-try-function/#comments</comments>
		
		<dc:creator><![CDATA[Shan Abeywickrema]]></dc:creator>
		<pubDate>Tue, 24 Jan 2017 16:40:35 +0000</pubDate>
				<category><![CDATA[knowledge]]></category>
		<category><![CDATA[Dynamics NAV 2016]]></category>
		<category><![CDATA[Dynamics NAV Try Function]]></category>
		<category><![CDATA[Error Handling]]></category>
		<category><![CDATA[NAV Try Catch]]></category>
		<category><![CDATA[Try Catch]]></category>
		<category><![CDATA[Try Function]]></category>
		<guid isPermaLink="false">http://navsupports.com/?p=138</guid>

					<description><![CDATA[<p>Try Function Dynamics NAV 2016 Today I am going to share very interesting topics on Dynamics NAV 2016. Since year 2012</p>
<p>The post <a href="https://navsupports.com/dynamics-nav-error-handling-using-try-function/">Dynamics NAV Error Handling using Try Function</a> appeared first on <a href="https://navsupports.com">Shan Abeywickrama | Dynamics NAV &amp; Business Central Insights</a>.</p>
]]></description>
										<content:encoded><![CDATA[<h2 class="heading" style="text-align: left;">Try Function Dynamics NAV 2016</h2>
<p>Today I am going to share very interesting topics on Dynamics NAV 2016. Since year 2012 I am looking try catch function in Dynamics NAV, I am sure all of Dynamics NAV developers are seeking same function in Dynamics NAV. I notice in Navision 2016 has introduced Try Function to handle errors. Let&#8217;s discuss Dynamics NAV error handling using Try Function.</p>
<p>Try functions in C/AL let you to handle errors that occur in the application during code execution. For instance, with try functions, you can provide user-friendly error messages to the end user than the ugly system messages. You can use try functions to catch exceptions that are thrown by  Dynamics NAV</p>
<p>Important thing you need to be remembered. It does requires that write transactions are committed to the database.</p>
<h2 class="heading">Try Function Behavior and Usage</h2>
<p>Before start you should read NAV Design Patterns Try Function article in MSDN.</p>
<p>To explain this Try Function I will create new codeunit. Create a function called AddCustomer. Parameters should be CustomerNo and CustomerName. CustomerCode should be Code type variable and CustomerName should be Text type variable. Also you need to enable <strong>TryFucntion</strong> <strong>Yes. </strong> Using simple steps you can enable it. Go to properties of <strong>AddCustomer</strong> function then you will find the <strong>TryFunction</strong> property.</p>
<p>After that you need to write few code inside the AddCustomer function and On Run trigger. Let&#8217;s have a look.</p>
<p>LOCAL [TryFunction] AddCustomer(CustomerNo : Code[30];CustomerName : Text[50])<br />
Customer.INIT;<br />
Customer.&#8221;No.&#8221; := CustomerNo;<br />
Customer.Name := CustomerName;<br />
Customer.INSERT;</p>
<p>On Run trigger you can call the AddCustomer function.</p>
<p>OnRun()<br />
//Call AddCustomer Function<br />
CLEARLASTERROR;<br />
IF AddCustomer(&#8216;C02511&#8242;,&#8217;Try Customer Name&#8217;) THEN<br />
MESSAGE(&#8216;Submitted&#8217;)<br />
ELSE<br />
MESSAGE(&#8216;AddCustomer Function has return&#8217; + GETLASTERRORCODE,GETLASTERRORTEXT);</p>
<p>When you run your codeunit. You will get your first message which is Submitted. All fine. When you run it again you will get proper message. Which is AddCustomer Function has return ERROR The Customer already exists. Identification fields and values: No.=&#8217;C02511&#8242; &#8211; DB:RecordExists</p>
<p>Obiously you will get some confusions and you might get some questions. Hope you will post your queries and comments.</p>
<p>The post <a href="https://navsupports.com/dynamics-nav-error-handling-using-try-function/">Dynamics NAV Error Handling using Try Function</a> appeared first on <a href="https://navsupports.com">Shan Abeywickrama | Dynamics NAV &amp; Business Central Insights</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://navsupports.com/dynamics-nav-error-handling-using-try-function/feed/</wfw:commentRss>
			<slash:comments>4</slash:comments>
		
		
			</item>
		<item>
		<title>Access Text box value in (Report Builder and SSRS) using ReportItems</title>
		<link>https://navsupports.com/access-text-box-value-report-builder-ssrs-using-reportitems/</link>
					<comments>https://navsupports.com/access-text-box-value-report-builder-ssrs-using-reportitems/#respond</comments>
		
		<dc:creator><![CDATA[Shan Abeywickrema]]></dc:creator>
		<pubDate>Mon, 23 Jan 2017 15:38:24 +0000</pubDate>
				<category><![CDATA[knowledge]]></category>
		<category><![CDATA[Access Text box value in (Report Builder and SSRS) using ReportItems]]></category>
		<category><![CDATA[Dynamics NAV]]></category>
		<category><![CDATA[Dynamics NAV 2013R2]]></category>
		<category><![CDATA[Dynamics NAV 2016]]></category>
		<category><![CDATA[IIF]]></category>
		<category><![CDATA[ReportItems]]></category>
		<category><![CDATA[SSRS]]></category>
		<guid isPermaLink="false">http://navsupports.com/?p=134</guid>

					<description><![CDATA[<p>Today I am going to share little bit important lesson. But I will hope you have already know this. Most</p>
<p>The post <a href="https://navsupports.com/access-text-box-value-report-builder-ssrs-using-reportitems/">Access Text box value in (Report Builder and SSRS) using ReportItems</a> appeared first on <a href="https://navsupports.com">Shan Abeywickrama | Dynamics NAV &amp; Business Central Insights</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>Today I am going to share little bit important lesson. But I will hope you have already know this. Most of the times you might be required to access another text box value in Dynamics NAV report layout. For instance, Some times, developers want to show total on the top of the report, Like Total Invoice Value. Also in the body you have calculated the line wise value and you have the total with you. But you cannot show it at the beginning. Now you might be seeking a solution.</p>
<p>You may wondering there is a in built function called ReportItems. Simple and  straightforward. The <strong>ReportItems</strong>  includes text boxes that are in the current scope of a page header, footer, or body. This will identify at run time by the report processor/report render.</p>
<p>You may find good example in Microsoft (MSDN) website. So same example I will show here.</p>
<ul>
<li>
<p style="text-align: left;">This expression, placed in a text box, displays the value of a <strong>ReportItem</strong> text box named <code>Textbox1</code>:</p>
<p style="text-align: left;"><code>=ReportItems!Textbox1.Value</code></p>
</li>
<li style="text-align: left;">This expression, placed in a <strong>ReportItem</strong> text box Color property, displays the text in black when the value is &gt; 0; otherwise, the value is displayed in red:<code>=IIF(Me.Value &gt; 0,"Black","Red")</code></li>
<li>
<p style="text-align: left;">This expression, placed in a text box in the page header or page footer, displays the first value per page of the rendered report, for a text box named <code>LastName</code>:</p>
<p style="text-align: left;"><code>=First(ReportItems("LastName").Value)</code></p>
<p>Simply use ReportItems then use the textbox value.</li>
</ul>
<p>The post <a href="https://navsupports.com/access-text-box-value-report-builder-ssrs-using-reportitems/">Access Text box value in (Report Builder and SSRS) using ReportItems</a> appeared first on <a href="https://navsupports.com">Shan Abeywickrama | Dynamics NAV &amp; Business Central Insights</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://navsupports.com/access-text-box-value-report-builder-ssrs-using-reportitems/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Download Dynamics NAV  Android Apps on Google Play</title>
		<link>https://navsupports.com/download-dynamics-nav-android-apps-on-google-play/</link>
					<comments>https://navsupports.com/download-dynamics-nav-android-apps-on-google-play/#comments</comments>
		
		<dc:creator><![CDATA[Shan Abeywickrema]]></dc:creator>
		<pubDate>Mon, 16 Jan 2017 15:29:57 +0000</pubDate>
				<category><![CDATA[knowledge]]></category>
		<category><![CDATA[Android App on Google play]]></category>
		<category><![CDATA[Dynamics ERP]]></category>
		<category><![CDATA[Dynamics NAV 2016]]></category>
		<category><![CDATA[Global ERP Solution]]></category>
		<category><![CDATA[Microsoft Dynamics NAV 2016]]></category>
		<category><![CDATA[Navision 2016]]></category>
		<category><![CDATA[Navision ERP 2016]]></category>
		<category><![CDATA[Universal app]]></category>
		<guid isPermaLink="false">http://navsupports.com/?p=122</guid>

					<description><![CDATA[<p>With Microsoft Dynamics NAV 2016 you will get your favorite Role Tailor Dynamics NAV feature on Android tablets and Android</p>
<p>The post <a href="https://navsupports.com/download-dynamics-nav-android-apps-on-google-play/">Download Dynamics NAV  Android Apps on Google Play</a> appeared first on <a href="https://navsupports.com">Shan Abeywickrama | Dynamics NAV &amp; Business Central Insights</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p><img fetchpriority="high" decoding="async" class="aligncenter wp-image-124 size-medium" src="http://navsupports.com/wp-content/uploads/2017/01/VAPp-300x251.jpg" alt="download dynamics nav android apps on google play" width="300" height="251" srcset="https://navsupports.com/wp-content/uploads/2017/01/VAPp-300x251.jpg 300w, https://navsupports.com/wp-content/uploads/2017/01/VAPp.jpg 657w" sizes="(max-width: 300px) 100vw, 300px" /></p>
<p>With <strong>Microsoft Dynamics NAV 2016</strong> you will get your favorite Role Tailor Dynamics NAV feature on <strong>Android tablets and Android phones</strong>.It is fresh and modern interface designed for mobile devices</p>
<p><strong>Navision 2016</strong>  is a global business solution that simplify their supply chain, manufacturing, and operations. It is quick to implement and easy to use. Please refer my previous article for<strong> <a href="http://navsupports.com/whats-new-application-changes-microsoft-dynamics-nav-2016/">Microsoft Dynamics NAV 2016 feature</a>.</strong></p>
<p>Make your decision anywhere , anytime with latest technology. Microsoft Dynamics NAV 2016 Android application will increase your productivity, efficiency and employees will motivate.</p>
<p>for  tablets, it requires access to Microsoft Dynamics NAV 2015 or later version. For phones, it requires access to Microsoft Dynamics NAV 2016 or later. Noted it Requires Android 4.4.3 or later.<br />
Dynamics NAV has announced  with the release of Android 7, they will be discontinuing support for Android 4 in an upcoming update during early 2017.</p>
<p>Features<br />
• Android App manage your finances, customers, vendors, inventory.<br />
• Anywhere , Anytime you can approve or send documents for approval.<br />
• You can get an overview of your business in the Home screen within few seconds.<br />
• you can use your device camera to upload pictures. Example : Item picture</p>
<p>For your understanding please watch bellow video.</p>
<div><iframe src="https://www.youtube.com/embed/1E00J-VVFL4" width="560" height="315" frameborder="0" allowfullscreen="allowfullscreen"></iframe></div>
<div>Just a simple click you can explore your whole business withing few seconds. It is simple and flexible.</div>
<div></div>
<div>
<h1>So Let&#8217;s get started</h1>
<p>Download and install Dynamics NAV. I will share more information how to install and configure Dynamics NAV with your own database in my next post.</p>
<p>Sign in using your credentials. App will connect to your Dynamics NAV 2016 server.</p>
<p>Navigate as you wish, you may found your business real time data , notifications, approvals</p>
<p>You can download the Android app from Google app store. It is free and easy to use.</p>
<p>Please comment and send your questions. I will reply and help you on Dynamics NAV 2016 Android app installation and configuration with you own Dynamics NAV database.</p>
</div>
<p>The post <a href="https://navsupports.com/download-dynamics-nav-android-apps-on-google-play/">Download Dynamics NAV  Android Apps on Google Play</a> appeared first on <a href="https://navsupports.com">Shan Abeywickrama | Dynamics NAV &amp; Business Central Insights</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://navsupports.com/download-dynamics-nav-android-apps-on-google-play/feed/</wfw:commentRss>
			<slash:comments>2</slash:comments>
		
		
			</item>
	</channel>
</rss>
