<?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 GP Help</title>
	<atom:link href="http://dynamicsgphelp.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://dynamicsgphelp.com</link>
	<description>GP Customization, Tips and Tricks</description>
	<lastBuildDate>Fri, 07 Dec 2012 07:18:49 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1.2</generator>
		<item>
		<title>Migrating VBA Customizations to VS Tools for Dynamics GP</title>
		<link>http://dynamicsgphelp.com/2012/09/migrating-vba-customizations-to-vs-tools-for-dynamics-gp/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=migrating-vba-customizations-to-vs-tools-for-dynamics-gp</link>
		<comments>http://dynamicsgphelp.com/2012/09/migrating-vba-customizations-to-vs-tools-for-dynamics-gp/#comments</comments>
		<pubDate>Tue, 04 Sep 2012 09:23:04 +0000</pubDate>
		<dc:creator>Rubal</dc:creator>
				<category><![CDATA[VBA]]></category>
		<category><![CDATA[Visual Studio Tools]]></category>
		<category><![CDATA[vba VSTools customization]]></category>

		<guid isPermaLink="false">http://dynamicsgphelp.com/?p=806</guid>
		<description><![CDATA[With GP 2013 web client around the corner, there is lot of buzz around what&#8217;s going to be supported with web client and what’s not. One of the things that not going to be supported in web client is VBA customizations. Therefore, its a good time to start upgrading your VBA customizations. 1. Planning: In [...]]]></description>
			<content:encoded><![CDATA[<p>With GP 2013 web client around the corner, there is lot of buzz around what&#8217;s going to be supported with web client and what’s not.</p>
<p>One of the things that not going to be supported in web client is VBA customizations. Therefore, its a good time to start upgrading your VBA customizations.</p>
<h4><strong>1</strong>. <strong>Planning</strong>:</h4>
<p>In vba, code is saved in *.vba files in GP folder. For each dictionary file there is a corresponding vba file. You have to write your code in those existing files. You can’t divide these code files based on projects.</p>
<p>In VS Tools you can create projects for logically related customizations. This will help you in maintaining code in longer run and also isolating the issues related to different customizations. Therefore, if you are upgrading your vba customizations from vba to VS Tools, it’s a good time plan them carefully.</p>
<h4>2. <strong>Select language- C#.net vs VB.net</strong></h4>
<p>VS Tools supports both C# and VB.net languages. You can select languages based on your personal preference and past experience. However, both languages are powerful developer tools and first-class programming languages that share the common language runtime in the .NET Framework. Here are some article which outlined difference between two languages</p>
<p><a href="http://www.codeproject.com/Articles/9978/Complete-Comparison-for-VB-NET-and-C">http://www.codeproject.com/Articles/9978/Complete-Comparison-for-VB-NET-and-C</a></p>
<p><a href="http://support.microsoft.com/kb/308470">http://support.microsoft.com/kb/308470</a></p>
<p>If you have lot of code which you want to convert as it to VS tools you can consider using VB.net because in terms of syntax VB.net is closer to vba and you will need fewer changes in the code.</p>
<h4>3. <strong>Cross dictionary:</strong></h4>
<p>If your vba include cross dictionary references, you will need to add reference to assemblies for other dictionaries in your VS Tools solution. You can add reference using Project&gt;&gt; Add Reference menu option, browse to the dll you want to use. You can find dlls for core products in VS Tools installation folder.</p>
<p>C:\Program Files\Microsoft Dynamics\GP2010 VS Tools SDK\</p>
<p>Or</p>
<p>C:\ Program Files (x86)\Microsoft Dynamics\GP2010 VS Tools SDK\</p>
<p>&nbsp;</p>
<p>Unlike vba, you don’t need to worry about circular reference in VS Tools environment.</p>
<h4>4.<strong> For modified form and third party dictionaries, use DAG to generate assemblies</strong></h4>
<p>If your customization is based on modified forms or third party products. You can use  <em>Dictionary Assembly Generator (DAG.exe)</em> to create managed code assembly that provides access to resources in an dictionary.</p>
<p>The DAG.exe is installed in the location where you installed Visual Studio Tools SDK. Typically this will be the following location:</p>
<p>C:\Program Files\Microsoft Dynamics\GP2010 VS Tools SDK</p>
<p>Or</p>
<p>C:\ Program Files (x86)\Microsoft Dynamics\GP2010 VS Tools SDK</p>
<p>Here is an examples of using DAG to generate dll for modified forms dictionary:</p>
<p><a href="http://dynamicsgpblogster.blogspot.com.au/2009/10/vst-amount-in-words-on-sop-entry-window.html">http://dynamicsgpblogster.blogspot.com.au/2009/10/vst-amount-in-words-on-sop-entry-window.html</a></p>
<p>DAG is command line utility, you can find Graphical User Interface (GUI) in following blog post:</p>
<p><a href="http://blogs.msdn.com/b/developingfordynamicsgp/archive/2012/05/30/microsoft-dynamics-gp-addins-dag-utility.aspx">http://blogs.msdn.com/b/developingfordynamicsgp/archive/2012/05/30/microsoft-dynamics-gp-addins-dag-utility.aspx</a></p>
<h4>5. <strong>Access the Microsoft Dynamics Global Variables</strong></h4>
<p>Each dictionary has global variables related to it. Globals for an application dictionary are accessed through the dictionary class. This class has a Globals property that provides access to the collection of globals in the dictionary.</p>
<p>For example, to access the collection of globals in the Dynamics dictionary, use the following syntax:</p>
<p>Microsoft.Dexterity.Applications.Dynamics.Globals</p>
<p>To access a specific global value, such as the current user’s ID (UserId), use the following syntax:</p>
<p>Microsoft.Dexterity.Applications.Dynamics.Globals.UserId</p>
<h5>6<strong>. Debugging the VS Tools code:</strong></h5>
<p>Debugging code in vba was very simple, you just add a break and perform action to hit the break point. However, in VS Tools the process you need to carry out the for debugging the code is:</p>
<ol>
<li>Build and deploy the integration in GP addins folder</li>
<li>Set breakpoints in your code.</li>
<li>Start Microsoft Dynamics GP</li>
<li>Choose to attach to a process using menu option Select Debug &gt;&gt;Attach to Process from the menu in Visual studio</li>
<li>Select the Dynamics.exe process</li>
<li>Perform the actions you want to debug in Dynamics GP to hit the break points</li>
</ol>
<p>Debugger in Visual Studio is very powerful tool. Refer to following article for using debugging in visual studio:</p>
<p><a href="http://www.dotnetperls.com/debugging">http://www.dotnetperls.com/debugging</a></p>
<p><a href="http://msdn.microsoft.com/en-us/library/k0k771bt(v=vs.71).aspx">http://msdn.microsoft.com/en-us/library/k0k771bt(v=vs.71).aspx</a></p>
<p><a href="http://msdn.microsoft.com/en-us/library/01xdt7cs.aspx">http://msdn.microsoft.com/en-us/library/01xdt7cs.aspx</a></p>
<h5>7. DUOS objects:</h5>
<p>Dynamic User Object Store (DUOS) is usually used for storing data from additional fields added using modifier. In VS Tools you can use table SyUserObjectStoreTable to save and access DUOS data</p>
<h5>8<strong>. ADO Connections</strong></h5>
<p>If you are using ADO in your vba customization, you can use the GPConnNet.dll so that you don&#8217;t have to hard code a connection string. You can find this file in folder</p>
<p>C:\Program Files\Common Files\Microsoft Shared\Dexterity\v2.0</p>
<p>However, you will need to get keys from Microsoft support to use it. Refer to following article for details about how to use it to connect database</p>
<p><a href="http://mbsguru.blogspot.com.au/2009/09/visual-studio-tools-integration-with-gp.html">http://mbsguru.blogspot.com.au/2009/09/visual-studio-tools-integration-with-gp.html</a></p>
<h5>9. San Script Alternative:</h5>
<p>If you are using San Script in your vba code, consider using continuum. Continuum is the COM programming interface available for Microsoft Dynamics GP which has ability to run sanScript code in the Microsoft Dynamics GP application.</p>
<p>You can download documentation from Microsoft Dynamics GP 2010 Tools Documentation: Continuum Application Programmer’s Interface (API)</p>
<p><a href="http://www.microsoft.com/en-au/download/details.aspx?id=17499">http://www.microsoft.com/en-au/download/details.aspx?id=17499</a></p>
<p>Here is an example of using Continuum</p>
<p><a href="http://mohdaoud.blogspot.com.au/2009/10/practical-example-on-dynamics-continuum_7208.html">http://mohdaoud.blogspot.com.au/2009/10/practical-example-on-dynamics-continuum_7208.html</a></p>
<p>Note: The use of the Continuum Integration Library to execute Dexterity scripts from VBA is not supported.</p>
<h5>10. <strong>Additional features available in VS Tools</strong></h5>
<h6><strong>a.</strong> Additional menu option in existing form:</h6>
<p>You can additional menu option in Dynamics GP Forms through VS Tools. Here is an example to add menu option DynamicsGPAddin1 in Customer maintenance form</p>
<p>Microsoft.Dexterity.Applications.DynamicsDictionary.RmCustomerMaintenanceForm.AddMenuHandler(menu1, &#8220;DynamicsGPAddin1&#8243;);</p>
<h6>b. Adding main menu using VS Tools</h6>
<p>You can use “Menus for Visual Studio Tools” for Microsoft Dynamics GP 2010 to an menu option. You can download the dll for from partner source or customer source. Example you can a new menu option under Cards&gt;&gt; Sales using it.</p>
<p><a href="https://mbs.microsoft.com/customersource/downloads/servicepacks/mdgp2010_menusforvisualstudiotools.htm">Menus for Visual Studio Tools for Microsoft Dynamics GP 2010</a> (CustomerSource)<br />
<a href="https://mbs.microsoft.com/partnersource/downloads/releases/MDGP2010_menusforvisualstudiotools.htm">Menus for Visual Studio Tools for Microsoft Dynamics GP 2010</a> (PartnerSource)</p>
<h6>c. Function and Procedure Notifications</h6>
<p>VS Tools has option for Function and Procedure Notifications, you get before and after Notifications for the procedure and function call. It can be very handy to execute code globally based on procedure execution. Refer to following post for example:</p>
<p><a href="http://blogs.msdn.com/b/developingfordynamicsgp/archive/2010/02/12/what-s-new-in-visual-studio-tools-2010.aspx">http://blogs.msdn.com/b/developingfordynamicsgp/archive/2010/02/12/what-s-new-in-visual-studio-tools-2010.aspx</a></p>
<h5>11. Not supported</h5>
<h6>a. Report Writer reports with VBA</h6>
<p>If you have some existing vba code with report writer reports, you can consider using dexterity for such customizations.. VS tools does not have event handler for the report writer events.</p>
<h6>b. Forms designed in VBA</h6>
<p>You can design forms in VS tools and use them in customizations to replace the forms designed in VBA. However, they are not going to be supported in web client. Only forms designed in dexterity or modified using modifier will be available in web client. If your vba customization has custom forms you should consider using Dexterity to upgrade this customization for web client instead of VS Tools</p>
<h5>Resources:</h5>
<p>Other resources to help you get started with VS tools are:</p>
<p>Getting started with VS Tools:</p>
<p><a href="http://dynamicsgpblogster.blogspot.com.au/2009/07/getting-started-with-vst-winforms-and.html">http://dynamicsgpblogster.blogspot.com.au/2009/07/getting-started-with-vst-winforms-and.html</a></p>
<p><a href="http://dynamicsgpblogster.blogspot.com.au/2009/08/getting-started-with-vst-winforms-and.html">http://dynamicsgpblogster.blogspot.com.au/2009/08/getting-started-with-vst-winforms-and.html</a></p>
<p>Adding config file in VS Tools customization</p>
<p><a href="http://blogs.msdn.com/b/developingfordynamicsgp/archive/2009/03/26/how-to-read-your-own-config-file-with-a-vstools-application.aspx">http://blogs.msdn.com/b/developingfordynamicsgp/archive/2009/03/26/how-to-read-your-own-config-file-with-a-vstools-application.aspx</a></p>
]]></content:encoded>
			<wfw:commentRss>http://dynamicsgphelp.com/2012/09/migrating-vba-customizations-to-vs-tools-for-dynamics-gp/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Visual Studio Tool: Order of class libraries(dll) initialization in Dynamics GP</title>
		<link>http://dynamicsgphelp.com/2012/08/visual-studio-tool-order-of-class-librariesdll-initialization-in-dynamics-gp/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=visual-studio-tool-order-of-class-librariesdll-initialization-in-dynamics-gp</link>
		<comments>http://dynamicsgphelp.com/2012/08/visual-studio-tool-order-of-class-librariesdll-initialization-in-dynamics-gp/#comments</comments>
		<pubDate>Sat, 25 Aug 2012 11:36:30 +0000</pubDate>
		<dc:creator>Rubal</dc:creator>
				<category><![CDATA[Visual Studio Tools]]></category>

		<guid isPermaLink="false">http://dynamicsgphelp.com/?p=781</guid>
		<description><![CDATA[I came across a post on Dynamics GP forum related to order in which Additional Menu items from multiple Visual Studio Addins are loaded. I decided to test this to figure out the order in which assemblies are initialized. For testing, I created two GP addins – DynamicsGPAddin1 and DynamicsGPAddin2. In both addins, I added [...]]]></description>
			<content:encoded><![CDATA[<p>I came across a <a href="https://community.dynamics.com/product/gp/f/32/t/87015.aspx" target="_blank">post</a> on Dynamics GP forum related to order in which Additional Menu items from multiple Visual Studio Addins are loaded. I decided to test this to figure out the order in which assemblies are initialized.</p>
<p>For testing, I created two GP addins – DynamicsGPAddin1 and DynamicsGPAddin2.</p>
<p>In both addins, I added simple code to display a message box during initializing process and added additional menu option for Customer Maintenance Window.</p>
<p>DynamicsGPAddin1<br />
<code><br />
rmForm.AddMenuHandler(menu1, "DynamicsGPAddin1");</code></p>
<p><code> </code></p>
<p><code>MessageBox.Show("DynamicsGPAddin1");<br />
</code></p>
<p>DynamicsGPAddin2<br />
<code><br />
rmForm.AddMenuHandler(menu2, "DynamicsGPAddin2");</code></p>
<p><code> </code></p>
<p><code>MessageBox.Show("DynamicsGPAddin2");<br />
</code></p>
<p>Idea was to check which message box is displayed first to determine the order in which assemblies are loaded. When I added both dlls in my GP folder order in which message box were displayed was DynamicsGPAddin1 and DynamicsGPAddin2.</p>
<p>The two possibilities that came to my mind were alphabetical order or by date modified (DynamicsGPAddin1 was compiled first).</p>
<p>Order of menu options visible in the Customer maintenance was also same.</p>
<p><a rel="attachment wp-att-788" href="http://dynamicsgphelp.com/2012/08/visual-studio-tool-order-of-class-librariesdll-initialization-in-dynamics-gp/1-7/"><img class="alignnone size-full wp-image-788" title="Menu" src="http://dynamicsgphelp.com/wp-content/uploads/2012/08/1.jpg" alt="" width="434" height="176" /></a></p>
<p>To further isolate the order, I simply renamed my DynamicsGPAddin1 dll to DynamicsGPAddin3</p>
<p>Now, the order in which message boxes were displayed was reversed. Also, the order in which menu were displayed was reversed</p>
<p><a rel="attachment wp-att-787" href="http://dynamicsgphelp.com/2012/08/visual-studio-tool-order-of-class-librariesdll-initialization-in-dynamics-gp/2-5/"><img class="alignnone size-full wp-image-787" title="2" src="http://dynamicsgphelp.com/wp-content/uploads/2012/08/2.jpg" alt="" width="419" height="181" /></a></p>
<p>&nbsp;</p>
<p>This helped me to reach the conclusion that  assemblies in the addins folder in GP are loaded in the alphabetical order. It depends upon the name of dlls and not on the caption of the menu items.</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://dynamicsgphelp.com/2012/08/visual-studio-tool-order-of-class-librariesdll-initialization-in-dynamics-gp/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Slides for Girls on GP presentation</title>
		<link>http://dynamicsgphelp.com/2011/12/slides-for-girls-on-gp-presentation/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=slides-for-girls-on-gp-presentation</link>
		<comments>http://dynamicsgphelp.com/2011/12/slides-for-girls-on-gp-presentation/#comments</comments>
		<pubDate>Tue, 06 Dec 2011 20:47:38 +0000</pubDate>
		<dc:creator>Rubal</dc:creator>
				<category><![CDATA[Event]]></category>
		<category><![CDATA[Girls on GP]]></category>
		<category><![CDATA[MSDynamicsWorld’s Decisions Fall 2011]]></category>

		<guid isPermaLink="false">http://dynamicsgphelp.com/?p=764</guid>
		<description><![CDATA[Thanks everyone for attending our presentation Girls on GP: Customization options for GP ! As promised, here are slides from our session Girls on GP at MSDynamicsWorld’s Decisions Fall 2011 &#160; &#160; &#160;]]></description>
			<content:encoded><![CDATA[<p>Thanks everyone for attending our presentation <a href="http://decisions.msdynamicsworld.com/session/girls-gp-customization-options-microsoft-dynamics-gp-what-use-when" target="_blank">Girls on GP: Customization options for GP</a> ! As promised, here are slides from our session</p>
<p><img class="alignnone size-full wp-image-75" title="Attachment" src="http://dynamicsgphelp.com/wp-content/uploads/2011/05/Attachment-e1304766611697.png" alt="" width="12" height="12" /> <a href="http://www.box.com/s/07e21xnifybdatizkz66" target="_blank">Girls on GP at MSDynamicsWorld’s Decisions Fall 2011</a></p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://dynamicsgphelp.com/2011/12/slides-for-girls-on-gp-presentation/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Girls on GP at MSDynamicsWorld&#8217;s Decisions Fall 2011</title>
		<link>http://dynamicsgphelp.com/2011/11/girls-on-gp-at-msdynamicsworlds-decisions-fall-2011/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=girls-on-gp-at-msdynamicsworlds-decisions-fall-2011</link>
		<comments>http://dynamicsgphelp.com/2011/11/girls-on-gp-at-msdynamicsworlds-decisions-fall-2011/#comments</comments>
		<pubDate>Wed, 30 Nov 2011 06:22:07 +0000</pubDate>
		<dc:creator>Rubal</dc:creator>
				<category><![CDATA[Event]]></category>
		<category><![CDATA[Decisions]]></category>
		<category><![CDATA[presentation]]></category>

		<guid isPermaLink="false">http://dynamicsgphelp.com/?p=754</guid>
		<description><![CDATA[I&#8217;ll be presenting in MSDynamicsWorld’s Decisions Fall 2011 with Tina who is also a Dynamics GP Consultant and Developer at Smith and Allen Consulting Inc. We will discuss various Customization Options available for Microsoft Dynamics GP. Register now for this fun and exciting session and many others.]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ll be presenting in MSDynamicsWorld’s Decisions Fall 2011 with Tina who is also a Dynamics GP Consultant and Developer at Smith and Allen Consulting Inc. We will discuss various Customization Options available for Microsoft Dynamics GP.</p>
<p><a href=" https://presentations.inxpo.com/Shows/MSDynamics/12-11/Registration/Decisions012_11RegistrationPage.html?AffiliateKey=13897&amp;AffiliateData=Speaker" target="_blank">Register now</a> for this fun and exciting session and many others.</p>
<p><a href=" https://presentations.inxpo.com/Shows/MSDynamics/12-11/Registration/Decisions012_11RegistrationPage.html?AffiliateKey=13897&amp;AffiliateData=Speaker" target="_blank"><img style="display: inline; border: 0px;" title="clip_image001" src="http://dynamicsgphelp.com/wp-content/uploads/2011/11/clip_image001.jpg" border="0" alt="MSDynamicsWorld’s Decisions Fall 2011" width="244" height="81" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://dynamicsgphelp.com/2011/11/girls-on-gp-at-msdynamicsworlds-decisions-fall-2011/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SOP Quote Warning -Line item quantities are not fully distributed. Do you want to continue ?</title>
		<link>http://dynamicsgphelp.com/2011/10/sop-quote-warning-line-item-quantities-are-not-fully-distributed-do-you-want-to-continue/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=sop-quote-warning-line-item-quantities-are-not-fully-distributed-do-you-want-to-continue</link>
		<comments>http://dynamicsgphelp.com/2011/10/sop-quote-warning-line-item-quantities-are-not-fully-distributed-do-you-want-to-continue/#comments</comments>
		<pubDate>Wed, 12 Oct 2011 07:06:01 +0000</pubDate>
		<dc:creator>Rubal</dc:creator>
				<category><![CDATA[Dynamics GP Errors]]></category>
		<category><![CDATA[error message]]></category>
		<category><![CDATA[quote]]></category>
		<category><![CDATA[Sales Order Processing]]></category>
		<category><![CDATA[SOP]]></category>

		<guid isPermaLink="false">http://dynamicsgphelp.com/?p=736</guid>
		<description><![CDATA[I recently came across this question in GP Community related to warning displayed while entering SOP quotes in GP. Warning Message: Message -“Line item quantities are not fully distributed. Do you want to continue?” is displayed when you enter line items in the SOP quote in Sales Transaction Entry window. Reason: Option to transfer quote to either Order or Invoice [...]]]></description>
			<content:encoded><![CDATA[<p>I recently came across this question in <a href="https://community.dynamics.com/product/gp/f/32/p/64947/117912.aspx" target="_blank">GP Community</a> related to warning displayed while entering SOP quotes in GP.</p>
<p><strong>Warning Message:</strong></p>
<p>Message -“Line item quantities are not fully distributed. Do you want to continue?” is displayed when you enter line items in the SOP quote in Sales Transaction Entry window.</p>
<p><img style="display: inline; border-width: 0px;" title="clip_image001" src="http://dynamicsgphelp.com/wp-content/uploads/2011/10/clip_image001.png" border="0" alt="clip_image001" width="414" height="281" /></p>
<p><strong> </strong></p>
<p><strong>Reason:</strong></p>
<p>Option to transfer quote to either Order or Invoice is not selected in quote ID setup. If you try to transfer such quote to order or invoice, all options will be disabled.</p>
<p><strong>Resolution: </strong></p>
<p>Check on Transfer to Order or Invoice in Quote ID setup.</p>
<p>1. Open <strong>Sales Quote Setup window</strong> from Microsoft Dynamics GP menu &gt;&gt; Tools &gt;&gt; Setup &gt;&gt; Sales &gt;&gt; Sales Order Processing &gt;&gt; Sales Document Setup button &gt;&gt; select the Quote option</p>
<p>2. Select the Quote ID for which are getting the error message</p>
<p>3. Check on Transfer Quote to Order and/or Transfer Quote to Invoice.</p>
<p>• Transfer Quote to Invoice-Mark this option if you want to be able to transfer documents with this quote ID to invoices.</p>
<p>• Transfer Quote to Order-Mark this option if you want to be able to transfer documents with this quote ID to orders.</p>
<p>4. Enter the order ID in ‘Use Order ID’ field and/or invoice ID in Use Invoice ID depending up options you have checked on.</p>
<p>5. When you check on order or invoice options, ‘Default Quantities’ field is enabled. Use it to select whether item quantities will appear automatically in the Quantity to Invoice or Quantity to Order fields in the Sales Transaction Entry window</p>
<p><img style="display: inline; border: 0px;" title="clip_image002" src="http://dynamicsgphelp.com/wp-content/uploads/2011/10/clip_image002.png" border="0" alt="clip_image002" width="439" height="315" /></p>
]]></content:encoded>
			<wfw:commentRss>http://dynamicsgphelp.com/2011/10/sop-quote-warning-line-item-quantities-are-not-fully-distributed-do-you-want-to-continue/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Warning &#8220;Sales Order Processing and Invoicing are both installed&#8221; in Microsoft Dynamics GP</title>
		<link>http://dynamicsgphelp.com/2011/09/warning-sales-order-processing-and-invoicing-are-both-installed-in-microsoft-dynamics-gp/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=warning-sales-order-processing-and-invoicing-are-both-installed-in-microsoft-dynamics-gp</link>
		<comments>http://dynamicsgphelp.com/2011/09/warning-sales-order-processing-and-invoicing-are-both-installed-in-microsoft-dynamics-gp/#comments</comments>
		<pubDate>Sat, 10 Sep 2011 12:32:18 +0000</pubDate>
		<dc:creator>Rubal</dc:creator>
				<category><![CDATA[Dynamics GP Errors]]></category>
		<category><![CDATA[SQL]]></category>
		<category><![CDATA[gp error]]></category>
		<category><![CDATA[Invoicing]]></category>
		<category><![CDATA[SOP]]></category>

		<guid isPermaLink="false">http://dynamicsgphelp.com/?p=727</guid>
		<description><![CDATA[Error Message: &#8220;Sales Order Processing and Invoicing modules are both installed. They do not share information. Transactions should be entered in one module only.&#8221; Below I discuss how you can turn off this message using Dynamics Utilities and SQL. Reason: This message is displayed to prevent users from accidentally entering transactions in both the Sales [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Error Message:</strong> &#8220;Sales Order Processing and Invoicing modules are both installed. They do not share information. Transactions should be entered in one module only.&#8221;</p>
<p>Below I discuss how you can turn off this message using Dynamics Utilities and SQL.</p>
<p><img style="display: inline; border: 0px;" title="clip_image001" src="http://dynamicsgphelp.com/wp-content/uploads/2011/09/clip_image001.png" border="0" alt="clip_image001" width="387" height="152" /></p>
<p><strong> </strong></p>
<p><strong>Reason: </strong></p>
<p>This message is displayed to prevent users from accidentally entering transactions in both the Sales Order Processing and Invoicing modules in Microsoft Dynamics GP. These modules do not share any information with each other. All transactions from Sales Order Processing are saved in tables starting with SOP and all Invoicing transactions are saved in tables starting with IVC (Note IVC and not IV which is for Inventory). Data from these tables flows into Receivable Management (RM) after that it goes into General ledger (GL)</p>
<p>Solution<strong>:</strong></p>
<p>You can turn off this warning in the module you are using:</p>
<p><strong>Option 1:</strong> Turn off warning using <strong>Dynamics GP Utilities</strong></p>
<p><strong>Option 2:</strong> Turn off warning using SQL script</p>
<p><strong>Option 1: </strong>You can very easily turn off this warning using Dynamics GP Utilities</p>
<p>1. Log in Dynamics GP Utilities.</p>
<p>2. Follow the steps of wizard until &#8220;Additional Tasks&#8221; Window</p>
<p>3. Select &#8220;Remove SOP and Invoicing message from the drop-down list</p>
<p>4. Select the Process button.</p>
<p>5. Check off the checkbox for the module you are using. Example, if you use Sales Order Processing, check off &#8220;Warn in Sales Order Processing&#8221;. This way the warning will be displayed if user accidently opens the Invoice Entry window from Invoicing module</p>
<p>&nbsp;</p>
<p><img style="display: inline; border: 0px;" title="clip_image004" src="http://dynamicsgphelp.com/wp-content/uploads/2011/09/clip_image004.png" border="0" alt="clip_image004" width="380" height="252" /></p>
<p><strong> </strong></p>
<p><strong>Option 2: </strong><span style="text-decoration: underline;">In case, you don’t that access to Dynamics GP Utilities </span>(It happens in some Citrix and cloud hosting environments).</p>
<p>You can run following script against all company databases</p>
<p>To turn off warning in SOP module use</p>
<blockquote><p>UPDATE SOP40100 SET IVCDSTCK = &#8217;0&#215;00000000&#8242;</p></blockquote>
<p>To turn off warning in SOP module</p>
<blockquote><p>UPDATE IVC40100 SET IVCDSTCK = &#8217;0&#215;00000000&#8242;</p></blockquote>
<p>If you want to turn on the warning &#8211; in these two cases use the 0&#215;01000000 instead of 0&#215;00000000 in the script</p>
]]></content:encoded>
			<wfw:commentRss>http://dynamicsgphelp.com/2011/09/warning-sales-order-processing-and-invoicing-are-both-installed-in-microsoft-dynamics-gp/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Modifying Reminders&#8217; display on GP Home page</title>
		<link>http://dynamicsgphelp.com/2011/08/modifying-reminders-display-on-gp-home-page/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=modifying-reminders-display-on-gp-home-page</link>
		<comments>http://dynamicsgphelp.com/2011/08/modifying-reminders-display-on-gp-home-page/#comments</comments>
		<pubDate>Mon, 29 Aug 2011 18:57:56 +0000</pubDate>
		<dc:creator>Rubal</dc:creator>
				<category><![CDATA[Dynamics GP Errors]]></category>
		<category><![CDATA[Reporting]]></category>
		<category><![CDATA[Modify home page css]]></category>
		<category><![CDATA[modify reminder display]]></category>

		<guid isPermaLink="false">http://dynamicsgphelp.com/?p=708</guid>
		<description><![CDATA[Last week, I was adding a series of reminders on the home. As I kept on adding more reminders, I noticed it was getting harder and harder to read them. I wanted to make the data displayed on Microsoft Dynamics GP home page more readable. I decided try modifying the home to accomplish this. These [...]]]></description>
			<content:encoded><![CDATA[<p>Last week, I was adding a series of reminders on the home. As I kept on adding more reminders, I noticed it was getting harder and harder to read them. I wanted to make the data displayed on Microsoft Dynamics GP home page more readable. I decided try modifying the home to accomplish this. These changes are applicable to both GP 10 and GP 2010.</p>
<p>For some background about modifying the home page refer to following articles:</p>
<p><a href="http://mohdaoud.blogspot.com/2009/07/how-to-change-gp-100-homepage.html">How to change GP 10.0 Homepage??</a></p>
<p><a href="http://blogs.msdn.com/b/developingfordynamicsgp/archive/2010/01/25/increasing-the-microsoft-dynamics-gp-10-0-homepage-font-size.aspx">Increasing the Microsoft Dynamics GP 10.0 Homepage Font Size</a></p>
<p>Reminders before changes</p>
<p><a href="http://dynamicsgphelp.com/wp-content/uploads/2011/08/image1.png"><img style="display: inline; border-width: 0px;" title="image" src="http://dynamicsgphelp.com/wp-content/uploads/2011/08/image_thumb.png" border="0" alt="image" width="353" height="290" /></a></p>
<p>&nbsp;</p>
<p>Reminders after changes</p>
<p><img title="clip_image002" src="http://dynamicsgphelp.com/wp-content/uploads/2011/08/clip_image002.png" border="0" alt="clip_image002" width="399" height="239" /></p>
<p>&nbsp;</p>
<p>I reviewed files in Background folder in GP installation folder (GP 10  C:\Program Files\Microsoft Dynamics\GP\Background and GP 2010  C:\Program Files\Microsoft Dynamics\GP2010\Background). I found the css classes used in reminders section are:</p>
<ul>
<li>part-content-newlink</li>
<li>part-content-suffix</li>
</ul>
<p>I modified the HomePage.css (GP 10  C:\Program Files\Microsoft Dynamics\GP\Background\HomePage.css and GP 2010  C:\Program Files\Microsoft Dynamics\GP2010\Background\HomePage.css) to change the formatting of these classes. Take a backup of this file before making changes.</p>
<p><strong>part-content-newlink</strong>: It is applied on each row displayed in reminder section. If you make any to this css class it will applicable to all reminders</p>
<p>Example I added following section a bottom of HomePage.css file</p>
<blockquote><p>.part-content-newlink</p>
<p>{</p>
<p>font-size: 12pt;</p>
<p>}</p></blockquote>
<p>Resulted in increased font size for reminders</p>
<p><img style="display: inline; border-width: 0px;" title="clip_image001" src="http://dynamicsgphelp.com/wp-content/uploads/2011/08/clip_image001.png" border="0" alt="clip_image001" width="406" height="269" /></p>
<p><a href="http://www.box.net/shared/0p3qrpukt5m84havm4g0" target="_blank"></a><a rel="attachment wp-att-75" href="http://dynamicsgphelp.com/2011/05/sales-commission-by-customer/attachment/"><img class="alignnone size-full wp-image-75" title="Attachment" src="http://dynamicsgphelp.com/wp-content/uploads/2011/05/Attachment-e1304766611697.png" alt="" width="12" height="12" /></a> <a href="http://www.box.net/shared/0p3qrpukt5m84havm4g0" target="_blank">Download the updated HomePage.css with this change</a></p>
<p>However, this was not quite what I wanted. Instead of highlighting whole text I just wanted to highlight the data only.</p>
<p><strong>part-content-suffix</strong>: This class is specifically applied to the data value displayed in the reminder. Any changes made to this class are applied on number displayed next to Name of reminder</p>
<p>Example</p>
<blockquote><p>.part-content-suffix</p>
<p>{</p>
<p>font-size: 12pt;</p>
<p>color: Blue;</p>
<p>font-weight: Bold;</p>
<p>}</p></blockquote>
<p>Resulted in following</p>
<p><img title="clip_image002" src="http://dynamicsgphelp.com/wp-content/uploads/2011/08/clip_image002.png" border="0" alt="clip_image002" width="399" height="239" /></p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>Exactly what I wanted!</p>
<p><a href="http://www.box.net/shared/v81qg9664iyvvuzziz7n" target="_blank"></a><a rel="attachment wp-att-75" href="http://dynamicsgphelp.com/2011/05/sales-commission-by-customer/attachment/"><img class="alignnone size-full wp-image-75" title="Attachment" src="http://dynamicsgphelp.com/wp-content/uploads/2011/05/Attachment-e1304766611697.png" alt="" width="12" height="12" /></a> <a href="http://www.box.net/shared/v81qg9664iyvvuzziz7n" target="_blank">Download the updated HomePage.css with this change</a></p>
<p>&nbsp;</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://dynamicsgphelp.com/2011/08/modifying-reminders-display-on-gp-home-page/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Error message -Could not find a part of the path &lt;report path&gt; when publishing Excel Report Builder report in GP</title>
		<link>http://dynamicsgphelp.com/2011/08/error-message-could-not-find-a-part-of-the-path-report-path-when-publishing-excel-report-builder-report-in-gp/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=error-message-could-not-find-a-part-of-the-path-report-path-when-publishing-excel-report-builder-report-in-gp</link>
		<comments>http://dynamicsgphelp.com/2011/08/error-message-could-not-find-a-part-of-the-path-report-path-when-publishing-excel-report-builder-report-in-gp/#comments</comments>
		<pubDate>Sat, 27 Aug 2011 10:30:28 +0000</pubDate>
		<dc:creator>Rubal</dc:creator>
				<category><![CDATA[Dynamics GP Errors]]></category>
		<category><![CDATA[Excel report builder issue]]></category>
		<category><![CDATA[publish excel report error]]></category>

		<guid isPermaLink="false">http://dynamicsgphelp.com/?p=693</guid>
		<description><![CDATA[Error message: Could not find a part of the path &#8216;\\server_name\Excel Reports path\CompanyID\ CompanyID Report Name\xl\workbook.xml&#8217; when you try to publish the report created using Excel Report builder Cause This error message is displayed when you try to publish an excel report to Report Library and report library path is not set up in Reporting [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Error message: </strong></p>
<p>Could not find a part of the path &#8216;\\server_name\Excel Reports path\CompanyID\ CompanyID Report Name\xl\workbook.xml&#8217; when you try to publish the report created using Excel Report builder</p>
<p><img style="display: inline; border: 0px;" title="image" src="http://dynamicsgphelp.com/wp-content/uploads/2011/08/image.png" border="0" alt="image" width="371" height="154" /></p>
<p><strong> </strong></p>
<p><strong>Cause </strong></p>
<p>This error message is displayed when you try to publish an excel report to Report Library and report library path is not set up in Reporting  Tools Setup window (Microsoft Dynamics GP menu &gt;&gt; Tools &gt;&gt; Setup &gt;&gt; System &gt;&gt; Reporting Tools Setup)</p>
<p><strong> </strong></p>
<p><strong>Solution</strong></p>
<p>Solution 1: If you have SharePoint setup and you want to publish report to SharePoint library, complete the setup in in Reporting  Tools Setup window. Select Excel Reports and select SharePoint in location dropdown and enter the paths for sites</p>
<p><img style="display: inline; border-width: 0px;" title="clip_image001[1]" src="http://dynamicsgphelp.com/wp-content/uploads/2011/08/clip_image00111.png" border="0" alt="clip_image001[1]" width="337" height="327" /></p>
<p><strong>Solution 2</strong>: If you don’t have SharePoint installed and you just want to publish reports to network shared folder</p>
<p>Click Publish button on the Excel Report Builder window (Microsoft Dynamics GP menu &gt;&gt; Tools &gt;&gt; SmartList Builder &gt;&gt; Excel Report Builder) or open the Publish Report window from Microsoft Dynamics GP menu &gt;&gt; Tools &gt;&gt; SmartList Builder&gt;&gt; Publish Report</p>
<p>Select the Report ID</p>
<p><img style="display: inline; border-width: 0px;" title="clip_image002[1]" src="http://dynamicsgphelp.com/wp-content/uploads/2011/08/clip_image00211.png" border="0" alt="clip_image002[1]" width="413" height="289" /></p>
<p>Select File as the Publish To option.</p>
<p><img style="display: inline; border-width: 0px;" title="clip_image003[1]" src="http://dynamicsgphelp.com/wp-content/uploads/2011/08/clip_image00311.png" border="0" alt="clip_image003[1]" width="391" height="265" /></p>
<p>Enter the filename and location for the data connection</p>
<p>Enter the filename and location for the excel report</p>
<p><img style="display: inline; border-width: 0px;" title="clip_image004[1]" src="http://dynamicsgphelp.com/wp-content/uploads/2011/08/clip_image00411.png" border="0" alt="clip_image004[1]" width="383" height="257" /></p>
<p>Click Publish</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://dynamicsgphelp.com/2011/08/error-message-could-not-find-a-part-of-the-path-report-path-when-publishing-excel-report-builder-report-in-gp/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Updating the Home Page Metrics in GP 2010 R2</title>
		<link>http://dynamicsgphelp.com/2011/08/updating-the-home-page-metrics-in-gp-2010-r2/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=updating-the-home-page-metrics-in-gp-2010-r2</link>
		<comments>http://dynamicsgphelp.com/2011/08/updating-the-home-page-metrics-in-gp-2010-r2/#comments</comments>
		<pubDate>Tue, 23 Aug 2011 17:48:34 +0000</pubDate>
		<dc:creator>Rubal</dc:creator>
				<category><![CDATA[draft]]></category>
		<category><![CDATA[Reporting]]></category>
		<category><![CDATA[dashboard]]></category>
		<category><![CDATA[Home page]]></category>
		<category><![CDATA[updating Metrics]]></category>

		<guid isPermaLink="false">http://dynamicsgphelp.com/?p=678</guid>
		<description><![CDATA[Today, I am going to discuss another feature of GP 2010 R2 –Adding/Updating the Home Page Metrics. Before starting, you should have following setup Microsoft Dynamics GP 2010 R2 Microsoft SQL Server 2008 or Microsoft SQL Server 2008 R2 SQL Server Reporting Services 2008 or SQL Server Reporting Services 2008 R2 Report Builder 2.0 or [...]]]></description>
			<content:encoded><![CDATA[<p>Today, I am going to discuss another feature of GP 2010 R2 –Adding/Updating the Home Page Metrics.</p>
<p>Before starting, you should have following setup</p>
<ul>
<li>Microsoft Dynamics GP 2010 R2</li>
<li>Microsoft SQL Server 2008 or Microsoft SQL Server 2008 R2</li>
<li>SQL Server Reporting Services 2008 or SQL Server Reporting Services 2008 R2</li>
<li>Report Builder 2.0 or later</li>
<li>Internet Explorer 7 or later</li>
</ul>
<p>One of the coolest features of the GP 2010 R2 is -you can add multiple metric on the home page to create a dashboard. To turn this feature on check on the ‘Show All’  check box on the home page Customize the home page window. To open this window click the ‘Customize this page’ link at the top of the Home Content pane</p>
<p><img style="display: inline; border: 0px;" title="clip_image002[4]" src="http://dynamicsgphelp.com/wp-content/uploads/2011/08/clip_image0024.png" border="0" alt="clip_image002[4]" width="409" height="345" /></p>
<p>Open the Metrics Details window using the arrow button next to metrics to select the metrics for the Home</p>
<p><img style="display: inline; border: 0px;" title="8" src="http://dynamicsgphelp.com/wp-content/uploads/2011/08/81.png" border="0" alt="8" width="409" height="330" /></p>
<p>Select the metrics and click Insert button. Click OK after selecting metrics</p>
<p><img style="display: inline; border: 0px;" title="2" src="http://dynamicsgphelp.com/wp-content/uploads/2011/08/2.png" border="0" alt="2" width="426" height="343" /></p>
<p>Metrics visible on home</p>
<p><img style="display: inline; border: 0px;" title="14" src="http://dynamicsgphelp.com/wp-content/uploads/2011/08/14.png" border="0" alt="14" width="466" height="347" /></p>
<p>Some metrics might not display data for sample company Fabrikam as Fabrikam has data for year 2017 and metrics display charts and KPIs for current date</p>
<p>You can also open a metric in Internet Explorer from the GP home page using the view button. It is only visible when you take mouse over the top right corner of the metrics</p>
<p><img style="display: inline; border: 0px;" title="10" src="http://dynamicsgphelp.com/wp-content/uploads/2011/08/10.png" border="0" alt="10" width="448" height="309" /></p>
<p>In internet explorer, you can change the parameters for the report/chart, print the metric or export it to various formats</p>
<p><img style="display: inline; border: 0px;" title="11" src="http://dynamicsgphelp.com/wp-content/uploads/2011/08/11.png" border="0" alt="11" width="432" height="268" /></p>
<p><img style="display: inline; border: 0px;" title="15" src="http://dynamicsgphelp.com/wp-content/uploads/2011/08/15.png" border="0" alt="15" width="433" height="238" /></p>
<p><strong>Updating Metrics </strong></p>
<p>Before editing metrics, make sure Internet explorer is set up as default browser. The download fails in the Google Chrome and Firefox</p>
<p>Select the metric you want to edit from the list in the metric Detail window and click Edit</p>
<p><img style="display: inline; border: 0px;" title="8" src="http://dynamicsgphelp.com/wp-content/uploads/2011/08/82.png" border="0" alt="8" width="383" height="309" /></p>
<p>This will download and open report design for making changes</p>
<p><img style="display: inline; border: 0px;" title="9" src="http://dynamicsgphelp.com/wp-content/uploads/2011/08/9.png" border="0" alt="9" width="411" height="331" /></p>
<p>Make changes in the report and click Save. You can test generating the report using the Run button after changes</p>
<p><img style="display: inline; border: 0px;" title="12" src="http://dynamicsgphelp.com/wp-content/uploads/2011/08/12.png" border="0" alt="12" width="433" height="317" /></p>
<p>After saving refresh the home page to view the updated metric</p>
<p><img style="display: inline; border: 0px;" title="13" src="http://dynamicsgphelp.com/wp-content/uploads/2011/08/13.png" border="0" alt="13" width="446" height="234" /></p>
]]></content:encoded>
			<wfw:commentRss>http://dynamicsgphelp.com/2011/08/updating-the-home-page-metrics-in-gp-2010-r2/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>AA Budget made easy-Roll Budget Total Up/Down in GP 2010 R2</title>
		<link>http://dynamicsgphelp.com/2011/08/aa-budget-made-easy-roll-budget-total-updown-in-gp-2010-r2/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=aa-budget-made-easy-roll-budget-total-updown-in-gp-2010-r2</link>
		<comments>http://dynamicsgphelp.com/2011/08/aa-budget-made-easy-roll-budget-total-updown-in-gp-2010-r2/#comments</comments>
		<pubDate>Mon, 15 Aug 2011 15:20:22 +0000</pubDate>
		<dc:creator>Rubal</dc:creator>
				<category><![CDATA[Analytical Accounting]]></category>
		<category><![CDATA[draft]]></category>
		<category><![CDATA[budget]]></category>

		<guid isPermaLink="false">http://dynamicsgphelp.com/?p=630</guid>
		<description><![CDATA[Entering Analytical Accounting budget is a tedious task especially if you have more than couple of dimensions. In earlier versions of GP, you had to calculate the total for each dimension, at each level. You could create budget in Microsoft Excel and import it in GP &#8211; Still it was lengthy task. With GP 2010 [...]]]></description>
			<content:encoded><![CDATA[<p>Entering Analytical Accounting budget is a tedious task especially if you have more than couple of dimensions. In earlier versions of GP, you had to calculate the total for each dimension, at each level. You could create budget in Microsoft Excel and import it in GP &#8211; Still it was lengthy task.</p>
<p>With GP 2010 R2, you don’t have to enter the budget for dimensions(nodes) at all levels of the budget tree. You can simply enter the budget amount for dimension codes at bottom level and roll up the budget to root node and vice versa.</p>
<p>You can roll up the budget amounts from the lowest dimension to the codes on the node immediately above it and so forth till the root node of the tree or you can roll down the budget from root node to nodes at bottom of tree.</p>
<p>For the sake of example, I am using two dimensions in following order Project and Employees.  Use the following table to understand how budget amounts  are rolled up to the parent node.  In this table, employee is on the lowest level of tree, when you enter budget for various employees the project totals are  automatically calculated and then projects total are rolled up to calculate 2011 budget total.</p>
<table border="1" cellspacing="0" cellpadding="0" width="393">
<tbody>
<tr>
<td width="98" valign="top"><strong>Budget ID</strong></td>
<td width="85" valign="top"><strong>Project</strong></td>
<td width="93" valign="top"><strong>Employee</strong></td>
<td width="115" valign="top"><strong>Amount </strong></td>
</tr>
<tr>
<td width="98" valign="top">2011 Budget</td>
<td width="85" valign="top"></td>
<td width="93" valign="top"></td>
<td width="115" valign="top">2,000.00</td>
</tr>
<tr>
<td width="98" valign="top"></td>
<td width="85" valign="top">PROJECT 1</td>
<td width="93" valign="top"></td>
<td width="115" valign="top">1,000.00</td>
</tr>
<tr>
<td width="98" valign="top"></td>
<td width="85" valign="top">PROJECT 1</td>
<td width="93" valign="top">Employee 1</td>
<td width="115" valign="top">600.00</td>
</tr>
<tr>
<td width="98" valign="top"></td>
<td width="85" valign="top">PROJECT 1</td>
<td width="93" valign="top">Employee 2</td>
<td width="115" valign="top">400.00</td>
</tr>
<tr>
<td width="98" valign="top"></td>
<td width="85" valign="top">PROJECT 2</td>
<td width="93" valign="top"></td>
<td width="115" valign="top">1,000.00</td>
</tr>
<tr>
<td width="98" valign="top"></td>
<td width="85" valign="top">PROJECT 2</td>
<td width="93" valign="top">Employee 1</td>
<td width="115" valign="top">500.00</td>
</tr>
<tr>
<td width="98" valign="top"></td>
<td width="85" valign="top">PROJECT 2</td>
<td width="93" valign="top">Employee 2</td>
<td width="115" valign="top">500.00</td>
</tr>
</tbody>
</table>
<p>&nbsp;</p>
<p>Option to select Budget Roll in the Analytical Accounting Budget Maintenance Window (Cards &gt;&gt; Financial &gt;&gt; Analytical Accounting &gt;&gt; Budget). You can roll up or roll down the budget amounts</p>
<p><a rel="attachment wp-att-636" href="http://dynamicsgphelp.com/2011/08/aa-budget-made-easy-roll-budget-total-updown-in-gp-2010-r2/01-4/"><img class="alignnone size-full wp-image-636" title="Analytical Accounting Budget Maintenance window" src="http://dynamicsgphelp.com/wp-content/uploads/2011/08/013.png" alt="Analytical Accounting Budget Maintenance window" width="513" height="393" /></a></p>
<p>&nbsp;</p>
<p><strong>Rolling up the budget amounts</strong></p>
<p>Selected &#8216;Up&#8217; in the Budget Roll Total</p>
<p>Notice the Budget Amounts for  root node are disabled</p>
<p><a rel="attachment wp-att-642" href="http://dynamicsgphelp.com/2011/08/aa-budget-made-easy-roll-budget-total-updown-in-gp-2010-r2/5-3/"><img class="alignnone size-full wp-image-642" title="Roll Up" src="http://dynamicsgphelp.com/wp-content/uploads/2011/08/5.png" alt="" width="514" height="390" /></a></p>
<p>&nbsp;</p>
<p>You can enter budget for Analytical Accounting dimension at bottom most level only(Employee in our example)</p>
<p><a rel="attachment wp-att-643" href="http://dynamicsgphelp.com/2011/08/aa-budget-made-easy-roll-budget-total-updown-in-gp-2010-r2/6-2/"><img class="alignnone size-full wp-image-643" title="Enter Budget" src="http://dynamicsgphelp.com/wp-content/uploads/2011/08/6.png" alt="" width="527" height="402" /></a></p>
<p><a rel="attachment wp-att-644" href="http://dynamicsgphelp.com/2011/08/aa-budget-made-easy-roll-budget-total-updown-in-gp-2010-r2/7-3/"><img class="alignnone size-full wp-image-644" title="7" src="http://dynamicsgphelp.com/wp-content/uploads/2011/08/7.png" alt="" width="530" height="402" /></a></p>
<p>&nbsp;</p>
<p>This amount is automatically rolled up to dimension above(Project in this case)</p>
<p><a rel="attachment wp-att-645" href="http://dynamicsgphelp.com/2011/08/aa-budget-made-easy-roll-budget-total-updown-in-gp-2010-r2/8-2/"><img class="alignnone size-full wp-image-645" title="Budget calculated" src="http://dynamicsgphelp.com/wp-content/uploads/2011/08/8.png" alt="" width="511" height="392" /></a></p>
<p>&nbsp;</p>
<p><strong>Rolling down the budget amounts</strong></p>
<p>Enter total budget for root node</p>
<p><a rel="attachment wp-att-639" href="http://dynamicsgphelp.com/2011/08/aa-budget-made-easy-roll-budget-total-updown-in-gp-2010-r2/02-4/"><img class="alignnone size-full wp-image-639" title="Roll down budget" src="http://dynamicsgphelp.com/wp-content/uploads/2011/08/023.png" alt="" width="495" height="381" /></a></p>
<p>Used the Node button to allocate the total amount among various dimension codes at level 1 (Project in this example)</p>
<p>You can assign percentage for each dimension code or you can divide amount equally among all codes</p>
<p><a rel="attachment wp-att-640" href="http://dynamicsgphelp.com/2011/08/aa-budget-made-easy-roll-budget-total-updown-in-gp-2010-r2/03-3/"><img class="alignnone size-full wp-image-640" title="03" src="http://dynamicsgphelp.com/wp-content/uploads/2011/08/032.png" alt="" width="398" height="463" /></a></p>
<p>&nbsp;</p>
<p>I divided the budget equally between two projects, so each project has budget of $100</p>
<p>&nbsp;</p>
<p><a rel="attachment wp-att-641" href="http://dynamicsgphelp.com/2011/08/aa-budget-made-easy-roll-budget-total-updown-in-gp-2010-r2/attachment/04/"><img class="alignnone size-full wp-image-641" title="Budged rolled down" src="http://dynamicsgphelp.com/wp-content/uploads/2011/08/04.png" alt="" width="498" height="381" /></a></p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://dynamicsgphelp.com/2011/08/aa-budget-made-easy-roll-budget-total-updown-in-gp-2010-r2/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
