<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Victoria Yudin &#187; Inventory</title>
	<atom:link href="http://victoriayudin.com/tag/inventory/feed/" rel="self" type="application/rss+xml" />
	<link>http://victoriayudin.com</link>
	<description>Ramblings and musings of a Dynamics GP MVP</description>
	<lastBuildDate>Sat, 04 Feb 2012 11:19:11 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='victoriayudin.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://1.gravatar.com/blavatar/3cb782884f1419245af3e8375b2a1bff?s=96&#038;d=http%3A%2F%2Fs2.wp.com%2Fi%2Fbuttonw-com.png</url>
		<title>Victoria Yudin &#187; Inventory</title>
		<link>http://victoriayudin.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://victoriayudin.com/osd.xml" title="Victoria Yudin" />
	<atom:link rel='hub' href='http://victoriayudin.com/?pushpress=hub'/>
		<item>
		<title>Dynamics GP inventory by location with dates</title>
		<link>http://victoriayudin.com/2011/01/29/dynamics-gp-inventory-by-location-with-dates/</link>
		<comments>http://victoriayudin.com/2011/01/29/dynamics-gp-inventory-by-location-with-dates/#comments</comments>
		<pubDate>Sat, 29 Jan 2011 11:18:01 +0000</pubDate>
		<dc:creator>Victoria Yudin</dc:creator>
				<category><![CDATA[Dynamics GP]]></category>
		<category><![CDATA[GP Reports code]]></category>
		<category><![CDATA[GP SQL scripts]]></category>
		<category><![CDATA[Inventory SQL code]]></category>
		<category><![CDATA[Inventory]]></category>
		<category><![CDATA[SQL code]]></category>

		<guid isPermaLink="false">http://victoriayudin.com/?p=3316</guid>
		<description><![CDATA[In response to a request from a reader, I have created a new version of the Inventory with Dates script to show the same information by Site ID. I also added a Quantity on Order column. You can see more Dynamics GP Inventory scripts here. Or visit my GP Reports page for links to additional GP [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=victoriayudin.com&amp;blog=4884873&amp;post=3316&amp;subd=victoriayudin&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p style="text-align:justify;">In response to a request from a reader, I have created a new version of the <a title="SQL view for inventory items and dates" href="http://victoriayudin.com/2009/12/04/sql-view-for-inventory-items-and-dates/">Inventory with Dates</a> script to show the same information by Site ID. I also added a Quantity on Order column.</p>
<p style="text-align:justify;">You can see more Dynamics GP Inventory scripts <a title="Inventory SQL Views" href="http://victoriayudin.com/gp-reports/inventory-sql-views/">here</a>. Or visit my <a title="GP Reports" href="http://victoriayudin.com/gp-reports/">GP Reports page</a> for links to additional GP scripts and other reporting information and tips.</p>
<p style="text-align:center;"><span style="color:#888888;">~~~~~</span></p>
<pre>CREATE VIEW view_Inventory_by_Site_with_Dates
AS
<span style="color:#999999;">/********************************************************************
view_Inventory_by_Site_with_Dates
Created on Jan 29, 2011 by Victoria Yudin - Flexible Solutions, Inc.
For updates see http://victoriayudin.com/gp-reports/
All inventory items with quantity on hand and last sale
     and receipt dates, by site ID
Functional amounts only
Tables used:
I - IV00101 - Item Master
S - IV30300 - Transaction Amounts History with DOCTYPE = 6 (sales)
Q - IV00102 - Item Quantity Master
U - IV40201 - U of M Schedule Header
********************************************************************/</span>

SELECT I.ITEMNMBR Item_Number,
       Q.LOCNCODE Site_ID,
       I.ITEMDESC Item_Description,
       Q.QTYONHND Quantity_on_Hand,
       Q.QTYONORD Quantity_on_Order,
       U.BASEUOFM U_of_M,
       CASE I.ITEMTYPE
          WHEN 1 THEN 'Sales Inventory'
          WHEN 2 THEN 'Discontinued'
          WHEN 3 THEN 'Kit'
          WHEN 4 THEN 'Misc Charges'
          WHEN 5 THEN 'Services'
          WHEN 6 THEN 'Flat Fee'
          END Item_Type,
       I.CURRCOST Current_Cost,
       I.ITMCLSCD Item_Class,
       coalesce(S.LastSale,'1/1/1900') Last_Sale_Date,
       coalesce(Q.LSRCPTDT,'1/1/1900') Last_Receipt_Date,
       coalesce(Q.LSORDVND,'') Last_Vendor

FROM IV00101 I

INNER JOIN
     IV00102 Q
     ON I.ITEMNMBR = Q.ITEMNMBR
     AND RCRDTYPE = 2

LEFT OUTER JOIN
     (SELECT ITEMNMBR, MAX(DOCDATE) LastSale, TRXLOCTN
      FROM IV30300
      WHERE DOCTYPE = 6
      GROUP BY ITEMNMBR, TRXLOCTN) S
     ON I.ITEMNMBR = S.ITEMNMBR
     AND Q.LOCNCODE = S.TRXLOCTN

INNER JOIN
     IV40201 U
     ON U.UOMSCHDL = I.UOMSCHDL

WHERE Q.QTYONHND &lt;&gt; 0

<span style="color:#3366ff;">/** the following will grant permissions to this view to DYNGRP,
leave this section off if you do not want to grant permissions **/
GO
GRANT SELECT ON view_Inventory_by_Site_with_Dates TO DYNGRP</span></pre>
<p style="text-align:center;"><span style="color:#888888;">~~~~~</span></p>
<p style="text-align:justify;"><em>Disclaimer: I tested this on limited data, if you find an issue or have a suggestion for improvement, please let me know and I will post the update here for everyone</em></p>
<br />Filed under: <a href='http://victoriayudin.com/category/dynamics-gp/'>Dynamics GP</a>, <a href='http://victoriayudin.com/category/gp-reports-code/'>GP Reports code</a>, <a href='http://victoriayudin.com/category/dynamics-gp/gp-sql-scripts/'>GP SQL scripts</a>, <a href='http://victoriayudin.com/category/gp-reports-code/inventory-sql-code/'>Inventory SQL code</a> Tagged: <a href='http://victoriayudin.com/tag/dynamics-gp/'>Dynamics GP</a>, <a href='http://victoriayudin.com/tag/gp-reports-code/'>GP Reports code</a>, <a href='http://victoriayudin.com/tag/inventory/'>Inventory</a>, <a href='http://victoriayudin.com/tag/sql-code/'>SQL code</a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/victoriayudin.wordpress.com/3316/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/victoriayudin.wordpress.com/3316/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/victoriayudin.wordpress.com/3316/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/victoriayudin.wordpress.com/3316/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/victoriayudin.wordpress.com/3316/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/victoriayudin.wordpress.com/3316/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/victoriayudin.wordpress.com/3316/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/victoriayudin.wordpress.com/3316/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/victoriayudin.wordpress.com/3316/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/victoriayudin.wordpress.com/3316/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/victoriayudin.wordpress.com/3316/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/victoriayudin.wordpress.com/3316/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/victoriayudin.wordpress.com/3316/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/victoriayudin.wordpress.com/3316/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=victoriayudin.com&amp;blog=4884873&amp;post=3316&amp;subd=victoriayudin&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://victoriayudin.com/2011/01/29/dynamics-gp-inventory-by-location-with-dates/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
	
		<media:thumbnail url="http://victoriayudin.files.wordpress.com/2011/01/boxes.jpg?w=96" />
		<media:content url="http://victoriayudin.files.wordpress.com/2011/01/boxes.jpg?w=96" medium="image">
			<media:title type="html">boxes</media:title>
		</media:content>

		<media:content url="http://1.gravatar.com/avatar/17a8ce996aec3d35caf943487b6956a5?s=96&#38;d=wavatar" medium="image">
			<media:title type="html">Victoria</media:title>
		</media:content>
	</item>
		<item>
		<title>SQL view for Inventory Price Levels in Dynamics GP</title>
		<link>http://victoriayudin.com/2010/08/09/sql-view-for-inventory-price-levels-in-dynamics-gp/</link>
		<comments>http://victoriayudin.com/2010/08/09/sql-view-for-inventory-price-levels-in-dynamics-gp/#comments</comments>
		<pubDate>Mon, 09 Aug 2010 11:56:20 +0000</pubDate>
		<dc:creator>Victoria Yudin</dc:creator>
				<category><![CDATA[Dynamics GP]]></category>
		<category><![CDATA[GP Reports code]]></category>
		<category><![CDATA[GP SQL scripts]]></category>
		<category><![CDATA[Inventory SQL code]]></category>
		<category><![CDATA[GP SQL view]]></category>
		<category><![CDATA[Inventory]]></category>
		<category><![CDATA[SQL code]]></category>

		<guid isPermaLink="false">http://victoriayudin.com/?p=2870</guid>
		<description><![CDATA[When you are creating prices for different price levels in Dynamics GP, there is no easy way to see these, or to see all the prices for a particular price level. Below is a view that can help with this. ~~~~~ CREATE VIEW view_Inventory_Price_Levels AS /******************************************************************* view_Inventory_Price_Levels Created on Aug 9, 2010 by Victoria Yudin - [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=victoriayudin.com&amp;blog=4884873&amp;post=2870&amp;subd=victoriayudin&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>When you are creating prices for different price levels in Dynamics GP, there is no easy way to see these, or to see all the prices for a particular price level. Below is a view that can help with this.</p>
<p style="text-align:center;"><span style="color:#888888;">~~~~~</span></p>
<pre>CREATE VIEW view_Inventory_Price_Levels
AS

/*******************************************************************
view_Inventory_Price_Levels
Created on Aug 9, 2010 by Victoria Yudin - Flexible Solutions, Inc.
For updates visit http://victoriayudin.com/gp-reports/
*******************************************************************/

SELECT IV.ITEMNMBR Item_Number,
       IM.ITEMDESC Item_Description,
       IM.ITMCLSCD Item_Class,
       IV.PRCLEVEL Price_Level,
       CASE IM.PRICMTHD
       	  WHEN 1 THEN 'Currency Amount'
       	  WHEN 2 THEN '% of List Price'
	  WHEN 3 THEN '% Markup – Current Cost'
	  WHEN 4 THEN '% Markup – Standard Cost'
	  WHEN 5 THEN '% Margin – Current Cost'
	  WHEN 6 THEN '% Margin – Standard Cost'
	  END Price_Method,
       IV.CURNCYID Currency_ID,
       IV.UOFM U_of_M,
       CASE IM.PRICMTHD
	  WHEN 1 THEN IV.UOMPRICE
	  WHEN 2 THEN IV.UOMPRICE * IC.LISTPRCE / 100
	  ELSE 0
	  END Price,
       CASE IM.PRICMTHD
	  WHEN 1 THEN 0
	  ELSE IV.UOMPRICE
	  END Percent_of_List,
       IV.FROMQTY From_Qty,
       IV.TOQTY To_Qty,
       IV.QTYBSUOM Qty_In_Base_UofM

FROM   IV00108 IV

LEFT OUTER JOIN
       IV00101 IM
       ON IM.ITEMNMBR = IV.ITEMNMBR

LEFT OUTER JOIN
       IV00105 IC
       ON IC.ITEMNMBR = IV.ITEMNMBR
       AND IV.CURNCYID = IC.CURNCYID

<span style="color:#3366ff;">/** the following will grant permissions to this view to DYNGRP,
leave this section off if you do not want to grant permissions **/
GO
GRANT SELECT ON view_Inventory_Price_Levels TO DYNGRP
</span></pre>
<p style="text-align:center;"><span style="color:#888888;">~~~~~</span></p>
<p>If you are looking to see customer specific pricing, take a look at my <a title="SQL view to show customer pricing" href="http://victoriayudin.com/2009/01/07/sql-view-to-show-customer-pricing/" target="_self">Customer Pricing</a> post.  You can also see a full list of my Dynamics GP SQL code on the <a title="Victoria Yudin's GP Reports" href="http://victoriayudin.com/gp-reports/" target="_blank">GP Reports page</a> of this blog.</p>
<p><em>Disclaimer: I tested this on limited data, if you find an issue or have a suggestion for improvement, please let me know and I will post the update here for everyone.</em></p>
<br />Filed under: <a href='http://victoriayudin.com/category/dynamics-gp/'>Dynamics GP</a>, <a href='http://victoriayudin.com/category/gp-reports-code/'>GP Reports code</a>, <a href='http://victoriayudin.com/category/dynamics-gp/gp-sql-scripts/'>GP SQL scripts</a>, <a href='http://victoriayudin.com/category/gp-reports-code/inventory-sql-code/'>Inventory SQL code</a> Tagged: <a href='http://victoriayudin.com/tag/gp-reports-code/'>GP Reports code</a>, <a href='http://victoriayudin.com/tag/gp-sql-view/'>GP SQL view</a>, <a href='http://victoriayudin.com/tag/inventory/'>Inventory</a>, <a href='http://victoriayudin.com/tag/sql-code/'>SQL code</a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/victoriayudin.wordpress.com/2870/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/victoriayudin.wordpress.com/2870/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/victoriayudin.wordpress.com/2870/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/victoriayudin.wordpress.com/2870/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/victoriayudin.wordpress.com/2870/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/victoriayudin.wordpress.com/2870/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/victoriayudin.wordpress.com/2870/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/victoriayudin.wordpress.com/2870/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/victoriayudin.wordpress.com/2870/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/victoriayudin.wordpress.com/2870/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/victoriayudin.wordpress.com/2870/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/victoriayudin.wordpress.com/2870/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/victoriayudin.wordpress.com/2870/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/victoriayudin.wordpress.com/2870/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=victoriayudin.com&amp;blog=4884873&amp;post=2870&amp;subd=victoriayudin&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://victoriayudin.com/2010/08/09/sql-view-for-inventory-price-levels-in-dynamics-gp/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/17a8ce996aec3d35caf943487b6956a5?s=96&#38;d=wavatar" medium="image">
			<media:title type="html">Victoria</media:title>
		</media:content>
	</item>
		<item>
		<title>SQL view for inventory items and dates</title>
		<link>http://victoriayudin.com/2009/12/04/sql-view-for-inventory-items-and-dates/</link>
		<comments>http://victoriayudin.com/2009/12/04/sql-view-for-inventory-items-and-dates/#comments</comments>
		<pubDate>Fri, 04 Dec 2009 12:09:02 +0000</pubDate>
		<dc:creator>Victoria Yudin</dc:creator>
				<category><![CDATA[Dynamics GP]]></category>
		<category><![CDATA[GP Reports code]]></category>
		<category><![CDATA[GP SQL scripts]]></category>
		<category><![CDATA[Inventory SQL code]]></category>
		<category><![CDATA[Inventory]]></category>
		<category><![CDATA[SQL code]]></category>

		<guid isPermaLink="false">http://victoriayudin.com/?p=2079</guid>
		<description><![CDATA[This view is a little bit of a twist on my previous SQL view for inventory quantities on hand. The results of this view will give you a list of your Microsoft Dynamics GP inventory items, current quantities and the last sales and purchase dates along with the vendor. For other SQL views on Dynamics GP data, please visit [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=victoriayudin.com&amp;blog=4884873&amp;post=2079&amp;subd=victoriayudin&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p style="text-align:justify;">This view is a little bit of a twist on my previous <a title="SQL view for inventory quantities on hand" href="http://victoriayudin.com/2009/06/18/sql-view-for-inventory-quantities-on-hand/" target="_blank">SQL view for inventory quantities on hand</a>. The results of this view will give you a list of your Microsoft Dynamics GP inventory items, current quantities and the last sales and purchase dates along with the vendor.</p>
<p style="text-align:justify;">For other SQL views on Dynamics GP data, please visit my <a title="GP Reports" href="http://victoriayudin.com/gp-reports/" target="_blank">GP Reports page</a>.</p>
<p style="text-align:center;"><span style="color:#888888;">~~~~~</span></p>
<p><code>CREATE VIEW view_Inventory_with_Dates</code><br />
<code>AS</code><br />
<code><span style="color:#888888;">/********************************************************************</span></code><br />
<span style="color:#888888;"><code>view_Inventory_with_Dates </code></span><br />
<span style="color:#888888;"><code>Created on Dec 4, 2009 by Victoria Yudin - Flexible Solutions, Inc. </code></span><br />
<span style="color:#888888;"><code>For updates see http://victoriayudin.com/gp-reports/ </code></span><br />
<span style="color:#888888;"><code>All inventory items with quantity on hand and last sale</code></span><br />
<span style="color:#888888;"><code>     and receipt dates Functional amounts only </code></span><br />
<span style="color:#888888;"><code>Tables used: </code></span><br />
<span style="color:#888888;"><code>I - IV00101 - Item Master </code></span><br />
<span style="color:#888888;"><code>S - IV30300 - Transaction Amounts History with DOCTYPE = 6 (sales) </code></span><br />
<span style="color:#888888;"><code>Q - IV00102 - Item Quantity Master </code></span><br />
<span style="color:#888888;"><code>U - IV40201 - U of M Schedule Header </code></span><br />
<span style="color:#888888;"><code>Updated Dec 22, 2009 to add WHERE clause at end </code></span><br />
<span style="color:#888888;"><code>Updated Jan 29, 2011 to change join type for IV30300</code> <code>********************************************************************/</code></span></p>
<pre>SELECT I.ITEMNMBR Item_Number,
       I.ITEMDESC Item_Description,
       Q.QTYONHND Quantity_on_Hand,
       U.BASEUOFM U_of_M,
       CASE I.ITEMTYPE
          WHEN 1 THEN 'Sales Inventory'
          WHEN 2 THEN 'Discontinued'
          WHEN 3 THEN 'Kit'
          WHEN 4 THEN 'Misc Charges'
          WHEN 5 THEN 'Services'
          WHEN 6 THEN 'Flat Fee'
          END Item_Type,
       I.CURRCOST Current_Cost,
       I.ITMCLSCD Item_Class,
       coalesce(S.LastSale,'1/1/1900') Last_Sale_Date,
       coalesce(Q.LSRCPTDT,'1/1/1900') Last_Receipt_Date,
       coalesce(Q.LSORDVND,'') Last_Vendor

FROM IV00101 I

LEFT OUTER JOIN
     (SELECT ITEMNMBR, MAX(DOCDATE) LastSale
      FROM IV30300
      WHERE DOCTYPE = 6
      GROUP BY ITEMNMBR) S
     ON I.ITEMNMBR = S.ITEMNMBR

INNER JOIN
     IV00102 Q
     ON I.ITEMNMBR = Q.ITEMNMBR
     AND RCRDTYPE = 1

INNER JOIN
     IV40201 U
     ON U.UOMSCHDL = I.UOMSCHDL

WHERE Q.QTYONHND &lt;&gt; 0</pre>
<p><code> </code><br />
<span style="color:#3366ff;"><code>/** the following will grant permissions to this view to DYNGRP, </code></span><br />
<span style="color:#3366ff;"><code>leave this section off if you do not want to grant permissions **/ </code></span><br />
<span style="color:#3366ff;"><code>GO </code></span><br />
<span style="color:#3366ff;"><code>GRANT SELECT ON view_Inventory_with_Dates TO DYNGRP</code></span></p>
<p style="text-align:center;"><span style="color:#999999;">~~~~~</span></p>
<p style="text-align:justify;"><em>Disclaimer: I tested this on limited data, if you find an issue or have a suggestion for improvement, please let me know and I will post the update here for everyone</em></p>
<br />Posted in Dynamics GP, GP Reports code, GP SQL scripts, Inventory SQL code Tagged: Dynamics GP, GP Reports code, Inventory, SQL code <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/victoriayudin.wordpress.com/2079/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/victoriayudin.wordpress.com/2079/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/victoriayudin.wordpress.com/2079/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/victoriayudin.wordpress.com/2079/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/victoriayudin.wordpress.com/2079/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/victoriayudin.wordpress.com/2079/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/victoriayudin.wordpress.com/2079/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/victoriayudin.wordpress.com/2079/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/victoriayudin.wordpress.com/2079/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/victoriayudin.wordpress.com/2079/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/victoriayudin.wordpress.com/2079/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/victoriayudin.wordpress.com/2079/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/victoriayudin.wordpress.com/2079/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/victoriayudin.wordpress.com/2079/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=victoriayudin.com&amp;blog=4884873&amp;post=2079&amp;subd=victoriayudin&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://victoriayudin.com/2009/12/04/sql-view-for-inventory-items-and-dates/feed/</wfw:commentRss>
		<slash:comments>17</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/17a8ce996aec3d35caf943487b6956a5?s=96&#38;d=wavatar" medium="image">
			<media:title type="html">Victoria</media:title>
		</media:content>
	</item>
		<item>
		<title>SQL view for inventory quantities on hand</title>
		<link>http://victoriayudin.com/2009/06/18/sql-view-for-inventory-quantities-on-hand/</link>
		<comments>http://victoriayudin.com/2009/06/18/sql-view-for-inventory-quantities-on-hand/#comments</comments>
		<pubDate>Thu, 18 Jun 2009 12:50:56 +0000</pubDate>
		<dc:creator>Victoria Yudin</dc:creator>
				<category><![CDATA[Dynamics GP]]></category>
		<category><![CDATA[GP Reports code]]></category>
		<category><![CDATA[GP SQL scripts]]></category>
		<category><![CDATA[Inventory SQL code]]></category>
		<category><![CDATA[GP SQL view]]></category>
		<category><![CDATA[Inventory]]></category>
		<category><![CDATA[SQL code]]></category>

		<guid isPermaLink="false">http://victoriayudin.com/?p=1774</guid>
		<description><![CDATA[I haven&#8217;t had much time to blog lately as we have added functionality to our GP Reports Viewer product that allows seamless replacement of SOP reports in Dynamics GP and the amount of interest has been overwhelming.  However, I just needed to create a new SmartList to show current inventory quantities on hand with their costs and I [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=victoriayudin.com&amp;blog=4884873&amp;post=1774&amp;subd=victoriayudin&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p style="text-align:justify;">I haven&#8217;t had much time to blog lately as <a title="Flexible Solutions website" href="http://www.flex-solutions.com" target="_blank">we</a> have added functionality to our <a title="GP Reports Viewer" href="http://www.flex-solutions.com/gpreports.html" target="_blank">GP Reports Viewer</a> product that allows seamless <a title="GP Reports Viewer - replacing SOP reports" href="http://www.flex-solutions.com/videos/gprv_sopreports/gprv_sopreports.htm" target="_blank">replacement of SOP reports</a> in Dynamics GP and the amount of interest has been overwhelming. </p>
<p style="text-align:justify;">However, I just needed to create a new SmartList to show current inventory quantities on hand with their costs and I wanted to share the view I used. Please bear in mind, this was only tested with our data and only FIFO Perpetual inventory items, so this may not work for all situations. And the average unit cost is simply the total cost divided by the quantity on hand.</p>
<p style="text-align:justify;">For other GP SQL views, please take a look at my <a title="GP Reports page" href="http://victoriayudin.com/gp-reports/" target="_self">GP Reports page</a>.</p>
<p style="text-align:center;"><span style="color:#c0c0c0;">~~~~~</span></p>
<p><code>CREATE VIEW view_On_Hand_Inventory<br />
AS</code></p>
<p><code><span style="color:#808080;">/********************************************************************<br />
view_On_Hand_Inventory<br />
Created on June 18, 2009 by Victoria Yudin - Flexible Solutions, Inc.<br />
For updates see http://victoriayudin.com/gp-reports/<br />
Inventory on hand quantities by site<br />
Only tested with FIFO Perpetual inventory valuation method<br />
I - IV00101 - Item Master<br />
T - IV10200 - Purchase Receipts<br />
Updated on June 24, 2009 to add Item Class<br />
********************************************************************/</span></code><br />
<code><br />
SELECT T.ITEMNMBR Item,<br />
       I.ITEMDESC Description,<br />
I.ITMCLSCD Item_Class,<br />
       T.TRXLOCTN Site_ID,<br />
       sum(T.QTYRECVD-T.QTYSOLD) Quantity,<br />
       sum(T.UNITCOST*(T.QTYRECVD-T.QTYSOLD)) Total_Cost,<br />
       sum(T.UNITCOST*(T.QTYRECVD-T.QTYSOLD))<br />
          /sum(T.QTYRECVD-T.QTYSOLD) Avg_Unit_Cost</code><br />
<code><br />
FROM IV10200 T<br />
INNER JOIN<br />
     IV00101 I<br />
     ON I.ITEMNMBR = T.ITEMNMBR</code><br />
<code><br />
WHERE T.QTYRECVD &lt;&gt; T.QTYSOLD<br />
GROUP BY T.ITEMNMBR, T.TRXLOCTN, I.ITEMDESC, I.ITMCLSCD</code><br />
<code><br />
<span style="color:#3366ff;">/** the following will grant permissions to this view to DYNGRP,<br />
leave this section off if you do not want to grant permissions **/<br />
GO<br />
GRANT SELECT ON view_On_Hand_Inventory TO DYNGRP</span></code></p>
<p style="text-align:center;"><span style="color:#c0c0c0;">~~~~~</span></p>
<p><em>Disclaimer: I tested this on limited data, if you find an issue or have a suggestion for improvement, please let me know and I will post the update here for everyone.</em></p>
<br />Posted in Dynamics GP, GP Reports code, GP SQL scripts, Inventory SQL code Tagged: GP Reports code, GP SQL view, Inventory, SQL code <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/victoriayudin.wordpress.com/1774/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/victoriayudin.wordpress.com/1774/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/victoriayudin.wordpress.com/1774/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/victoriayudin.wordpress.com/1774/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/victoriayudin.wordpress.com/1774/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/victoriayudin.wordpress.com/1774/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/victoriayudin.wordpress.com/1774/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/victoriayudin.wordpress.com/1774/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/victoriayudin.wordpress.com/1774/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/victoriayudin.wordpress.com/1774/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/victoriayudin.wordpress.com/1774/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/victoriayudin.wordpress.com/1774/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/victoriayudin.wordpress.com/1774/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/victoriayudin.wordpress.com/1774/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=victoriayudin.com&amp;blog=4884873&amp;post=1774&amp;subd=victoriayudin&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://victoriayudin.com/2009/06/18/sql-view-for-inventory-quantities-on-hand/feed/</wfw:commentRss>
		<slash:comments>15</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/17a8ce996aec3d35caf943487b6956a5?s=96&#38;d=wavatar" medium="image">
			<media:title type="html">Victoria</media:title>
		</media:content>
	</item>
		<item>
		<title>SQL view to show customer pricing</title>
		<link>http://victoriayudin.com/2009/01/07/sql-view-to-show-customer-pricing/</link>
		<comments>http://victoriayudin.com/2009/01/07/sql-view-to-show-customer-pricing/#comments</comments>
		<pubDate>Wed, 07 Jan 2009 08:59:50 +0000</pubDate>
		<dc:creator>Victoria Yudin</dc:creator>
				<category><![CDATA[Dynamics GP]]></category>
		<category><![CDATA[GP Reports code]]></category>
		<category><![CDATA[GP SQL scripts]]></category>
		<category><![CDATA[Inventory SQL code]]></category>
		<category><![CDATA[GP SQL view]]></category>
		<category><![CDATA[Inventory]]></category>
		<category><![CDATA[SQL code]]></category>

		<guid isPermaLink="false">http://victoriayudin.com/?p=1137</guid>
		<description><![CDATA[Here is a view to show customer specific item pricing in Dynamics GP when using standard pricing.  This will work either with SmartList Builder or Crystal Reports as I have made sure not to put any spaces in the names.  If you are using SmartList Builder this means you may want to go down the [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=victoriayudin.com&amp;blog=4884873&amp;post=1137&amp;subd=victoriayudin&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p style="text-align:justify;">Here is a view to show customer specific item pricing in Dynamics GP when using standard pricing.  This will work either with SmartList Builder or Crystal Reports as I have made sure not to put any spaces in the names.  If you are using SmartList Builder this means you may want to go down the list of the column names and add spaces to make them more user friendly. </p>
<p style="text-align:justify;">For other SQL views on Dynamics GP data, please visit my <a title="GP Reports" href="http://victoriayudin.com/gp-reports/" target="_blank">GP Reports page</a>.</p>
<p style="text-align:center;"><span style="color:#c0c0c0;">~~~~~</span></p>
<pre>CREATE VIEW view_Customer_Pricing
AS

<span style="color:#888888;">/**
view_Customer_Pricing
Created Jan. 7 2009 by Victoria Yudin - Flexible Solutions, Inc.
For updates see http://victoriayudin.com/gp-reports/
Shows individual item pricing based on customer price level.
For use with standard pricing.
Excludes customers with no price level.</span><span style="color:#888888;">
Updated Jan. 14 2009 to add price method, % column value if price list
is not currency amount and calculation for % of List Price price method.
Does not show actual price for % Margin or % Markup price methods.</span><span style="color:#888888;">
**/</span>

SELECT C.CUSTNMBR as 'CustomerID', C.CUSTNAME as 'CustomerName',
       C.PRCLEVEL as 'PriceLevel', IV.ITEMNMBR as 'ItemNumber',
       IM.ITEMDESC as 'ItemDescription',
       CASE IM.PRICMTHD
       	WHEN 1 THEN 'Currency Amount'
       	WHEN 2 THEN '% of List Price'
	WHEN 3 THEN '% Markup – Current Cost'
	WHEN 4 THEN '% Markup – Standard Cost'
	WHEN 5 THEN '% Margin – Current Cost'
	WHEN 6 THEN '% Margin – Standard Cost'
	END as 'PriceMethod',
       IV.CURNCYID as 'CurrencyID', IV.UOFM as 'UofM',
       CASE IM.PRICMTHD
	WHEN 1 THEN IV.UOMPRICE
	WHEN 2 THEN IV.UOMPRICE * IC.LISTPRCE / 100
	ELSE 0
	END as 'Price',
       CASE IM.PRICMTHD
	WHEN 1 THEN 0
	ELSE IV.UOMPRICE
	END as 'Percent',
       IV.FROMQTY as 'FromQty', IV.TOQTY as 'ToQty',
       IV.QTYBSUOM as 'QtyInBaseUofM'
FROM   RM00101 C
LEFT OUTER JOIN
       IV00108 IV
       ON C.PRCLEVEL = IV.PRCLEVEL
LEFT OUTER JOIN
       IV00101 IM
       ON IM.ITEMNMBR = IV.ITEMNMBR
LEFT OUTER JOIN
       IV00105 IC
       ON IC.ITEMNMBR = IV.ITEMNMBR AND IV.CURNCYID = IC.CURNCYID
WHERE  C.PRCLEVEL &lt;&gt; '' --excludes customers with no price level

<span style="color:#3366ff;">/** the following will grant permissions to this view to DYNGRP,
leave this section off if you do not want to grant permissions **/
GO
GRANT SELECT ON view_Customer_Pricing TO DYNGRP</span></pre>
<p style="text-align:center;"><span style="color:#c0c0c0;">~~~~~</span></p>
<p style="text-align:justify;"><span style="color:#000000;"><em>Disclaimer: I tested this on limited data, if you find an issue or have a suggestion for improvement, please let me know and I will post the update here for everyone.</em></span></p>
<br />Posted in Dynamics GP, GP Reports code, GP SQL scripts, Inventory SQL code Tagged: GP Reports code, GP SQL view, Inventory, SQL code <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/victoriayudin.wordpress.com/1137/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/victoriayudin.wordpress.com/1137/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/victoriayudin.wordpress.com/1137/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/victoriayudin.wordpress.com/1137/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/victoriayudin.wordpress.com/1137/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/victoriayudin.wordpress.com/1137/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/victoriayudin.wordpress.com/1137/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/victoriayudin.wordpress.com/1137/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/victoriayudin.wordpress.com/1137/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/victoriayudin.wordpress.com/1137/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/victoriayudin.wordpress.com/1137/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/victoriayudin.wordpress.com/1137/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/victoriayudin.wordpress.com/1137/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/victoriayudin.wordpress.com/1137/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=victoriayudin.com&amp;blog=4884873&amp;post=1137&amp;subd=victoriayudin&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://victoriayudin.com/2009/01/07/sql-view-to-show-customer-pricing/feed/</wfw:commentRss>
		<slash:comments>12</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/17a8ce996aec3d35caf943487b6956a5?s=96&#38;d=wavatar" medium="image">
			<media:title type="html">Victoria</media:title>
		</media:content>
	</item>
		<item>
		<title>Year end close in Dynamics GP</title>
		<link>http://victoriayudin.com/2008/11/14/year-end-close-in-dynamics-gp/</link>
		<comments>http://victoriayudin.com/2008/11/14/year-end-close-in-dynamics-gp/#comments</comments>
		<pubDate>Fri, 14 Nov 2008 11:32:17 +0000</pubDate>
		<dc:creator>Victoria Yudin</dc:creator>
				<category><![CDATA[Dynamics GP]]></category>
		<category><![CDATA[featured]]></category>
		<category><![CDATA[Fixed Assets]]></category>
		<category><![CDATA[General Ledger]]></category>
		<category><![CDATA[Inventory]]></category>
		<category><![CDATA[Payables]]></category>
		<category><![CDATA[Payroll]]></category>
		<category><![CDATA[Receivables]]></category>
		<category><![CDATA[year end close]]></category>

		<guid isPermaLink="false">http://victoriayudin.wordpress.com/?p=602</guid>
		<description><![CDATA[Every year we get a slew of phone calls about closing the year in GP.  Usually these start in December and I  thought I would beat the rush this year. Here are some resources and notes I have compiled over the years on the year end close. I will add to this post as I find more [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=victoriayudin.com&amp;blog=4884873&amp;post=602&amp;subd=victoriayudin&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p style="text-align:justify;">Every year we get a slew of phone calls about closing the year in GP.  Usually these start in December and I  thought I would beat the rush this year. Here are some resources and notes I have compiled over the years on the year end close. I will add to this post as I find more resources or if I get additional questions, so you can always find updated information here.</p>
<h3 style="text-align:center;">GP KnowledgeBase Articles</h3>
<p style="text-align:justify;">Microsoft publishes and updates articles that explain in great detail how the year end close should be done and all the implications and timing issues.  Here is order that the modules should be closed in and the related articles:</p>
<ul>
<li>
<div style="text-align:left;"><a title="Inventory year end close" href="https://mbs.microsoft.com/customersource/documentation/howtodocuments/msdgpinvencontmod.htm?printpage=false&amp;stext=inventory year end close" target="_blank">Inventory</a></div>
</li>
<li>
<div style="text-align:left;">Receivables Management &#8211; <a title="RM year end close KB 857444" href="https://mbs.microsoft.com/knowledgebase/KBDisplay.aspx?scid=kb$en-us$857444" target="_blank">KB 857444</a></div>
</li>
<li>
<div style="text-align:left;">Payables Management &#8211; <a title="PM year end close - KB 875169" href="https://mbs.microsoft.com/knowledgebase/KBDisplay.aspx?scid=kb;en-us;875169" target="_blank">KB 875169</a></div>
</li>
<li>
<div style="text-align:left;">Fixed Assets &#8211; <a title="Fixed Assets year end close - KB 865653" href="https://mbs.microsoft.com/knowledgebase/KBDisplay.aspx?scid=kb;en-us;865653" target="_blank">KB 865653</a></div>
</li>
<li>
<div style="text-align:left;">General Ledger &#8211; <a title="GL year end close - KB 888003" href="https://mbs.microsoft.com/knowledgebase/KBDisplay.aspx?scid=kb;en-us;888003" target="_blank">KB 888003</a></div>
</li>
<li>
<div style="text-align:left;">Payroll &#8211; <a title="Payroll year end close - KB 850663" href="https://mbs.microsoft.com/knowledgebase/KBDisplay.aspx?scid=kb;en-us;850663" target="_blank">KB 850663</a> or Canadian Payroll &#8211; <a title="Canadian Payroll year end close - KB 861506" href="https://mbs.microsoft.com/knowledgebase/KBDisplay.aspx?scid=kb;en-us;861806" target="_blank">KB 861806</a></div>
</li>
</ul>
<p style="text-align:left;">
<h3 style="text-align:center;">Other Resources</h3>
<ul>
<li>
<div style="text-align:justify;">Mark Polino&#8217;s Dynamics Sherpa <a title="Dynamics Sherpa Year End Close" href="http://www.youtube.com/watch?v=mL4oNyr8eAs" target="_blank">Year End Close video</a></div>
</li>
<li>
<div style="text-align:justify;"><a title="Accolade Publications" href="http://www.accoladepublications.com/" target="_self">Accolade Publications</a> Year/Period End Procedures <em>(click on Great Plains on the bottom, then Year/Period End Procedures on the right)</em></div>
</li>
<li>
<div style="text-align:justify;">Information about performing the year-end closing procedure in Receivables Management in Microsoft Dynamics GP after December 31 &#8211; <a title="KB 851140" href="https://mbs.microsoft.com/knowledgebase/KBDisplay.aspx?scid=kb;en-us;851140" target="_blank">KB 851140</a></div>
</li>
<li>
<div style="text-align:justify;">Each Dynamics GP manual will all have a section on the year end close if it is applicable for that  particular module</div>
</li>
<li>
<div style="text-align:justify;">GP 9.0 &#8211; <a title="GP 9.0 - 2008 US Payroll Year End Update" href="https://mbs.microsoft.com/customersource/downloads/taxupdates/usgpye9.htm" target="_blank">2008 US Payroll Year End Update</a></div>
</li>
<li>
<div style="text-align:left;">GP 10.0 &#8211; <a title="GP 10.0 - 2008 US Payroll Year End Update" href="https://mbs.microsoft.com/customersource/downloads/taxupdates/usgpye10.htm" target="_blank">2008 US Payroll Year End Update</a></div>
</li>
<li>
<div style="text-align:left;">Mariano Gomez: <a title="Applying 2008 Year End updates for Microsoft Dynamics GP 9.0 and 10.0 " href="http://dynamicsgpblogster.blogspot.com/2008/12/urgent-applying-2008-year-end-updates.html" target="_blank">Applying 2008 Year End updates for Microsoft Dynamics GP 9.0 and 10.0</a></div>
</li>
<li>
<div style="text-align:justify;">Mariano Gomez: <a title="2008 Year End Update and Microsoft Great Plains 8.0 " href="http://dynamicsgpblogster.blogspot.com/2008/12/urgent-2008-year-end-update-and.html" target="_blank">2008 Year End Update and Microsoft Great Plains 8.0</a></div>
</li>
<li>
<div style="text-align:justify;">Christina Phillips of Dynamics GP Land: <a title="Year End 2008 Tips and Tricks" href="http://dynamicsgpland.blogspot.com/2009/01/year-end-2008-tips-and-tricks.html" target="_blank">Year End 2008 Tips and Tricks</a></div>
</li>
<li>
<div style="text-align:justify;">Doug Pitcher of Rose Business Solutons: <a title="2008 Payroll year end close update Dynamics 10.0" href="http://rbsgp.blogspot.com/2009/01/2008-year-end-close-update-dynamics-100.html" target="_blank">2008 Payroll year end close update Dynamics 10.0</a></div>
</li>
</ul>
<p style="text-align:left;">
<h3 style="text-align:center;">General Ledger &#8211; Common Questions</h3>
<p style="text-align:justify;"><span style="color:#963;"><strong><span style="color:#993300;">When?</span> </strong> </span>The biggest question we get on the General Ledger close is when to do it.  On one hand you don&#8217;t want to close the GL before all your adjustments are in and/or the audit is done.  On the other hand, you hate not being able to see beginning balances for the GL accounts and having to use alternate FRx reports to add in last year&#8217;s numbers.  Since you can post to the last fiscal year even if it is closed there is no harm in closing the fiscal year sooner than later.  However, make sure that you won&#8217;t need to post to years prior to the last closed year, since you won&#8217;t be able to do it.  (In other words, once you close 2008, you can still update 2008, but 2007 is done at that point.)</p>
<p style="text-align:justify;"><span style="color:#800000;"><strong><span style="color:#993300;">I said I won&#8217;t need to, but how do I post to 2005?</span></strong></span>  If you absolutely positively have to post to more than one prior year, it is possible, but it will cost you.  The Microsoft Professional Services team has a procedure they can run on your system that will re-open prior years.  The cost will depend on the size of your data, how many companies and years you need to open and when you need to do this.  We have used this service a number of times and have never had an issue, so it definitely works.  To get more information on this, contact your GP Partner and show them <a title="GL Year End Open for GP" href="https://mbs.microsoft.com/downloads/customer/APSS/Final_OpenGL_DS.pdf?wa=wsignin1.0" target="_blank">this link</a>.</p>
<p style="text-align:justify;"><span style="color:#800000;"><strong><span style="color:#993300;">How do I actually post to the last closed year?</span></strong></span>  Here are the steps:</p>
<ol>
<li>
<div style="text-align:left;">Go to <em>Tools &gt; Setup &gt; Company &gt; Fiscal Periods</em> and make sure the period you want to post to is open (unchecked).</div>
</li>
<li>
<div style="text-align:left;">Go to <em>Tools &gt; Setup &gt; Financial &gt; General Ledger</em> and make sure Allow Posting to History is checked.</div>
</li>
<li>
<div style="text-align:left;">Enter and post your transaction.  <span style="color:#800000;"><strong><span style="color:#993300;">Read this before you look at your posting journal:</span></strong></span> the entry will look like it is posted twice.  It&#8217;s showing up on the report twice because it&#8217;s updating last year&#8217;s balances and then updating this year&#8217;s beginning balances.  This is ok.</div>
</li>
<li>
<div style="text-align:left;">Go to <em>Tools &gt; Setup &gt; Financial &gt; General Ledger</em> and uncheck Allow Posting to History.  While it is ok to leave this checked, I recommend disallowing posting to history to avoid mistakes.</div>
</li>
<li>
<div>Go to <em>Tools &gt; Setup &gt; Company &gt; Fiscal Periods</em> and close (check) the period you opened in step 1.  Again, you can leave the period open if you want.</div>
</li>
</ol>
<p style="text-align:justify;"><span style="color:#800000;"><strong><span style="color:#993300;">What if one of my Balance Sheet accounts was set up as a P&amp;L account?</span></strong></span>  If one of your accounts was set up with the wrong Posting Type and you did not catch this before performing the year close, you can use <a title="KB 864913" href="https://mbs.microsoft.com/knowledgebase/KBDisplay.aspx?scid=kb;en-us;864913" target="_blank">KB article 864913</a> to correct the problem.</p>
<p style="text-align:left;">
<h3 style="text-align:center;">Other Common Questions / My 2 Cents</h3>
<p style="text-align:left;"><strong> </strong></p>
<p style="text-align:justify;"><span style="color:#800000;"><strong><span style="color:#993300;">Payables and Receivables &#8211; to close or not to close?</span></strong>  </span>Most companies we work with do not close the Payables and Receivables modules anymore.  Since it is virtually impossible to have a clean cut off between transactions for two years, it really does not add any value to perform the year end close for these modules.</p>
<p style="text-align:justify;"><span style="color:#800000;"><strong><span style="color:#993300;">Backups &#8211; do we really need them?</span></strong></span> <strong> </strong>As far as I am concerned, one of the most important parts of the year end close is making a backup before starting.  I have only actually needed this backup twice, but we were sure glad we had it those two times.</p>
<p style="text-align:justify;"><span style="color:#800000;"><strong><span style="color:#993300;">What is the close procedure for other modules, like Bank Rec or SOP?</span></strong></span>  Most other modules do not have a &#8216;year end close&#8217; process.  The only recommendation for them is to make sure everything for the year being closed is posted prior to closing the year in the modules that do have a year end close process.</p>
<p style="text-align:justify;">
<p><span style="color:#888888;"><em><strong>Updates:</strong></em></span><br />
<span style="color:#888888;"><em>01.08.2009: added link to Doug Pitcher&#8217;s blog post under Other Resources<br />
01.07.2009: added link to Dynamicd GP Land blog under Other Resources<br />
12.24.2008: added links to Mariano Gomez&#8217;s blog posts under Other Resources<br />
11.17.2008: added links to the year end payroll updates under Other Resources<br />
08.04.2010: added link to the GL Year End Open Service from Microsoft</em></span></p>
<br />Posted in Dynamics GP Tagged: Dynamics GP, featured, Fixed Assets, General Ledger, Inventory, Payables, Payroll, Receivables, year end close <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/victoriayudin.wordpress.com/602/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/victoriayudin.wordpress.com/602/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/victoriayudin.wordpress.com/602/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/victoriayudin.wordpress.com/602/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/victoriayudin.wordpress.com/602/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/victoriayudin.wordpress.com/602/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/victoriayudin.wordpress.com/602/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/victoriayudin.wordpress.com/602/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/victoriayudin.wordpress.com/602/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/victoriayudin.wordpress.com/602/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/victoriayudin.wordpress.com/602/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/victoriayudin.wordpress.com/602/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/victoriayudin.wordpress.com/602/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/victoriayudin.wordpress.com/602/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=victoriayudin.com&amp;blog=4884873&amp;post=602&amp;subd=victoriayudin&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://victoriayudin.com/2008/11/14/year-end-close-in-dynamics-gp/feed/</wfw:commentRss>
		<slash:comments>56</slash:comments>
	
		<media:thumbnail url="http://victoriayudin.files.wordpress.com/2011/01/officechairguy.jpg?w=96" />
		<media:content url="http://victoriayudin.files.wordpress.com/2011/01/officechairguy.jpg?w=96" medium="image">
			<media:title type="html">officechairguy</media:title>
		</media:content>

		<media:content url="http://1.gravatar.com/avatar/17a8ce996aec3d35caf943487b6956a5?s=96&#38;d=wavatar" medium="image">
			<media:title type="html">Victoria</media:title>
		</media:content>
	</item>
		<item>
		<title>Dynamics GP Inventory table information</title>
		<link>http://victoriayudin.com/2008/10/23/dynamics-gp-inventory-table-information/</link>
		<comments>http://victoriayudin.com/2008/10/23/dynamics-gp-inventory-table-information/#comments</comments>
		<pubDate>Thu, 23 Oct 2008 11:58:20 +0000</pubDate>
		<dc:creator>Victoria Yudin</dc:creator>
				<category><![CDATA[Dynamics GP]]></category>
		<category><![CDATA[GP Reports code]]></category>
		<category><![CDATA[GP table information]]></category>
		<category><![CDATA[Inventory]]></category>

		<guid isPermaLink="false">http://victoriayudin.wordpress.com/?p=449</guid>
		<description><![CDATA[I&#8217;ve posted up a new page with GP Inventory table information.  You can see the entire list of modules available so far on the main GP Reports page.  That page also has links to additional resources and the GP SQL views I&#8217;ve posted recently.  I&#8217;ve gotten some requests for other modules, so I&#8217;ll work on putting those together next.  Is there [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=victoriayudin.com&amp;blog=4884873&amp;post=449&amp;subd=victoriayudin&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p style="text-align:justify;">I&#8217;ve posted up a new page with <a title="GP Inventory table information" href="http://victoriayudin.com/gp-reports/inventory-tables/" target="_self">GP Inventory table information</a>.  You can see the entire list of modules available so far on the main <a title="GP Reports" href="http://victoriayudin.com/gp-reports/" target="_self">GP Reports</a> page.  That page also has links to additional resources and the <a title="GP SQL Views" href="http://victoriayudin.com/tag/gp-sql-view/" target="_self">GP SQL views</a> I&#8217;ve posted recently.  I&#8217;ve gotten some requests for other modules, so I&#8217;ll work on putting those together next.  Is there anything you&#8217;d like to see?  <a title="e-mail Victoria Yudin" href="mailto:victoria@flex-solutions.com" target="_blank">Let me know</a>.</p>
<br />Posted in Dynamics GP Tagged: GP Reports code, GP table information, Inventory <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/victoriayudin.wordpress.com/449/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/victoriayudin.wordpress.com/449/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/victoriayudin.wordpress.com/449/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/victoriayudin.wordpress.com/449/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/victoriayudin.wordpress.com/449/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/victoriayudin.wordpress.com/449/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/victoriayudin.wordpress.com/449/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/victoriayudin.wordpress.com/449/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/victoriayudin.wordpress.com/449/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/victoriayudin.wordpress.com/449/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/victoriayudin.wordpress.com/449/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/victoriayudin.wordpress.com/449/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/victoriayudin.wordpress.com/449/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/victoriayudin.wordpress.com/449/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=victoriayudin.com&amp;blog=4884873&amp;post=449&amp;subd=victoriayudin&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://victoriayudin.com/2008/10/23/dynamics-gp-inventory-table-information/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/17a8ce996aec3d35caf943487b6956a5?s=96&#38;d=wavatar" medium="image">
			<media:title type="html">Victoria</media:title>
		</media:content>
	</item>
	</channel>
</rss>
