<?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 2013R2 Archives - Shan Abeywickrama | Dynamics NAV &amp; Business Central Insights</title>
	<atom:link href="https://navsupports.com/tag/dynamics-nav-2013r2/feed/" rel="self" type="application/rss+xml" />
	<link></link>
	<description>Microsoft Dynamics NAV &#124; Business Central</description>
	<lastBuildDate>Mon, 23 Jan 2017 15:38:24 +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 2013R2 Archives - Shan Abeywickrama | Dynamics NAV &amp; Business Central Insights</title>
	<link></link>
	<width>32</width>
	<height>32</height>
</image> 
	<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>Dynamics NAV  2013R2 Report Execution Level</title>
		<link>https://navsupports.com/dynamics-nav-2013r2-report-execution-order/</link>
					<comments>https://navsupports.com/dynamics-nav-2013r2-report-execution-order/#respond</comments>
		
		<dc:creator><![CDATA[Shan Abeywickrema]]></dc:creator>
		<pubDate>Wed, 28 Sep 2016 17:13:41 +0000</pubDate>
				<category><![CDATA[knowledge]]></category>
		<category><![CDATA[Dynamcis NAV SSRS]]></category>
		<category><![CDATA[Dynamics NAV]]></category>
		<category><![CDATA[Dynamics NAV 2013R2]]></category>
		<category><![CDATA[Execuation]]></category>
		<category><![CDATA[Navision]]></category>
		<category><![CDATA[On Init Report]]></category>
		<category><![CDATA[Reports]]></category>
		<category><![CDATA[SSRS]]></category>
		<guid isPermaLink="false">http://navsupports.com/?p=30</guid>

					<description><![CDATA[<p>Hello guys, Today I am going to share very interesting topics  and this will help to freshers and who ever</p>
<p>The post <a href="https://navsupports.com/dynamics-nav-2013r2-report-execution-order/">Dynamics NAV  2013R2 Report Execution Level</a> appeared first on <a href="https://navsupports.com">Shan Abeywickrama | Dynamics NAV &amp; Business Central Insights</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>Hello guys, Today I am going to share very interesting topics  and this will help to freshers and who ever wants to know what is the sequence of Dynamics NAV report execution .</p>
<p>First of all please have a look of bellow diagram. Which is showing structure of the report.</p>
<p><img fetchpriority="high" decoding="async" class="alignnone size-medium wp-image-31" src="http://navsupports.com/wp-content/uploads/2016/09/Trigger-Execution-Order-300x174.png" alt="trigger-execution-order" width="300" height="174" srcset="https://navsupports.com/wp-content/uploads/2016/09/Trigger-Execution-Order-300x174.png 300w, https://navsupports.com/wp-content/uploads/2016/09/Trigger-Execution-Order-768x445.png 768w, https://navsupports.com/wp-content/uploads/2016/09/Trigger-Execution-Order.png 855w" sizes="(max-width: 300px) 100vw, 300px" /></p>
<p>When you run the report, It will execute On Init Report trigger first. So what ever things that you want to execute when the report begin ,you can use this trigger.</p>
<p>Second is Page triggers, what are these page triggers, suppose if you have request page, then it has several triggers,so those triggers will execute secondly.</p>
<p>Then will come to next trigger which is On Pre Report Trigger , What ever suitable code you can place here.</p>
<p>Next is important phase, On Pre Data Item trigger, which is belong to data item that you keep in the report. After this it will execute On After Get Record trigger. This trigger just like a loop. If you keep Item table as data item,so as per the given filters this on after trigger will execute until finish the items.  then it will go to On  Post Dataitem trigger.</p>
<p>After all, On PostReport trigger will execute. So if you have any code that you want to execute at the end, you can place here.</p>
<p>Hope you all get clear idea.</p>
<p>The post <a href="https://navsupports.com/dynamics-nav-2013r2-report-execution-order/">Dynamics NAV  2013R2 Report Execution Level</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-2013r2-report-execution-order/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
	</channel>
</rss>
