<?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; General Ledger</title>
	<atom:link href="http://victoriayudin.com/tag/general-ledger/feed/" rel="self" type="application/rss+xml" />
	<link>http://victoriayudin.com</link>
	<description>Ramblings and musings of a Dynamics GP MVP</description>
	<lastBuildDate>Sat, 19 May 2012 09:34:03 +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; General Ledger</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>SQL view for all GL transactions in Dynamics GP</title>
		<link>http://victoriayudin.com/2011/04/27/sql-view-for-all-gl-transactions-in-dynamics-gp/</link>
		<comments>http://victoriayudin.com/2011/04/27/sql-view-for-all-gl-transactions-in-dynamics-gp/#comments</comments>
		<pubDate>Wed, 27 Apr 2011 18:33:13 +0000</pubDate>
		<dc:creator>Victoria Yudin</dc:creator>
				<category><![CDATA[Dynamics GP]]></category>
		<category><![CDATA[GL SQL code]]></category>
		<category><![CDATA[GP Reports code]]></category>
		<category><![CDATA[GP SQL scripts]]></category>
		<category><![CDATA[General Ledger]]></category>
		<category><![CDATA[SQL code]]></category>

		<guid isPermaLink="false">http://victoriayudin.com/?p=3595</guid>
		<description><![CDATA[I have been asked a few times now to add unposted General Ledger transactions to my Posted GL Transactions view. Here it is. This view also excludes voided transactions and introduces new columns for transaction status and source doc. To see more information about GL tables in Dynamics GP, visit my GL Tables page. For more Dynamics [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=victoriayudin.com&#038;blog=4884873&#038;post=3595&#038;subd=victoriayudin&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p style="text-align:justify;">I have been asked a few times now to add unposted General Ledger transactions to my <a title="SQL view for all posted GL transactions in Dynamics GP" href="http://victoriayudin.com/2009/08/11/sql-view-for-all-posted-gl-transactions-in-dynamics-gp/">Posted GL Transactions view</a>. Here it is. This view also excludes voided transactions and introduces new columns for transaction status and source doc.</p>
<p style="text-align:justify;">To see more information about GL tables in Dynamics GP, visit my <a title="GL Tables" href="http://victoriayudin.com/gp-tables/gl-tables/">GL Tables page</a>. For more Dynamics GP SQL code, take a look at my <a title="GP Reports" href="http://victoriayudin.com/gp-reports/">GP Reports page</a>.</p>
<p style="text-align:center;"><span style="color:#888888;">~~~~~</span></p>
<p><code>CREATE VIEW view_GL_Trx<br />
AS</code></p>
<p><code><span style="color:#888888;"><br />
/******************************************************************<br />
view_GL_Trx<br />
Created Apr 27, 2011 by Victoria Yudin - Flexible Solutions, Inc.<br />
For updates see http://victoriayudin.com/gp-reports/<br />
- Returns all lines for all GL transactions<br />
- Excludes year-end closing entries<br />
- Excludes voided transactions<br />
- Returns Functional amounts only </span></code></p>
<p><span style="color:#888888;"><code>Tables used: GL10000<br />
- Work Trx header GL10001<br />
- Work Trx detail GL20000<br />
- Open Year Trx GL30000<br />
- Historical Trx GL00100<br />
- Account Master GL00105<br />
- Account Index Master<br />
******************************************************************/</code></span></p>
<p><code>SELECT<br />
Trx_Status,<br />
TRXDATE Trx_Date,<br />
JRNENTRY Journal_Entry,<br />
ACTNUMST Account_Number,<br />
ACTDESCR Account_Description,<br />
DEBITAMT Debit_Amount,<br />
CRDTAMNT Credit_Amount,<br />
REFRENCE Reference,<br />
SOURCDOC Source_Document,<br />
ORTRXSRC Originating_TRX_Source,<br />
ORMSTRID Originating_Master_ID,<br />
ORMSTRNM Originating_Master_Name,<br />
ORDOCNUM Originating_Doc_Number,<br />
CURNCYID Currency_ID</code></p>
<p><code>FROM<br />
(SELECT ACTINDX, TRXDATE, SOURCDOC, JRNENTRY, ORTRXSRC, REFRENCE,<br />
     ORDOCNUM, ORMSTRID, ORMSTRNM, DEBITAMT, CRDTAMNT, CURNCYID,<br />
     Trx_Status = 'Open'<br />
FROM GL20000<br />
     WHERE SOURCDOC not in ('BBF','P/L')<br />
     AND VOIDED = 0</code></p>
<p><code>UNION ALL</code></p>
<p><code>SELECT ACTINDX, TRXDATE, SOURCDOC, JRNENTRY, ORTRXSRC, REFRENCE,<br />
     ORDOCNUM, ORMSTRID, ORMSTRNM, DEBITAMT, CRDTAMNT, CURNCYID,<br />
     Trx_Status = 'History'<br />
FROM GL30000<br />
     WHERE SOURCDOC not in ('BBF','P/L')<br />
     AND VOIDED = 0</code></p>
<p><code>UNION ALL</code></p>
<p><code>SELECT GD.ACTINDX, GH.TRXDATE, GH.SOURCDOC, GH.JRNENTRY, GH.ORTRXSRC,<br />
     GH.REFRENCE, GD.ORDOCNUM, GD.ORMSTRID, GD.ORMSTRNM, GD.DEBITAMT,<br />
     GD.CRDTAMNT, GH.CURNCYID, Trx_Status = 'Work'<br />
FROM GL10000 GH<br />
   INNER JOIN GL10001 GD<br />
   ON GH.JRNENTRY = GD.JRNENTRY<br />
     WHERE VOIDED = 0) GL</code></p>
<p><code>INNER JOIN GL00105 GM<br />
ON GL.ACTINDX = GM.ACTINDX</code></p>
<p><code>INNER JOIN GL00100 GA<br />
ON GL.ACTINDX = GA.ACTINDX</code></p>
<p><code><span style="color:#339966;">/** the following will grant permissions to this view to DYNGRP,<br />
leave this section off if you do not want to grant permissions **/ </span><br />
GO<br />
GRANT SELECT ON view_GL_Trx TO DYNGRP</code></p>
<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/gl-sql-code/'>GL SQL code</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> Tagged: <a href='http://victoriayudin.com/tag/general-ledger/'>General Ledger</a>, <a href='http://victoriayudin.com/tag/gp-reports-code/'>GP Reports code</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/3595/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/victoriayudin.wordpress.com/3595/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/victoriayudin.wordpress.com/3595/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/victoriayudin.wordpress.com/3595/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/victoriayudin.wordpress.com/3595/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/victoriayudin.wordpress.com/3595/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/victoriayudin.wordpress.com/3595/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/victoriayudin.wordpress.com/3595/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/victoriayudin.wordpress.com/3595/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/victoriayudin.wordpress.com/3595/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/victoriayudin.wordpress.com/3595/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/victoriayudin.wordpress.com/3595/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/victoriayudin.wordpress.com/3595/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/victoriayudin.wordpress.com/3595/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=victoriayudin.com&#038;blog=4884873&#038;post=3595&#038;subd=victoriayudin&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://victoriayudin.com/2011/04/27/sql-view-for-all-gl-transactions-in-dynamics-gp/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
	
		<media:thumbnail url="http://victoriayudin.files.wordpress.com/2011/04/abc.jpg?w=96" />
		<media:content url="http://victoriayudin.files.wordpress.com/2011/04/abc.jpg?w=96" medium="image">
			<media:title type="html">abc</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 Payables invoices originating from POP in Dynamics GP</title>
		<link>http://victoriayudin.com/2010/09/01/sql-view-for-payables-invoices-originating-from-pop-in-dynamics-gp/</link>
		<comments>http://victoriayudin.com/2010/09/01/sql-view-for-payables-invoices-originating-from-pop-in-dynamics-gp/#comments</comments>
		<pubDate>Wed, 01 Sep 2010 08:22:13 +0000</pubDate>
		<dc:creator>Victoria Yudin</dc:creator>
				<category><![CDATA[Dynamics GP]]></category>
		<category><![CDATA[GL SQL code]]></category>
		<category><![CDATA[GP Reports code]]></category>
		<category><![CDATA[GP SQL scripts]]></category>
		<category><![CDATA[Payables SQL code]]></category>
		<category><![CDATA[POP SQL code]]></category>
		<category><![CDATA[General Ledger]]></category>
		<category><![CDATA[GP SQL view]]></category>
		<category><![CDATA[Payables]]></category>
		<category><![CDATA[Purchase Order Processing]]></category>
		<category><![CDATA[SQL code]]></category>

		<guid isPermaLink="false">http://victoriayudin.com/?p=2931</guid>
		<description><![CDATA[This Dynamics GP SQL view originated from a request on the Dynamics GP customer forum, but is also something that I can see being useful in a variety of situations. It returns all posted Payables invoices that came from the Purchase Order Processing module with details of the items that were received on each invoice as well [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=victoriayudin.com&#038;blog=4884873&#038;post=2931&#038;subd=victoriayudin&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p style="text-align:justify;">This Dynamics GP SQL view originated from a request on the <a title="Dynamics GP Customer Forum" href="https://community.dynamics.com/forums/32.aspx" target="_blank">Dynamics GP customer forum</a>, but is also something that I can see being useful in a variety of situations. It returns all posted Payables invoices that came from the Purchase Order Processing module with details of the items that were received on each invoice as well as the GL journal entry number for each POP reciept and invoice. </p>
<p style="text-align:center;"><span style="color:#888888;">~~~~~</span></p>
<pre>CREATE VIEW view_Payables_POP_Invoices
AS
<span style="color:#888888;">/*******************************************************************
view_Payables_POP_Invoices
Created on Sep 1, 2010 by Victoria Yudin - Flexible Solutions, Inc.
For updates visit http://victoriayudin.com/gp-reports/
Returns Payables Invoices only</span><span style="color:#888888;">
Updated on Feb 10, 2011 to include GL journal entry number
*******************************************************************/</span>

SELECT	PM.VCHRNMBR Voucher_Number,
	PM.VENDORID Vendor_ID,
	POP.VENDNAME Vendor_Name,
	PM.DOCDATE Invoice_Date,
	PM.DUEDATE Due_Date,
	PM.DOCNUMBR Invoice_Number,
	PM.DOCAMNT Invoice_Amount,
	PM.CURTRXAM Unpaid_Amount,
	CASE PM.VOIDED
		WHEN 0 THEN 'No'
		WHEN 1 THEN 'Yes'
		END Voided,
	POP.POPRCTNM POP_Receipt_Number,
	CASE POP.POPTYPE
		WHEN 2 THEN 'Invoice'
		WHEN 3 THEN 'Shipment/Invoice'
		END Receipt_Type,
	POP.receiptdate Receipt_Date,
	I.RCPTLNNM Receipt_Line_Num,
	I.PONUMBER PO_Number,
	I.ITEMNMBR Item_Number,
	I.ITEMDESC Item_Description,
	R.QTYINVCD Quantity_Invoiced,
	R.UOFM U_of_M,
	I.UNITCOST Unit_Cost,
	I.EXTDCOST Extended_Cost,
	I.LOCNCODE Site_ID,
	CASE I.NONINVEN
		WHEN 0 THEN 'Inventory Item'
		WHEN 1 THEN 'Non-Inventory Item'
		END Item_Type,
	G.JRNENTRY Journal_Entry_Number

FROM
	(SELECT VCHRNMBR,VENDORID, DOCDATE,
		DUEDATE, DOCNUMBR, DOCAMNT,
		CURTRXAM, DOCTYPE, VOIDED
	 FROM PM20000
	 UNION ALL
	 SELECT VCHRNMBR,VENDORID, DOCDATE,
		DUEDATE, DOCNUMBR, DOCAMNT,
		CURTRXAM, DOCTYPE, VOIDED
	 FROM PM30200) PM  <span style="color:#339966;">-- PM trx</span>

INNER JOIN POP30300 POP  <span style="color:#339966;">-- POP header</span>
	ON PM.VENDORID = POP.VENDORID
	AND PM.DOCNUMBR = POP.VNDDOCNM

INNER JOIN POP30310 I  <span style="color:#339966;">-- POP detail</span>
	ON I.POPRCTNM = POP.POPRCTNM

INNER JOIN POP10500 R  <span style="color:#339966;">-- recceipt details</span>
	ON R.POPRCTNM = I.POPRCTNM
	AND R.RCPTLNNM = I.RCPTLNNM

LEFT OUTER JOIN
	(SELECT DISTINCT SOURCDOC, JRNENTRY, ORDOCNUM, ORMSTRID
	 FROM GL20000
	   UNION
	 SELECT DISTINCT SOURCDOC, JRNENTRY, ORDOCNUM, ORMSTRID
 	 FROM GL30000
	   UNION
	 SELECT DISTINCT SOURCDOC, a.JRNENTRY, ORDOCNUM, ORMSTRID
	 FROM GL10001 a
	   INNER JOIN GL10000 b
	   ON a.JRNENTRY = b.JRNENTRY) G  <span style="color:#339966;">--GL entries</span>
	ON G.ORDOCNUM = R.POPRCTNM
	AND G.ORMSTRID = R.VENDORID
	AND G.SOURCDOC in ('POIVC','RECVG')

WHERE PM.DOCTYPE = 1  <span style="color:#339966;">-- invoices only</span>
AND POP.POPTYPE in (2,3)  <span style="color:#339966;">-- invoices only</span>

<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_Payables_POP_Invoices TO DYNGRP
</span></pre>
<p style="text-align:center;"><span style="color:#888888;">~~~~~</span></p>
<p>For more Dynamics GP SQL scripts take a look at the <a title="Victoria Yudin's GP Reports" href="http://victoriayudin.com/gp-reports/" target="_blank">GP Reports page</a> on 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/gl-sql-code/'>GL SQL code</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/payables-sql-code/'>Payables SQL code</a>, <a href='http://victoriayudin.com/category/gp-reports-code/pop-sql-code/'>POP SQL code</a> Tagged: <a href='http://victoriayudin.com/tag/general-ledger/'>General Ledger</a>, <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/payables/'>Payables</a>, <a href='http://victoriayudin.com/tag/purchase-order-processing/'>Purchase Order Processing</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/2931/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/victoriayudin.wordpress.com/2931/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/victoriayudin.wordpress.com/2931/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/victoriayudin.wordpress.com/2931/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/victoriayudin.wordpress.com/2931/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/victoriayudin.wordpress.com/2931/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/victoriayudin.wordpress.com/2931/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/victoriayudin.wordpress.com/2931/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/victoriayudin.wordpress.com/2931/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/victoriayudin.wordpress.com/2931/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/victoriayudin.wordpress.com/2931/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/victoriayudin.wordpress.com/2931/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/victoriayudin.wordpress.com/2931/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/victoriayudin.wordpress.com/2931/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=victoriayudin.com&#038;blog=4884873&#038;post=2931&#038;subd=victoriayudin&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://victoriayudin.com/2010/09/01/sql-view-for-payables-invoices-originating-from-pop-in-dynamics-gp/feed/</wfw:commentRss>
		<slash:comments>27</slash:comments>
	
		<media:thumbnail url="http://victoriayudin.files.wordpress.com/2010/09/shoppingcart-e1283329105252.jpg?w=111" />
		<media:content url="http://victoriayudin.files.wordpress.com/2010/09/shoppingcart-e1283329105252.jpg?w=111" medium="image">
			<media:title type="html">empty cart</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>Updates to SQL view to show all GL distributions for AP transactions</title>
		<link>http://victoriayudin.com/2010/06/25/updates-to-sql-view-to-show-all-gl-distributions-for-ap-transactions/</link>
		<comments>http://victoriayudin.com/2010/06/25/updates-to-sql-view-to-show-all-gl-distributions-for-ap-transactions/#comments</comments>
		<pubDate>Fri, 25 Jun 2010 14:57:16 +0000</pubDate>
		<dc:creator>Victoria Yudin</dc:creator>
				<category><![CDATA[Dynamics GP]]></category>
		<category><![CDATA[GL SQL code]]></category>
		<category><![CDATA[GP Reports code]]></category>
		<category><![CDATA[GP SQL scripts]]></category>
		<category><![CDATA[Payables SQL code]]></category>
		<category><![CDATA[General Ledger]]></category>
		<category><![CDATA[GP SQL view]]></category>
		<category><![CDATA[Payables]]></category>
		<category><![CDATA[SQL code]]></category>

		<guid isPermaLink="false">http://victoriayudin.com/?p=2745</guid>
		<description><![CDATA[I have made a number of updates to my SQL view to show all GL distributions for AP transactions since I first published it. Some of these were in response to comments asking for additional fields, others were added when I came across new data to test with. Rather than publish another post with the latest revisions, I have updated the [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=victoriayudin.com&#038;blog=4884873&#038;post=2745&#038;subd=victoriayudin&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p style="text-align:justify;">I have made a number of updates to my <a title="SQL view to show all GL distributions for AP transactions" href="http://victoriayudin.com/2008/11/28/sql-view-to-show-all-gl-distributions-for-ap-transactions/" target="_blank">SQL view to show all GL distributions for AP transactions</a> since I first published it. Some of these were in response to comments asking for additional fields, others were added when I came across new data to test with. Rather than publish another post with the latest revisions, I have updated the code in <a title="SQL view to show all GL distributions for AP transactions" href="http://victoriayudin.com/2008/11/28/sql-view-to-show-all-gl-distributions-for-ap-transactions/" target="_blank">my original blog post</a>, but I wanted to let everyone know it&#8217;s there. Some of the updates are:</p>
<ul type="square">
<li style="text-align:justify;padding-bottom:5px;">Added Due To and Due From distribution types for anyone using Intercompany transactions.</li>
<li style="text-align:justify;padding-bottom:5px;">Added Realized Gain and Realized Loss distribution types for Multicurrency transactions.</li>
<li style="text-align:justify;padding-bottom:5px;">Added Currency ID, Exchange Rate and Originating Debit/Credit fields.</li>
<li style="text-align:justify;padding-bottom:5px;">Added Distribution Reference, Batch ID and Transaction Description fields.</li>
<li style="text-align:justify;padding-bottom:5px;">Added Voucher Number.</li>
</ul>
<p>As always, if you find any issues or would like any additional updates, please let me know.</p>
<p style="text-align:justify;">There are also enough Payables SQL scripts that I have moved them to <a title="Dynamics GP Payables SQL views" href="http://victoriayudin.com/gp-reports/payables-sql-views/" target="_blank">their own page</a>. The page can also be accessed from the main navigation menu on this blog under GP Reports and on my <a title="Dynamics GP Reports" href="http://victoriayudin.com/gp-reports/" target="_blank">GP Reports page</a>.</p>
<br />Filed under: <a href='http://victoriayudin.com/category/dynamics-gp/'>Dynamics GP</a>, <a href='http://victoriayudin.com/category/gp-reports-code/gl-sql-code/'>GL SQL code</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/payables-sql-code/'>Payables SQL code</a> Tagged: <a href='http://victoriayudin.com/tag/general-ledger/'>General Ledger</a>, <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/payables/'>Payables</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/2745/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/victoriayudin.wordpress.com/2745/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/victoriayudin.wordpress.com/2745/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/victoriayudin.wordpress.com/2745/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/victoriayudin.wordpress.com/2745/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/victoriayudin.wordpress.com/2745/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/victoriayudin.wordpress.com/2745/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/victoriayudin.wordpress.com/2745/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/victoriayudin.wordpress.com/2745/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/victoriayudin.wordpress.com/2745/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/victoriayudin.wordpress.com/2745/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/victoriayudin.wordpress.com/2745/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/victoriayudin.wordpress.com/2745/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/victoriayudin.wordpress.com/2745/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=victoriayudin.com&#038;blog=4884873&#038;post=2745&#038;subd=victoriayudin&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://victoriayudin.com/2010/06/25/updates-to-sql-view-to-show-all-gl-distributions-for-ap-transactions/feed/</wfw:commentRss>
		<slash:comments>8</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 with all GL distributions for AR transactions</title>
		<link>http://victoriayudin.com/2010/02/10/sql-view-with-all-gl-distributions-for-ar-transactions/</link>
		<comments>http://victoriayudin.com/2010/02/10/sql-view-with-all-gl-distributions-for-ar-transactions/#comments</comments>
		<pubDate>Wed, 10 Feb 2010 11:24:50 +0000</pubDate>
		<dc:creator>Victoria Yudin</dc:creator>
				<category><![CDATA[Dynamics GP]]></category>
		<category><![CDATA[GL SQL code]]></category>
		<category><![CDATA[GP Reports code]]></category>
		<category><![CDATA[GP SQL scripts]]></category>
		<category><![CDATA[Receivables SQL code]]></category>
		<category><![CDATA[General Ledger]]></category>
		<category><![CDATA[GP SQL view]]></category>
		<category><![CDATA[Receivables]]></category>
		<category><![CDATA[SQL code]]></category>

		<guid isPermaLink="false">http://victoriayudin.com/?p=2204</guid>
		<description><![CDATA[As a corollary to my SQL view with all posted Receivables transactions, below is a view that will add all the General Ledger distributions to the AR transactions. I made a few changes to the original AR transactions view, primarily to remove some columns that are typically not needed and add underscores to the column names so [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=victoriayudin.com&#038;blog=4884873&#038;post=2204&#038;subd=victoriayudin&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p style="text-align:justify;">As a corollary to my <a title="SQL view with all posted Receivables transactions" href="http://victoriayudin.com/2009/04/24/sql-view-with-all-posted-receivables-transactions/" target="_blank">SQL view with all posted Receivables transactions</a>, below is a view that will add all the General Ledger distributions to the AR transactions. I made a few changes to the original AR transactions view, primarily to remove some columns that are typically not needed and add underscores to the column names so that this can be used with SmartList Builder without having to change column names.</p>
<p style="text-align:justify;">For more views like this, check out my <a title="GP Reports" href="http://victoriayudin.com/gp-reports/" target="_blank">GP Reports</a> page.</p>
<p style="text-align:justify;">For help with using this in SmartList Builder, take a look at my post on <a title="Permanent Link to How to use a SQL view in SmartList Builder" rel="bookmark" href="http://victoriayudin.com/2009/04/20/how-to-use-a-sql-view-in-smartlist-builder/">How to use a SQL view in SmartList Builder</a>.</p>
<p style="text-align:center;"><span style="color:#c0c0c0;">~~~~~</span></p>
<pre>CREATE VIEW view_RM_Trx_Distributions
AS

<span style="color:#888888;">/*******************************************************************
view_RM_Trx_Distributions
Created on Feb 10, 2010 by Victoria Yudin - Flexible Solutions, Inc.
For updates see http://victoriayudin.com/gp-reports/
Returns all posted (open and history) Receivables transactions
with their GL distributions. All amounts are functional.
Tables used:
RO: RM20101 - Open Transactions
RH: RM30101 – Historical Transactions
DO: RM10101 - Work and Open Distributions
DH: RM30301 - Historical Distributions
G: GL00105 - Account Index Master
*******************************************************************/
</span>
SELECT RO.CUSTNMBR Customer_ID,
       RO.CPRCSTNM Parent_Customer,
       RO.RMDTYPAL Doc_Type_Number,
       CASE RO.RMDTYPAL
         WHEN 0 THEN 'Reserved'
         WHEN 1 THEN 'Invoice'
         WHEN 2 THEN 'Scheduled Pmt'
         WHEN 3 THEN 'Debit Memo'
         WHEN 4 THEN 'Finance Charge'
         WHEN 5 THEN 'Service Repair'
         WHEN 6 THEN 'Warranty'
         WHEN 7 THEN 'Credit Memo'
         WHEN 8 THEN 'Return'
         WHEN 9 THEN 'Payment'
         ELSE ''
         END Document_Type,
       RO.DOCNUMBR Document_Number,
       RO.CHEKNMBR Check_Number,
       RO.BACHNUMB Batch_ID,
       RO.BCHSOURC Batch_Source,
       RO.TRXSORCE Trx_Source,
       CASE RO.CSHRCTYP
         WHEN 0 THEN 'Check'
         WHEN 1 THEN 'Cash'
         WHEN 2 THEN 'Credit Card'
         ELSE ''
         END Cash_Receipt_Type,
       RO.DUEDATE Due_Date,
       RO.DOCDATE Document_Date,
       RO.POSTDATE Posted_Date,
       RO.PSTUSRID Post_User_ID,
       RO.GLPOSTDT GL_Posting_Date,
       RO.LSTEDTDT Last_Edit_Date,
       RO.LSTUSRED Last_User_To_Edit,
       RO.ORTRXAMT Original_Trx_Amount,
       RO.CURTRXAM Current_Trx_Amount,
       RO.SLSAMNT Sales_Amount,
       RO.COSTAMNT Cost_Amount,
       RO.FRTAMNT Freight_Amount,
       RO.MISCAMNT Misc_Amount,
       RO.TAXAMNT Tax_Amount,
       RO.COMDLRAM Commission_Amount,
       RO.CASHAMNT Cash_Amount,
       RO.DISTKNAM Discount_Taken_Amount,
       RO.DISAVAMT Discount_Avail_Amount,
       RO.DISCRTND Discount_Returned,
       RO.DISCDATE Discount_Date,
       RO.DSCDLRAM Discount_Dollar_Amount,
       RO.DSCPCTAM Discount_Percent_Amount,
       RO.WROFAMNT Write_Off_Amount,
       RO.TRXDSCRN Trx_Description,
       RO.CSPORNBR Customer_PO,
       RO.SLPRSNID Salesperson_ID,
       RO.SLSTERCD Sales_Territory,
       RO.DINVPDOF Date_Inv_Paid_Off,
       RO.PPSAMDED PPS_Amount_Deducted,
       RO.GSTDSAMT GST_Discount_Amount,
       CASE RO.VOIDSTTS
         WHEN 0 THEN 'Not Voided'
         WHEN 1 THEN 'Voided'
         WHEN 2 THEN 'NSF check'
         WHEN 3 THEN 'Waived finance charge'
         ELSE ''
         END VoidS_tatus,
       RO.VOIDDATE Void_Date,
       RO.TAXSCHID Tax_Schedule_ID,
       RO.CURNCYID Currency_ID,
       RO.PYMTRMID Payment_Terms_ID,
       RO.SHIPMTHD Shipping_Method,
       RO.TRDISAMT Trade_Discount_Amount,
       RO.NOTEINDX Note_Index,
       RO.Tax_Date Tax_Date,
       coalesce(G.ACTNUMST,'') Account_Number,
       CASE DO.DISTTYPE
         WHEN 1 THEN 'Cash'
         WHEN 2 THEN 'Terms Taken'
         WHEN 3 THEN 'Accounts Receivable'
         WHEN 4 THEN 'Writeoffs'
         WHEN 5 THEN 'Terms Available'
         WHEN 6 THEN 'GST'
         WHEN 7 THEN 'PPS'
         WHEN 8 THEN 'Other'
         WHEN 9 THEN 'Sales'
         WHEN 10 THEN 'Trade'
         WHEN 11 THEN 'Frieght'
         WHEN 12 THEN 'Miscellaneous'
         WHEN 13 THEN 'Taxes'
         WHEN 14 THEN 'COGS'
         WHEN 15 THEN 'Inventory'
         WHEN 16 THEN 'Finance Charges'
         WHEN 17 THEN 'Returns'
         WHEN 18 THEN 'Debit Memo'
         WHEN 19 THEN 'Credit Memo'
         WHEN 20 THEN 'Service'
         WHEN 21 THEN 'Warranty Expense'
         WHEN 22 THEN 'Warranty Sales'
         WHEN 23 THEN 'Commissions Expense'
         WHEN 24 THEN 'Commissions Payable'
         WHEN 25 THEN 'Unit Account'
         WHEN 26 THEN 'Rounding'
         WHEN 27 THEN 'Realized Gain'
         WHEN 28 THEN 'Realized Loss'
         WHEN 29 THEN 'Unrealized Gain'
         WHEN 30 THEN 'Unrealized Loss'
         ELSE ''
         END 'Distribution_Type',
       coalesce(DO.DEBITAMT,0) Debit_Amount,
       coalesce(DO.CRDTAMNT,0) Credit_Amount,
       coalesce(DO.DistRef,'') Distribution_Reference

FROM RM20101 RO
    LEFT OUTER JOIN
       RM10101 DO
       ON RO.RMDTYPAL = DO.RMDTYPAL
       AND RO.DOCNUMBR = DO.DOCNUMBR
    LEFT OUTER JOIN
       GL00105 G
       ON DO.DSTINDX = G.ACTINDX

UNION ALL

SELECT RH.CUSTNMBR Customer_ID,
       RH.CPRCSTNM Parent_Customer,
       RH.RMDTYPAL Doc_Type_Number,
       CASE RH.RMDTYPAL
         WHEN 0 THEN 'Reserved'
         WHEN 1 THEN 'Invoice'
         WHEN 2 THEN 'Scheduled Pmt'
         WHEN 3 THEN 'Debit Memo'
         WHEN 4 THEN 'Finance Charge'
         WHEN 5 THEN 'Service Repair'
         WHEN 6 THEN 'Warranty'
         WHEN 7 THEN 'Credit Memo'
         WHEN 8 THEN 'Return'
         WHEN 9 THEN 'Payment'
         ELSE ''
         END Document_Type,
       RH.DOCNUMBR Document_Number,
       RH.CHEKNMBR Check_Number,
       RH.BACHNUMB Batch_ID,
       RH.BCHSOURC Batch_Source,
       RH.TRXSORCE Trx_Source,
       CASE RH.CSHRCTYP
         WHEN 0 THEN 'Check'
         WHEN 1 THEN 'Cash'
         WHEN 2 THEN 'Credit Card'
         ELSE ''
         END Cash_Receipt_Type,
       RH.DUEDATE Due_Date,
       RH.DOCDATE Document_Date,
       RH.POSTDATE Posted_Date,
       RH.PSTUSRID Post_User_ID,
       RH.GLPOSTDT GL_Posting_Date,
       RH.LSTEDTDT Last_Edit_Date,
       RH.LSTUSRED Last_User_To_Edit,
       RH.ORTRXAMT Original_Trx_Amount,
       RH.CURTRXAM Current_Trx_Amount,
       RH.SLSAMNT Sales_Amount,
       RH.COSTAMNT Cost_Amount,
       RH.FRTAMNT Freight_Amount,
       RH.MISCAMNT Misc_Amount,
       RH.TAXAMNT Tax_Amount,
       RH.COMDLRAM Commission_Amount,
       RH.CASHAMNT Cash_Amount,
       RH.DISTKNAM Discount_Taken_Amount,
       RH.DISAVAMT Discount_Avail_Amount,
       RH.DISCRTND Discount_Returned,
       RH.DISCDATE Discount_Date,
       RH.DSCDLRAM Discount_Dollar_Amount,
       RH.DSCPCTAM Discount_Percent_Amount,
       RH.WROFAMNT Write_Off_Amount,
       RH.TRXDSCRN Trx_Description,
       RH.CSPORNBR Customer_PO,
       RH.SLPRSNID Salesperson_ID,
       RH.SLSTERCD Sales_Territory,
       RH.DINVPDOF Date_Inv_Paid_Off,
       RH.PPSAMDED PPS_Amount_Deducted,
       RH.GSTDSAMT GST_Discount_Amount,
       CASE RH.VOIDSTTS
         WHEN 0 THEN 'Not Voided'
         WHEN 1 THEN 'Voided'
         WHEN 2 THEN 'NSF check'
         WHEN 3 THEN 'Waived finance charge'
         ELSE ''
         END Void_Status,
       RH.VOIDDATE Void_Date,
       RH.TAXSCHID Tax_Schedule_ID,
       RH.CURNCYID Currency_ID,
       RH.PYMTRMID Payment_Terms_ID,
       RH.SHIPMTHD Shipping_Method,
       RH.TRDISAMT Trade_Discount_Amount,
       RH.NOTEINDX Note_Index,
       RH.Tax_Date Tax_Date,
       coalesce(G.ACTNUMST,'') Account_Number,
       CASE DH.DISTTYPE
         WHEN 1 THEN 'Cash'
         WHEN 2 THEN 'Terms Taken'
         WHEN 3 THEN 'Accounts Receivable'
         WHEN 4 THEN 'Writeoffs'
         WHEN 5 THEN 'Terms Available'
         WHEN 6 THEN 'GST'
         WHEN 7 THEN 'PPS'
         WHEN 8 THEN 'Other'
         WHEN 9 THEN 'Sales'
         WHEN 10 THEN 'Trade'
         WHEN 11 THEN 'Frieght'
         WHEN 12 THEN 'Miscellaneous'
         WHEN 13 THEN 'Taxes'
         WHEN 14 THEN 'COGS'
         WHEN 15 THEN 'Inventory'
         WHEN 16 THEN 'Finance Charges'
         WHEN 17 THEN 'Returns'
         WHEN 18 THEN 'Debit Memo'
         WHEN 19 THEN 'Credit Memo'
         WHEN 20 THEN 'Service'
         WHEN 21 THEN 'Warranty Expense'
         WHEN 22 THEN 'Warranty Sales'
         WHEN 23 THEN 'Commissions Expense'
         WHEN 24 THEN 'Commissions Payable'
         WHEN 25 THEN 'Unit Account'
         WHEN 26 THEN 'Rounding'
         WHEN 27 THEN 'Realized Gain'
         WHEN 28 THEN 'Realized Loss'
         WHEN 29 THEN 'Unrealized Gain'
         WHEN 30 THEN 'Unrealized Loss'
         ELSE ''
         END 'Distribution_Type',
       coalesce(DH.DEBITAMT,0) Debit_Amount,
       coalesce(DH.CRDTAMNT,0) Credit_Amount,
       coalesce(DH.DistRef,'') Distribution_Reference

FROM RM30101 RH
    LEFT OUTER JOIN
       RM30301 DH
       ON RH.RMDTYPAL = DH.RMDTYPAL
       AND RH.DOCNUMBR = DH.DOCNUMBR
    LEFT OUTER JOIN
       GL00105 G
       ON DH.DSTINDX = G.ACTINDX

<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 **/
</span>GO
GRANT SELECT ON view_RM_Trx_Distributions TO DYNGRP</pre>
<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 />Filed under: <a href='http://victoriayudin.com/category/dynamics-gp/'>Dynamics GP</a>, <a href='http://victoriayudin.com/category/gp-reports-code/gl-sql-code/'>GL SQL code</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/receivables-sql-code/'>Receivables SQL code</a> Tagged: <a href='http://victoriayudin.com/tag/general-ledger/'>General Ledger</a>, <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/receivables/'>Receivables</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/2204/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/victoriayudin.wordpress.com/2204/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/victoriayudin.wordpress.com/2204/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/victoriayudin.wordpress.com/2204/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/victoriayudin.wordpress.com/2204/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/victoriayudin.wordpress.com/2204/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/victoriayudin.wordpress.com/2204/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/victoriayudin.wordpress.com/2204/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/victoriayudin.wordpress.com/2204/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/victoriayudin.wordpress.com/2204/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/victoriayudin.wordpress.com/2204/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/victoriayudin.wordpress.com/2204/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/victoriayudin.wordpress.com/2204/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/victoriayudin.wordpress.com/2204/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=victoriayudin.com&#038;blog=4884873&#038;post=2204&#038;subd=victoriayudin&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://victoriayudin.com/2010/02/10/sql-view-with-all-gl-distributions-for-ar-transactions/feed/</wfw:commentRss>
		<slash:comments>16</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>What’s with all these dates?</title>
		<link>http://victoriayudin.com/2009/09/08/whats-with-all-these-dates/</link>
		<comments>http://victoriayudin.com/2009/09/08/whats-with-all-these-dates/#comments</comments>
		<pubDate>Tue, 08 Sep 2009 12:59:20 +0000</pubDate>
		<dc:creator>Victoria Yudin</dc:creator>
				<category><![CDATA[Dynamics GP]]></category>
		<category><![CDATA[Bank Reconciliation]]></category>
		<category><![CDATA[General Ledger]]></category>
		<category><![CDATA[Payables]]></category>
		<category><![CDATA[Purchase Order Processing]]></category>
		<category><![CDATA[Receivables]]></category>
		<category><![CDATA[Sales Order Processing]]></category>

		<guid isPermaLink="false">http://victoriayudin.com/?p=1935</guid>
		<description><![CDATA[There are many different dates stored in Dynamics GP. This is typically a good thing, my philosophy is that it is always better to have more data than you need and not the other way around. However, it can get confusing rather quickly since a lot of the labels for the dates sound very similar. I will attempt [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=victoriayudin.com&#038;blog=4884873&#038;post=1935&#038;subd=victoriayudin&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p style="text-align:justify;">There are many different dates stored in Dynamics GP. This is typically a good thing, my philosophy is that it is always better to have more data than you need and not the other way around. However, it can get confusing rather quickly since a lot of the labels for the dates sound very similar. I will attempt to shed some light on the more common dates in a &#8216;generic&#8217; way, so that it can be applied to just about any module in GP, although the primary modules I am looking at are: Payables, Receivables, Sales Order Processing (SOP), Bank Reconciliation, Purchase Order Processing (POP) and General Ledger. </p>
<ul style="text-align:justify;">
<li style="text-align:justify;padding-bottom:10px;"><strong>Document Date</strong> or <strong>Date</strong>: the subledger date. For most companies this is the actual date on the invoice that they receive from a vendor or send to a customer. In the Bank Reconciliation module this date is called <strong>Transaction Date</strong> or <strong>TRX Date</strong>.</li>
<li style="text-align:justify;padding-bottom:10px;"><strong>Posting Date</strong> or <strong>GL Posting Date</strong>: the date the transaction will post to the General Ledger and thus the date that determines when the transaction will show up on your financial statements. This becomes the Transaction Date in the General Ledger.</li>
<li style="text-align:justify;padding-bottom:10px;"><strong>General Ledger Transaction Date</strong>: the date that determines the period the transaction will show up for on your financial statements. This is the same as the Posting Date or GL Posting Date that is found in the subledgers.</li>
<li style="text-align:justify;padding-bottom:10px;"><strong>Post<span style="color:#000000;"><span style="text-decoration:underline;">ed</span></span> Date</strong>: the date the transaction was actually posted. This will be the system date, not the &#8216;GP User Date&#8217; at the time of the posting.</li>
<li style="text-align:justify;padding-bottom:10px;"><strong>Apply Date</strong>: the subledger apply date. This will be used when running aging reports using the Document Date and will be the subledger date for any transactions created during the apply process.  Will also be used for the Date Invoice Paid Off (see below).</li>
<li style="text-align:justify;padding-bottom:10px;"><strong>Apply Posting Date</strong>: the General Ledger apply date. Will be used when running aging reports using the GL Posting Date and will be the General Ledger Transaction Date for any transactions created during the apply process.</li>
<li style="text-align:justify;"><strong>Date Invoice Paid Off</strong>: the date an invoice was fully applied (using the Apply Date).</li>
</ul>
<p style="text-align:justify;"> </p>
<br />Posted in Dynamics GP Tagged: Bank Reconciliation, Dynamics GP, General Ledger, Payables, Purchase Order Processing, Receivables, Sales Order Processing <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/victoriayudin.wordpress.com/1935/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/victoriayudin.wordpress.com/1935/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/victoriayudin.wordpress.com/1935/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/victoriayudin.wordpress.com/1935/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/victoriayudin.wordpress.com/1935/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/victoriayudin.wordpress.com/1935/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/victoriayudin.wordpress.com/1935/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/victoriayudin.wordpress.com/1935/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/victoriayudin.wordpress.com/1935/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/victoriayudin.wordpress.com/1935/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/victoriayudin.wordpress.com/1935/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/victoriayudin.wordpress.com/1935/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/victoriayudin.wordpress.com/1935/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/victoriayudin.wordpress.com/1935/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=victoriayudin.com&#038;blog=4884873&#038;post=1935&#038;subd=victoriayudin&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://victoriayudin.com/2009/09/08/whats-with-all-these-dates/feed/</wfw:commentRss>
		<slash:comments>11</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 all posted GL transactions in Dynamics GP</title>
		<link>http://victoriayudin.com/2009/08/11/sql-view-for-all-posted-gl-transactions-in-dynamics-gp/</link>
		<comments>http://victoriayudin.com/2009/08/11/sql-view-for-all-posted-gl-transactions-in-dynamics-gp/#comments</comments>
		<pubDate>Tue, 11 Aug 2009 15:10:48 +0000</pubDate>
		<dc:creator>Victoria Yudin</dc:creator>
				<category><![CDATA[Dynamics GP]]></category>
		<category><![CDATA[GL SQL code]]></category>
		<category><![CDATA[GP Reports code]]></category>
		<category><![CDATA[GP SQL scripts]]></category>
		<category><![CDATA[General Ledger]]></category>
		<category><![CDATA[GP SQL view]]></category>
		<category><![CDATA[SQL code]]></category>

		<guid isPermaLink="false">http://victoriayudin.com/?p=1899</guid>
		<description><![CDATA[Below is a SQL script to create a view showing all posted General Ledger transactions in Dynamics GP. This has the common columns asked for on reports, but you can certainly add your own as needed. For additional SQL code, please visit my GP Reports page. A few notes on this view: Year-end close transactions are excluded Only functional [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=victoriayudin.com&#038;blog=4884873&#038;post=1899&#038;subd=victoriayudin&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p style="text-align:justify;">Below is a SQL script to create a view showing all posted General Ledger transactions in Dynamics GP. This has the common columns asked for on reports, but you can certainly add your own as needed. For additional SQL code, please visit my <a title="GP Reports page" href="http://victoriayudin.com/gp-reports/" target="_self">GP Reports page</a>. A few notes on this view:</p>
<ul>
<li>Year-end close transactions are excluded</li>
<li>Only functional amounts are brought in</li>
<li>Unposted transactions will not be shown</li>
</ul>
<p style="text-align:center;"><span style="color:#999999;">~~~~~</span></p>
<pre>CREATE VIEW view_Posted_GL_Trx
AS

<span style="color:#999999;">/*******************************************************************
view_Posted_GL_Trx
Created Aug 11, 2009 by Victoria Yudin - Flexible Solutions, Inc.
For updates see http://victoriayudin.com/gp-reports/
- Returns all lines for posted GL transactions
- Excludes year-end closing entries
- Returns Functional amounts only
GL20000 - Open Year Trx
GL30000 - Historical Trx
GL00100 - Account Master
GL00105 - Account Index Master
*******************************************************************/</span>

SELECT	YEAR1 Trx_Year,
	TRXDATE Trx_Date,
	JRNENTRY Journal_Entry,
	ORTRXSRC Originating_TRX_Source,
	REFRENCE Reference,
	ORMSTRID Originating_Master_ID,
	ORMSTRNM Originating_Master_Name,
	ORDOCNUM Originating_Doc_Number,
	DEBITAMT Debit_Amount,
	CRDTAMNT Credit_Amount,
	ACTNUMST Account_Number,
	ACTDESCR Account_Description,
	CURNCYID Currency_ID
FROM
(SELECT ACTINDX, OPENYEAR YEAR1, TRXDATE,
	JRNENTRY, ORTRXSRC, REFRENCE,
	ORDOCNUM, ORMSTRID, ORMSTRNM,
	DEBITAMT, CRDTAMNT, CURNCYID
 FROM	GL20000
 WHERE	SOURCDOC not in ('BBF','P/L')
 UNION ALL
 SELECT ACTINDX, HSTYEAR YEAR1, TRXDATE,
	JRNENTRY, ORTRXSRC, REFRENCE,
	ORDOCNUM, ORMSTRID, ORMSTRNM,
	DEBITAMT, CRDTAMNT,CURNCYID
 FROM	GL30000
 WHERE   SOURCDOC not in ('BBF','P/L')) GL
INNER JOIN GL00105 GM
     ON GL.ACTINDX = GM.ACTINDX
INNER JOIN GL00100 GA
     ON GL.ACTINDX = GA.ACTINDX

<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 **/
</span>GO
GRANT SELECT ON view_Posted_GL_Trx TO DYNGRP</pre>
<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, GL SQL code, GP Reports code, GP SQL scripts Tagged: General Ledger, GP Reports code, GP SQL view, SQL code <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/victoriayudin.wordpress.com/1899/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/victoriayudin.wordpress.com/1899/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/victoriayudin.wordpress.com/1899/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/victoriayudin.wordpress.com/1899/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/victoriayudin.wordpress.com/1899/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/victoriayudin.wordpress.com/1899/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/victoriayudin.wordpress.com/1899/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/victoriayudin.wordpress.com/1899/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/victoriayudin.wordpress.com/1899/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/victoriayudin.wordpress.com/1899/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/victoriayudin.wordpress.com/1899/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/victoriayudin.wordpress.com/1899/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/victoriayudin.wordpress.com/1899/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/victoriayudin.wordpress.com/1899/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=victoriayudin.com&#038;blog=4884873&#038;post=1899&#038;subd=victoriayudin&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://victoriayudin.com/2009/08/11/sql-view-for-all-posted-gl-transactions-in-dynamics-gp/feed/</wfw:commentRss>
		<slash:comments>52</slash:comments>
	
		<media:thumbnail url="http://victoriayudin.files.wordpress.com/2009/08/binocularsguy.jpg?w=96" />
		<media:content url="http://victoriayudin.files.wordpress.com/2009/08/binocularsguy.jpg?w=96" medium="image">
			<media:title type="html">binoculars</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 Trial Balance in Excel using FRx</title>
		<link>http://victoriayudin.com/2009/07/17/dynamics-gp-trial-balance-in-excel-using-frx/</link>
		<comments>http://victoriayudin.com/2009/07/17/dynamics-gp-trial-balance-in-excel-using-frx/#comments</comments>
		<pubDate>Fri, 17 Jul 2009 18:16:19 +0000</pubDate>
		<dc:creator>Victoria Yudin</dc:creator>
				<category><![CDATA[Dynamics GP]]></category>
		<category><![CDATA[FRx]]></category>
		<category><![CDATA[GP 10.0]]></category>
		<category><![CDATA[GP 2010]]></category>
		<category><![CDATA[GP 8.0]]></category>
		<category><![CDATA[GP 9.0]]></category>
		<category><![CDATA[General Ledger]]></category>

		<guid isPermaLink="false">http://victoriayudin.com/?p=1834</guid>
		<description><![CDATA[While I work with SQL and Crystal Reports every day, there are some reports that are just easier created elsewhere. One example is a GL Trial Balance that you want to export to Excel. There are many ways of handling this requirement, I like using FRx for it.  Below are steps by step instructions on how to [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=victoriayudin.com&#038;blog=4884873&#038;post=1834&#038;subd=victoriayudin&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p style="text-align:justify;">While I work with SQL and Crystal Reports every day, there are some reports that are just easier created elsewhere. One example is a GL Trial Balance that you want to export to Excel. There are many ways of handling this requirement, I like using FRx for it.  Below are steps by step instructions on how to set this up, from start to finish it should take no more than 10 minutes:</p>
<ul>
<li>Create a new Row format with one line encompassing all your accounts:<a href="http://victoriayudin.files.wordpress.com/2009/07/frx-tb-row.png"><img class="aligncenter size-full wp-image-1835" title="FRx TB row" src="http://victoriayudin.files.wordpress.com/2009/07/frx-tb-row.png?w=450&h=247" alt="FRx TB row" width="450" height="247" /></a></li>
</ul>
<p style="padding-left:30px;text-align:justify;">If you have any unit accounts, make sure to exclude them unless you want to see them on the Trial Balance.</p>
<ul>
<li>Create a Column format to show the columns you want, here is an example showing the beginning balance, net change and ending balance:<a href="http://victoriayudin.files.wordpress.com/2009/07/frx-tb-column.png"><img class="aligncenter size-full wp-image-1836" title="FRx TB column" src="http://victoriayudin.files.wordpress.com/2009/07/frx-tb-column.png?w=450&h=247" alt="FRx TB column" width="450" height="247" /></a></li>
</ul>
<p style="padding-left:30px;text-align:justify;">You can do a lot of different things here, for example, I sometimes use a version that will show the net change for each month individually.</p>
<ul>
<li>Create a new Catalog and change the following default settings:
<ul>
<li>Set Detail level to Financial &amp; Account</li>
<li>On the Report Options tab check:
<ul>
<li>Display rows with no amounts</li>
<li>Display reports with no active rows</li>
</ul>
</li>
</ul>
</li>
<li>Generate the report, you will get something like the following in the DrillDown Viewer: <a href="http://victoriayudin.files.wordpress.com/2009/07/frx-tb-display.png"></a><a href="http://victoriayudin.files.wordpress.com/2009/07/frx-tb-display.png"></a><img class="aligncenter size-full wp-image-1841" title="FRx TB display" src="http://victoriayudin.files.wordpress.com/2009/07/frx-tb-display.png?w=450&h=180" alt="FRx TB display" width="450" height="180" /></li>
<li>Now to get this into Excel:
<ul>
<li>Go to File &gt; Export &gt; Worksheet File &gt; Formatted Excel</li>
<li>Select a file name and destination</li>
<li>On the Export Selection window uncheck Financial report and check Detail (supporting) report</li>
<li>Click OK and FRx will automatically open Excel with your detailed Trial Balance:</li>
</ul>
<p><a href="http://victoriayudin.files.wordpress.com/2009/07/excel-tb.png"><img class="aligncenter size-full wp-image-1862" title="Excel TB" src="http://victoriayudin.files.wordpress.com/2009/07/excel-tb.png?w=450&h=285" alt="Excel TB" width="450" height="285" /></a></li>
<li>You can also set this up to print to Excel automatically (skipping the steps above to have to Export from the DrillDown Viewer). To do this:
<ul>
<li>Go to the Output tab, then the Output Options tab</li>
<li>Change the drop-down option to Formatted Excel and pick a destination and the other settings as desired</li>
</ul>
</li>
</ul>
<p> </p>
<h5 style="text-align:center;">Update on August 27, 2009:</h5>
<p style="text-align:justify;">I have been asked a few times recently how to show debits and credits in separate columns on a Trial Balance in FRx. To accomplish that, change the column layout I suggested above to look like the following:</p>
<p style="text-align:center;"><a href="http://victoriayudin.files.wordpress.com/2009/07/frx-dr-cr.png"><img class="size-full wp-image-1919 aligncenter" title="FRx DR CR" src="http://victoriayudin.files.wordpress.com/2009/07/frx-dr-cr.png?w=450&h=206" alt="FRx DR CR" width="450" height="206" /></a></p>
<br />Posted in Dynamics GP, FRx, GP 10.0, GP 2010, GP 8.0, GP 9.0 Tagged: Dynamics GP, FRx, General Ledger <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/victoriayudin.wordpress.com/1834/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/victoriayudin.wordpress.com/1834/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/victoriayudin.wordpress.com/1834/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/victoriayudin.wordpress.com/1834/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/victoriayudin.wordpress.com/1834/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/victoriayudin.wordpress.com/1834/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/victoriayudin.wordpress.com/1834/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/victoriayudin.wordpress.com/1834/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/victoriayudin.wordpress.com/1834/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/victoriayudin.wordpress.com/1834/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/victoriayudin.wordpress.com/1834/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/victoriayudin.wordpress.com/1834/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/victoriayudin.wordpress.com/1834/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/victoriayudin.wordpress.com/1834/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=victoriayudin.com&#038;blog=4884873&#038;post=1834&#038;subd=victoriayudin&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://victoriayudin.com/2009/07/17/dynamics-gp-trial-balance-in-excel-using-frx/feed/</wfw:commentRss>
		<slash:comments>37</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>

		<media:content url="http://victoriayudin.files.wordpress.com/2009/07/frx-tb-row.png" medium="image">
			<media:title type="html">FRx TB row</media:title>
		</media:content>

		<media:content url="http://victoriayudin.files.wordpress.com/2009/07/frx-tb-column.png" medium="image">
			<media:title type="html">FRx TB column</media:title>
		</media:content>

		<media:content url="http://victoriayudin.files.wordpress.com/2009/07/frx-tb-display.png" medium="image">
			<media:title type="html">FRx TB display</media:title>
		</media:content>

		<media:content url="http://victoriayudin.files.wordpress.com/2009/07/excel-tb.png" medium="image">
			<media:title type="html">Excel TB</media:title>
		</media:content>

		<media:content url="http://victoriayudin.files.wordpress.com/2009/07/frx-dr-cr.png" medium="image">
			<media:title type="html">FRx DR CR</media:title>
		</media:content>
	</item>
		<item>
		<title>Where did my transaction go?</title>
		<link>http://victoriayudin.com/2009/04/11/where-did-my-transaction-go/</link>
		<comments>http://victoriayudin.com/2009/04/11/where-did-my-transaction-go/#comments</comments>
		<pubDate>Sat, 11 Apr 2009 11:57:30 +0000</pubDate>
		<dc:creator>Victoria Yudin</dc:creator>
				<category><![CDATA[Dynamics GP]]></category>
		<category><![CDATA[General Ledger]]></category>
		<category><![CDATA[Payables]]></category>
		<category><![CDATA[Sales Order Processing]]></category>

		<guid isPermaLink="false">http://victoriayudin.com/?p=1576</guid>
		<description><![CDATA[This is a common question, especially with new users of Dynamics GP, and I was recently reminded of it by a post in the Microsoft Dynamics GP Newsgroup. While every transaction type will be slightly different, there is a basic lesson that is important for all GP users: beware of the Delete button. Most GP actions are updated automatically [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=victoriayudin.com&#038;blog=4884873&#038;post=1576&#038;subd=victoriayudin&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p style="text-align:justify;">This is a common question, especially with new users of Dynamics GP, and I was recently reminded of it by a post in the <a title="MS Dynamics GP Newsgroup" href="http://www.microsoft.com/Businesssolutions/Community/Newsgroups/dgbrowser/en-us/default.mspx?dg=microsoft.public.greatplains&amp;lang=en&amp;cr=US" target="_blank">Microsoft Dynamics GP Newsgroup</a>. While every transaction type will be slightly different, there is a basic lesson that is important for all GP users: <span style="color:#800000;"><strong><span style="color:#993300;">beware of the Delete button</span></strong></span>. Most GP actions are updated automatically and immediately and there is no undo or discard changes available. So sometimes users inadvertently delete valid transactions because the messages GP prompts them with might not explain enough about what&#8217;s really going to happen.</p>
<p style="text-align:justify;">Below I will go through examples of the three most common transactions I see this happen with: Sales Order Processing, General Ledger, Payables. I will also, when possible, tell you what you can do to help mitigate this.</p>
<p style="text-align:justify;"> </p>
<h3 style="text-align:center;"><span style="color:#993300;">Sales Order Processing</span></h3>
<p style="text-align:justify;">When editing a Sales Order Processing transaction, let&#8217;s say you change the quantity on one of the lines &#8211; as soon as you tab off that line, the change is saved in the database. Out-of-the-box, the old value is no longer stored, so all GP knows about now is the new value you have entered. At this point if you go to close the screen, you get the following:</p>
<p style="text-align:center;"><a href="http://victoriayudin.files.wordpress.com/2009/04/delete-sop.png"><img class="aligncenter size-full wp-image-1577" title="delete-sop" src="http://victoriayudin.files.wordpress.com/2009/04/delete-sop.png?w=450" alt="delete-sop"   /></a></p>
<p style="text-align:justify;">Read this very carefully &#8211; it does not ask whether you want to save or delete your changes. The message talks about saving or deleting the document (aka transaction). Your options:</p>
<ol>
<li>
<div style="text-align:left;">Save the transaction as it is now, with your changes.</div>
</li>
<li>
<div style="text-align:justify;">Delete the transaction. Yes, this deletes the entire transaction and it is not reversible.</div>
</li>
<li>
<div style="text-align:left;">Cancel for now, make additional changes, but then you will have to either save or delete afterwards.</div>
</li>
</ol>
<p style="text-align:justify;">In Sales Order Processing to minimize the risk of inadvertently deleting a transaction you can either disallow deletion of transactions or allow them but set up a password:</p>
<p style="text-align:center;"><a href="http://victoriayudin.files.wordpress.com/2009/04/sop-setup.png"><img class="aligncenter size-full wp-image-1578" title="sop-setup" src="http://victoriayudin.files.wordpress.com/2009/04/sop-setup.png?w=450" alt="sop-setup"   /></a></p>
<p style="text-align:justify;">These settings can be different for every combination of  Transaction Type and ID. So if you have 10 different order type IDs, you would need to change the settings for each of them individually. Note that the password is not masked, meaning anyone that has access to this window will be able to see or change it.</p>
<p style="text-align:justify;"> </p>
<h3 style="text-align:center;"><span style="color:#993300;">General Ledger</span></h3>
<p style="text-align:justify;">General Ledger is where I see this issue most often. A typical scenario is this: one user will post transactions in a subledger and another user will review these transactions in the GL before posting them. The reviewer will go to close the screen, thinking no change was made, but GP detected a change, perhaps because of clicking around in the fields, so the user is prompted with:</p>
<p style="text-align:center;"><a href="http://victoriayudin.files.wordpress.com/2009/04/delete-gl.png"><img class="aligncenter size-full wp-image-1590" title="delete-gl" src="http://victoriayudin.files.wordpress.com/2009/04/delete-gl.png?w=450" alt="delete-gl"   /></a></p>
<p style="text-align:justify;">This is worded a little differently but your options are the same &#8211; you can either save the transaction with your changes, delete the entire transaction or cancel to go back to the transaction as it is now. There is no option to undo your changes. </p>
<p style="text-align:justify;">Deleting GL transactions was prevalent enough that starting with version 8.0 of Dynamics GP a setting was added to globally disallow deletion of saved transactions in the General Ledger (<em>Tools &gt; Setup &gt; Financial &gt; General Ledger</em>):</p>
<p style="text-align:center;"><span style="color:#800000;"><span style="color:#000000;"><a href="http://victoriayudin.files.wordpress.com/2009/04/gl-setup.png"><img class="aligncenter size-full wp-image-1591" title="gl-setup" src="http://victoriayudin.files.wordpress.com/2009/04/gl-setup.png?w=450" alt="gl-setup"   /></a></span></span></p>
<p style="text-align:justify;">This is a per company setting and I recommend to always have this option unchecked in all your companies. There are very few cases where a GL transaction actually needs to be deleted. In those cases, this setting can be temporarily changed, then put back. For day-to-day GL transaction deletions, use the Void option instead. </p>
<h3 style="text-align:center;"><span style="color:#993300;">Payables</span></h3>
<p style="text-align:justify;">While all the prompts asking about saving and deleting are very similar, I think the message in Payables Transaction Entry is the most misleading of the three I am writing about:</p>
<p style="text-align:center;"><a href="http://victoriayudin.files.wordpress.com/2009/04/delete-payables.png"><img class="aligncenter size-full wp-image-1596" title="delete-payables" src="http://victoriayudin.files.wordpress.com/2009/04/delete-payables.png?w=450" alt="delete-payables"   /></a></p>
<p style="text-align:justify;">This one actually asks about changes and doesn&#8217;t mention deleting the transaction, but still, if Delete is chosen, then entire transaction will be deleted. Even more bad news about Payables: I don&#8217;t know of any setting to prevent this. The only option is to disallow deletion of printed transactions (<em>Tools &gt; Setup &gt; Purchasing &gt; Payables</em>):</p>
<p style="text-align:center;"><a href="http://victoriayudin.files.wordpress.com/2009/04/payables-setup.png"><img class="aligncenter size-full wp-image-1597" title="payables-setup" src="http://victoriayudin.files.wordpress.com/2009/04/payables-setup.png?w=450" alt="payables-setup"   /></a></p>
<p style="text-align:justify;">However 99% of the users that I know never print payables documents (to do so, click the bigger Print button in the middle of the toolbar on a Payables Transaction Entry window), so this setting is not much help. If you happen to print a check during the Payables Transaction Entry, that will automatically disallow deleting the transaction (and rightly so), but most users do not print checks from the transaction entry screen. On the other hand, re-entering a saved payables transaction is typically not as bad as a GL or sales transaction, so if I had to pick one without an option to disallow deleting, payables would be it.</p>
<p style="text-align:justify;"> </p>
<br />Posted in Dynamics GP Tagged: Dynamics GP, General Ledger, Payables, Sales Order Processing <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/victoriayudin.wordpress.com/1576/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/victoriayudin.wordpress.com/1576/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/victoriayudin.wordpress.com/1576/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/victoriayudin.wordpress.com/1576/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/victoriayudin.wordpress.com/1576/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/victoriayudin.wordpress.com/1576/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/victoriayudin.wordpress.com/1576/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/victoriayudin.wordpress.com/1576/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/victoriayudin.wordpress.com/1576/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/victoriayudin.wordpress.com/1576/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/victoriayudin.wordpress.com/1576/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/victoriayudin.wordpress.com/1576/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/victoriayudin.wordpress.com/1576/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/victoriayudin.wordpress.com/1576/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=victoriayudin.com&#038;blog=4884873&#038;post=1576&#038;subd=victoriayudin&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://victoriayudin.com/2009/04/11/where-did-my-transaction-go/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
	
		<media:thumbnail url="http://victoriayudin.files.wordpress.com/2010/08/questionmark.jpg?w=96" />
		<media:content url="http://victoriayudin.files.wordpress.com/2010/08/questionmark.jpg?w=96" medium="image">
			<media:title type="html">question mark</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>

		<media:content url="http://victoriayudin.files.wordpress.com/2009/04/delete-sop.png" medium="image">
			<media:title type="html">delete-sop</media:title>
		</media:content>

		<media:content url="http://victoriayudin.files.wordpress.com/2009/04/sop-setup.png" medium="image">
			<media:title type="html">sop-setup</media:title>
		</media:content>

		<media:content url="http://victoriayudin.files.wordpress.com/2009/04/delete-gl.png" medium="image">
			<media:title type="html">delete-gl</media:title>
		</media:content>

		<media:content url="http://victoriayudin.files.wordpress.com/2009/04/gl-setup.png" medium="image">
			<media:title type="html">gl-setup</media:title>
		</media:content>

		<media:content url="http://victoriayudin.files.wordpress.com/2009/04/delete-payables.png" medium="image">
			<media:title type="html">delete-payables</media:title>
		</media:content>

		<media:content url="http://victoriayudin.files.wordpress.com/2009/04/payables-setup.png" medium="image">
			<media:title type="html">payables-setup</media:title>
		</media:content>
	</item>
		<item>
		<title>Sales Transaction Entry GL distributions in Dynamics GP</title>
		<link>http://victoriayudin.com/2008/12/08/sales-transaction-entry-gl-distributions-in-dynamics-gp/</link>
		<comments>http://victoriayudin.com/2008/12/08/sales-transaction-entry-gl-distributions-in-dynamics-gp/#comments</comments>
		<pubDate>Mon, 08 Dec 2008 10:16:00 +0000</pubDate>
		<dc:creator>Victoria Yudin</dc:creator>
				<category><![CDATA[Dynamics GP]]></category>
		<category><![CDATA[GP 10.0]]></category>
		<category><![CDATA[GP 2010]]></category>
		<category><![CDATA[GP 8.0]]></category>
		<category><![CDATA[GP 9.0]]></category>
		<category><![CDATA[General Ledger]]></category>
		<category><![CDATA[Sales Order Processing]]></category>

		<guid isPermaLink="false">http://victoriayudin.com/?p=795</guid>
		<description><![CDATA[The topic of General Ledger distributions for Sales Order Processing transactions has been known to cause a fair amount of confusion for Dynamics GP users.  I would like to address some of the typical questions we receive on this. Please click on the screen shots to see them larger/clearer.  Just to set the stage, I am talking about the [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=victoriayudin.com&#038;blog=4884873&#038;post=795&#038;subd=victoriayudin&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p style="text-align:justify;">The topic of General Ledger distributions for Sales Order Processing transactions has been known to cause a fair amount of confusion for Dynamics GP users.  I would like to address some of the typical questions we receive on this. Please click on the screen shots to see them larger/clearer. </p>
<p style="text-align:justify;">Just to set the stage, I am talking about the window titled Sales Transaction Entry (<em>Transactions &gt; Sales &gt; Sales Transaction Entry</em>):</p>
<p style="text-align:center;"><a href="http://victoriayudin.files.wordpress.com/2008/12/sop01.png" target="_blank"><img class="aligncenter size-full wp-image-798" title="sop01" src="http://victoriayudin.files.wordpress.com/2008/12/sop01.png?w=450" alt="sop01"   /></a></p>
<p>And the GL distributions that are shown when you click on the Distributions button:</p>
<p style="text-align:center;"><strong><a href="http://victoriayudin.files.wordpress.com/2008/12/sop11.png" target="_blank"><img class="aligncenter size-full wp-image-828" title="sop11" src="http://victoriayudin.files.wordpress.com/2008/12/sop11.png?w=450" alt="sop11"   /></a></strong></p>
<p style="text-align:center;"><span style="color:#888888;">~~~~~</span></p>
<p><strong><span style="color:#993300;">Question:</span></strong>  Why are there no distributions for Inventory and Cost of Goods (COGS)? </p>
<p style="text-align:justify;"><strong><span style="color:#993300;">Answer:</span>  </strong>The distributions for Inventory and COGS are always based on the cost of the inventory items at the time the invoice is posted. Since the cost can keep changing with other transactions being posted, GP does not actually calculate the cost (and thus the Inventory and COGS distributions) until the invoice is posted.</p>
<p style="text-align:center;"><span style="color:#888888;">~~~~~</span></p>
<p><strong><span style="color:#993300;">Question:</span></strong>  If I expand the line item to see more detail I see a cost, but it&#8217;s not correct. Why is that?</p>
<p style="text-align:center;"><a href="http://victoriayudin.files.wordpress.com/2008/12/sop02.png" target="_blank"><img class="aligncenter size-full wp-image-800" title="sop02" src="http://victoriayudin.files.wordpress.com/2008/12/sop02.png?w=450" alt="sop02"   /></a></p>
<p style="text-align:justify;"><strong><span style="color:#993300;">Answer:</span> </strong> This cost is filled in at the time the invoice is created. This is informational only at this point and will not be what is used as the cost when the invoice is posted. At the time of posting the cost will be recalculated. Once posted, if you look at the invoice and drill into the detail, it will show the correct cost the invoice was posted with.  </p>
<p style="text-align:center;"><span style="color:#888888;">~~~~~</span></p>
<p style="text-align:justify;"><strong><span style="color:#993300;">Question:</span></strong>  How do I see what GL account numbers will be used for Inventory and COGS when the invoice is posted?</p>
<p style="text-align:justify;"><strong><span style="color:#993300;">Answer:</span>  </strong>Since these accounts can be different for every item, you need to drill down on each item by clicking on the item to highlight it, clicking on the blue arrow next to the Item Number hyperlink:</p>
<p style="text-align:center;"><a href="http://victoriayudin.files.wordpress.com/2008/12/sop03.png" target="_blank"><img class="aligncenter size-full wp-image-802" title="sop03" src="http://victoriayudin.files.wordpress.com/2008/12/sop03.png?w=450" alt="sop03"   /></a></p>
<p style="text-align:justify;">And then clicking on the Distributions button:</p>
<p style="text-align:center;"><a href="http://victoriayudin.files.wordpress.com/2008/12/sop04.png" target="_blank"><img class="aligncenter size-full wp-image-803" title="sop04" src="http://victoriayudin.files.wordpress.com/2008/12/sop04.png?w=450" alt="sop04"   /></a></p>
<p style="text-align:justify;">You will see not only the Inventory and COGS distribution accounts, but any other line item specific account numbers:</p>
<p style="text-align:center;"><a href="http://victoriayudin.files.wordpress.com/2008/12/sop05.png" target="_blank"><img class="aligncenter size-full wp-image-807" title="sop05" src="http://victoriayudin.files.wordpress.com/2008/12/sop05.png?w=450" alt="sop05"   /></a></p>
<p style="text-align:justify;">Since these accounts can be different for every line item this can get quite cumbersome to look through if you have a lot of line items. If you wanted to see the Inventory and COGS accounts for all line items on a transaction you could use the Sales Line Items SmartList and bring in the COGS Account Number and Inventory Account Number columns. <em>[Note: When testing this on versions 9.0 and 10.0 of GP I see 3 columns available with the same exact names. In my experience, the first one of these 3 will be the correct one, but since there any many various setups out there, you should test yours to make sure that you're looking at the correct columns before relying on them.]</em></p>
<p style="text-align:center;"><span style="color:#888888;">~~~~~</span></p>
<p style="text-align:justify;"><strong><span style="color:#993300;">Question:</span></strong>  Can I change these distribution accounts? </p>
<p style="text-align:justify;"><strong><span style="color:#993300;">Answer:</span>  </strong>Yes, you can change these for every transaction line &#8211; the changes will be saved for this transaction line only and will not effect any other lines or transactions. No setup will be changed by making changes to individual transactions or lines. When you make a change and save the line item, you will get the following message:</p>
<p style="text-align:center;"><a href="http://victoriayudin.files.wordpress.com/2008/12/sop06.png" target="_blank"><img class="aligncenter size-full wp-image-806" title="sop06" src="http://victoriayudin.files.wordpress.com/2008/12/sop06.png?w=450" alt="sop06"   /></a></p>
<p style="text-align:left;">Make sure to say Yes to this.</p>
<p style="text-align:center;"><span style="color:#888888;">~~~~~</span></p>
<p style="text-align:justify;"><strong><span style="color:#993300;">Question:</span></strong>  How does the system decide what GL account numbers to use? </p>
<p style="text-align:justify;"><strong><span style="color:#993300;">Answer:</span>  </strong>Take a look at your Sales Order Processing Setup (<em>Tools &gt; Setup &gt; Sales &gt; Sales Order Processing</em>):</p>
<p style="text-align:center;"><a href="http://victoriayudin.files.wordpress.com/2008/12/sop07.png" target="_blank"><img class="aligncenter size-full wp-image-809" title="sop07" src="http://victoriayudin.files.wordpress.com/2008/12/sop07.png?w=450" alt="sop07"   /></a></p>
<p style="text-align:justify;">If you have chosen to use Posting Accounts from Item, then the system looks for the accounts in this order:</p>
<ol style="text-align:justify;padding-left:10px;">
<li style="padding-bottom:3px;">Inventory Item setup (<em>Cards &gt; Inventory &gt; Item &gt; click on Accounts</em>)</li>
<li style="padding-bottom:3px;">Posting Accounts for Inventory series (<em>Tools &gt; Setup &gt; Posting &gt; Posting Accounts &gt; choose Inventory for Display</em>)</li>
</ol>
<p>If you have chosen to use Posting Accounts from Customer, then the system looks for the accounts in this order:</p>
<ol style="text-align:justify;padding-left:10px;">
<li style="padding-bottom:3px;">Customer setup (<em>Cards &gt; Sales &gt; Customer &gt; Accounts</em>)</li>
<li style="padding-bottom:3px;">Posting Accounts for Sales series (<em>Tools &gt; Setup &gt; Posting &gt; Posting Accounts &gt; choose Sales for Display</em>)</li>
</ol>
<p><strong><span style="color:#993300;">Important note:</span></strong>  Changing any of the setup options will not have any impact on already saved transactions. </p>
<p style="text-align:center;"><span style="color:#888888;">~~~~~</span></p>
<p style="text-align:justify;"><strong><span style="color:#993300;">Question:</span></strong>  I am getting an error saying something similar to &#8221;This Sales distribution amount is incorrect and will not be posted.  Do you want to save with errors?&#8221; What cases this and what do I do?</p>
<p><strong><span style="color:#993300;">Answer:</span>  </strong>There are typically 2 reasons why you will get distributions errors:  </p>
<ol style="text-align:justify;padding-left:10px;padding-bottom:3px;">
<li style="padding-bottom:3px;">You are missing setup information so GP cannot determine what accounts to use.</li>
<li style="padding-bottom:3px;">You have manually changed something in the distributions and it does not conform to the totals that GP is expecting.</li>
</ol>
<p style="text-align:justify;">To fix missing account numbers, you can just fill them in manually on the transaction or change the setup and have the system regenerate the distributions by clicking Default on the Sales Distribution Entry Screen:</p>
<p style="text-align:center;"><a href="http://victoriayudin.files.wordpress.com/2008/12/sop081.png" target="_blank"><img class="aligncenter size-full wp-image-819" title="sop081" src="http://victoriayudin.files.wordpress.com/2008/12/sop081.png?w=450" alt="sop081"   /></a></p>
<p>When you click Default you will get the following message:</p>
<p style="text-align:center;"><a href="http://victoriayudin.files.wordpress.com/2008/12/sop09.png" target="_blank"><img class="aligncenter size-full wp-image-820" title="sop09" src="http://victoriayudin.files.wordpress.com/2008/12/sop09.png?w=450" alt="sop09"   /></a></p>
<p style="text-align:justify;">This is warning you that if you have made any manual changes they may be lost by having the system regenerate the default distributions. If you are not sure, write down or take a screen shot of the current distributions and amounts, in case you need to re-do your changes. To have the system regenerate the distributions, click Delete. (Sounds a little counter-intuitive, I know.)</p>
<p style="text-align:justify;">Regenerating the default GL distributions will also fix most of the issues with manual changes, but I would like to explain that in a little more detail. What happens is that GP is automatically matching up the various totals on the transaction with the types and totals of the GL distributions. When it finds a mismatch, it does not allow the posting of the transaction. This is a good thing and will typically prevent reconciliation issues. Here is an example of what GP is trying to match:</p>
<p style="text-align:center;"><a href="http://victoriayudin.files.wordpress.com/2008/12/sop10.png" target="_blank"><img class="aligncenter size-full wp-image-822" title="sop10" src="http://victoriayudin.files.wordpress.com/2008/12/sop10.png?w=450" alt="sop10"   /></a></p>
<p style="text-align:justify;">Outlined in red are the most common totals that I have seen issues with. Let&#8217;s go through them one at a time:</p>
<ol style="text-align:justify;padding-left:10px;">
<li style="padding-bottom:3px;"><span style="text-decoration:underline;">Subtotal</span>: all the SALES distributions must total up to a credit equal to the Subtotal.</li>
<li style="padding-bottom:3px;"><span style="text-decoration:underline;">Trade Discount</span>: all the TRADE distributions must total up to a debit equal to the Trade Discount.</li>
<li style="padding-bottom:3px;"><span style="text-decoration:underline;">Tax</span>: all the TAXES distributions must total up to a credit equal to the Tax.</li>
<li style="padding-bottom:3px;"><span style="text-decoration:underline;">Amount Received</span>: all the CASH distributions must total up to a debit equal to the Amount Received.</li>
<li style="padding-bottom:3px;"><span style="text-decoration:underline;">On Account</span>: all the RECV distributions must total up to a debit equal to On Account.</li>
</ol>
<p style="text-align:justify;">You can find a complete list of all the distribution types and their explanations in <a title="Accolade Publications" href="http://accoladepublications.com/" target="_blank">Accolade Publications</a>&#8216;  Understanding Sales Order Processing book.</p>
<p style="text-align:center;"><span style="color:#888888;">~~~~~</span></p>
<p style="text-align:justify;"><strong><span style="color:#993300;">My 2 cents:</span></strong>  For me one of the main benefits of using a product like Dynamics GP is that it can do a lot of the work for you. If you are finding yourself changing the GL distributions for Sales Order Processing transactions frequently (or need to often go back and reclass), I would recommend a review of your setup. In most situations the setup can be done so that you will not need to make any changes to the distributions for 99% of your transactions.</p>
<br />Posted in Dynamics GP, GP 10.0, GP 2010, GP 8.0, GP 9.0 Tagged: Dynamics GP, General Ledger, Sales Order Processing <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/victoriayudin.wordpress.com/795/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/victoriayudin.wordpress.com/795/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/victoriayudin.wordpress.com/795/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/victoriayudin.wordpress.com/795/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/victoriayudin.wordpress.com/795/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/victoriayudin.wordpress.com/795/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/victoriayudin.wordpress.com/795/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/victoriayudin.wordpress.com/795/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/victoriayudin.wordpress.com/795/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/victoriayudin.wordpress.com/795/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/victoriayudin.wordpress.com/795/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/victoriayudin.wordpress.com/795/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/victoriayudin.wordpress.com/795/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/victoriayudin.wordpress.com/795/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=victoriayudin.com&#038;blog=4884873&#038;post=795&#038;subd=victoriayudin&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://victoriayudin.com/2008/12/08/sales-transaction-entry-gl-distributions-in-dynamics-gp/feed/</wfw:commentRss>
		<slash:comments>40</slash:comments>
	
		<media:thumbnail url="http://victoriayudin.files.wordpress.com/2010/09/yelloworangejigsaw.jpg?w=121" />
		<media:content url="http://victoriayudin.files.wordpress.com/2010/09/yelloworangejigsaw.jpg?w=121" medium="image">
			<media:title type="html">YellowOrangeJigsaw</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>

		<media:content url="http://victoriayudin.files.wordpress.com/2008/12/sop01.png" medium="image">
			<media:title type="html">sop01</media:title>
		</media:content>

		<media:content url="http://victoriayudin.files.wordpress.com/2008/12/sop11.png" medium="image">
			<media:title type="html">sop11</media:title>
		</media:content>

		<media:content url="http://victoriayudin.files.wordpress.com/2008/12/sop02.png" medium="image">
			<media:title type="html">sop02</media:title>
		</media:content>

		<media:content url="http://victoriayudin.files.wordpress.com/2008/12/sop03.png" medium="image">
			<media:title type="html">sop03</media:title>
		</media:content>

		<media:content url="http://victoriayudin.files.wordpress.com/2008/12/sop04.png" medium="image">
			<media:title type="html">sop04</media:title>
		</media:content>

		<media:content url="http://victoriayudin.files.wordpress.com/2008/12/sop05.png" medium="image">
			<media:title type="html">sop05</media:title>
		</media:content>

		<media:content url="http://victoriayudin.files.wordpress.com/2008/12/sop06.png" medium="image">
			<media:title type="html">sop06</media:title>
		</media:content>

		<media:content url="http://victoriayudin.files.wordpress.com/2008/12/sop07.png" medium="image">
			<media:title type="html">sop07</media:title>
		</media:content>

		<media:content url="http://victoriayudin.files.wordpress.com/2008/12/sop081.png" medium="image">
			<media:title type="html">sop081</media:title>
		</media:content>

		<media:content url="http://victoriayudin.files.wordpress.com/2008/12/sop09.png" medium="image">
			<media:title type="html">sop09</media:title>
		</media:content>

		<media:content url="http://victoriayudin.files.wordpress.com/2008/12/sop10.png" medium="image">
			<media:title type="html">sop10</media:title>
		</media:content>
	</item>
		<item>
		<title>SQL view for Payables GL distributions in Dynamics GP</title>
		<link>http://victoriayudin.com/2008/11/28/sql-view-to-show-all-gl-distributions-for-ap-transactions/</link>
		<comments>http://victoriayudin.com/2008/11/28/sql-view-to-show-all-gl-distributions-for-ap-transactions/#comments</comments>
		<pubDate>Fri, 28 Nov 2008 12:40:58 +0000</pubDate>
		<dc:creator>Victoria Yudin</dc:creator>
				<category><![CDATA[Dynamics GP]]></category>
		<category><![CDATA[GL SQL code]]></category>
		<category><![CDATA[GP Reports code]]></category>
		<category><![CDATA[GP SQL scripts]]></category>
		<category><![CDATA[Payables SQL code]]></category>
		<category><![CDATA[General Ledger]]></category>
		<category><![CDATA[GP SQL view]]></category>
		<category><![CDATA[Payables]]></category>
		<category><![CDATA[SQL code]]></category>

		<guid isPermaLink="false">http://victoriayudin.wordpress.com/?p=729</guid>
		<description><![CDATA[Here is a view that will return the General Ledger distributions for all posted or unposted payables transactions.  Unposted is also called &#8216;work&#8217; and posted includes any open or historical transactions.  If you&#8217;re going to use this with SmartList Buidler, make sure to include the section at the end to grant permissions to DYNGRP. Disclaimer: I [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=victoriayudin.com&#038;blog=4884873&#038;post=729&#038;subd=victoriayudin&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p style="text-align:justify;">Here is a view that will return the General Ledger distributions for all posted or unposted payables transactions.  Unposted is also called &#8216;work&#8217; and posted includes any open or historical transactions.  If you&#8217;re going to use this with SmartList Buidler, make sure to include the section at the end to grant permissions to DYNGRP.</p>
<p><pre class="brush: sql;">

CREATE VIEW view_AP_Distributions
AS

--************************************************
--view_AP_Distributions
--Shows GL distributions for all AP transactions
--Created Nov 28, 2008 by Victoria Yudin - Flexible Solutions, Inc.
--For updates see http://victoriayudin.com/gp-reports/
--Does not exclude voided transactions
--Transactions with no MC information will show an exchange rate of 0
--Updated Feb 11, 2009 to correct link to GL account number
--Updated May 13, 2009 to add distribution reference
--Updated Nov 10, 2009 to add GP posting date and more user friendly column names
--Updated Jan 22, 2010 to add Document Date
--Updated Mar 10, 2010 to add Batch ID, Trx Description, and include unposted transactions
--Updated May 23, 2010 to add Voucher Number
--Updated Jun 25, 2010 to add additional distribution types, currency, exchange rate and originating amounts
--Updated Jun 27, 2010 to fix copying issue
--Updated Jun 30, 2010 to add Voided field
--Updated Dec 17, 2010 to add Vendor Name and GL Account Name
--Updated Jan 31, 2011 to add ROUND distribution type
--Updated Mar 8, 2011 to add PM10300 and PM10400 tables
--Updated Dec 20, 2011 to add PO Number
--*************************************************

SELECT  D.VENDORID Vendor_ID,
	N.VENDNAME Vendor_Name,
	K.DOCNUMBR Document_Number,
	D.PSTGDATE GL_Posting_Date,
	K.DOCDATE Document_Date,
	CASE K.DOCTYPE
	     WHEN 1 THEN 'Invoice'
	     WHEN 2 THEN 'Finance Charge'
	     WHEN 3 THEN 'Misc Charge'
	     WHEN 4 THEN 'Return'
	     WHEN 5 THEN 'Credit Memo'
	     WHEN 6 THEN 'Payment'
	     END Document_Type,
	G.ACTNUMST Account_Number,
	A.ACTDESCR Account_Name,
	CASE D.DISTTYPE
	     WHEN 1 THEN 'Cash'
	     WHEN 2 THEN 'Payable'
	     WHEN 3 THEN 'Discount Available'
	     WHEN 4 THEN 'Discount Taken'
	     WHEN 5 THEN 'Finance Charge'
	     WHEN 6 THEN 'Purchase'
	     WHEN 7 THEN 'Trade Disc.'
	     WHEN 8 THEN 'Misc. Charge'
	     WHEN 9 THEN 'Freight'
	     WHEN 10 THEN 'Taxes'
	     WHEN 11 THEN 'Writeoffs'
	     WHEN 12 THEN 'Other'
	     WHEN 13 THEN 'GST Disc'
	     WHEN 14 THEN 'PPS Amount'
	     WHEN 16 THEN 'Round'
	     WHEN 17 THEN 'Realized Gain'
	     WHEN 18 THEN 'Realized Loss'
	     WHEN 19 THEN 'Due To'
	     WHEN 20 THEN 'Due From'
	     END Distribution_Type,
	D.DEBITAMT Debit_Amount,
	D.CRDTAMNT Credit_Amount,
	D.DistRef Distribution_Reference,
	T.BACHNUMB Batch_ID,
	T.TRXDSCRN Trx_Description,
	T.STAT Trx_Status,
	D.VCHRNMBR Voucher_Number,
	D.CURNCYID Currency_ID,
	coalesce(D.XCHGRATE,0) Exchange_Rate,
	D.ORDBTAMT Originating_Debit_Amount,
	D.ORCRDAMT Originating_Credit_Amount,
	CASE T.VOIDED
	     WHEN 0 THEN 'No'
	     WHEN 1 THEN 'Yes'
	     END Voided,
	T.PORDNMBR PO_Number

FROM
-- all open trx distributions
(SELECT  VENDORID, VCHRNMBR, CNTRLTYP, DEBITAMT, CRDTAMNT, DSTINDX, DISTTYPE, DistRef,
         PSTGDATE, CURNCYID, ORDBTAMT, ORCRDAMT, XCHGRATE
         FROM PM10100
UNION ALL
-- all historical trx distributions
 SELECT  P.VENDORID, P.VCHRNMBR, P.CNTRLTYP, P.DEBITAMT, P.CRDTAMNT, P.DSTINDX,
         P.DISTTYPE, P.DistRef, P.PSTGDATE, P.CURNCYID, P.ORDBTAMT, P.ORCRDAMT, M.XCHGRATE
         FROM PM30600 P
         LEFT OUTER JOIN  -- historical exchange rate
	   MC020103 M
	   ON P.VCHRNMBR = M.VCHRNMBR
	   AND P.DOCTYPE = M.DOCTYPE) D

-- add document number and type
LEFT OUTER JOIN
        PM00400 K
        ON D.VCHRNMBR = K.CNTRLNUM
        AND D.CNTRLTYP = K.CNTRLTYP

--add GL account number
LEFT OUTER JOIN
        GL00105 G
        ON D.DSTINDX = G.ACTINDX

--add status, batch and trx description
LEFT OUTER JOIN
     (SELECT VCHRNMBR, CNTRLTYP, BACHNUMB, TRXDSCRN,
      STAT = 'Work', VOIDED = 0, PORDNMBR
      FROM PM10000
     UNION
      SELECT VCHRNMBR, CNTRLTYP, BACHNUMB, TRXDSCRN,
      STAT = 'Open', VOIDED, PORDNMBR
      FROM PM20000
     UNION
      SELECT VCHRNMBR, CNTRLTYP, BACHNUMB, TRXDSCRN,
      STAT = 'History', VOIDED, PORDNMBR
      FROM PM30200
     UNION
      SELECT PMNTNMBR, CNTRLTYP = 1, BACHNUMB, COMMENT1,
      STAT = 'Work', VOIDED = 0, PORDNMBR = ''
      FROM PM10300
     UNION
      SELECT PMNTNMBR, CNTRLTYP = 1, BACHNUMB, TRXDSCRN,
      STAT = 'Work', VOIDED = 0, PORDNMBR = ''
      FROM PM10400) T
     ON T.VCHRNMBR = D.VCHRNMBR
     AND T.CNTRLTYP = D.CNTRLTYP

--add GL account name
LEFT OUTER JOIN
        GL00100 A
        ON A.ACTINDX = D.DSTINDX

--add vendor name
LEFT OUTER JOIN
        PM00200 N
        ON N.VENDORID = D.VENDORID

--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_AP_Distributions TO DYNGRP

</pre></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, GL SQL code, GP Reports code, GP SQL scripts, Payables SQL code Tagged: General Ledger, GP Reports code, GP SQL view, Payables, SQL code <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/victoriayudin.wordpress.com/729/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/victoriayudin.wordpress.com/729/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/victoriayudin.wordpress.com/729/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/victoriayudin.wordpress.com/729/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/victoriayudin.wordpress.com/729/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/victoriayudin.wordpress.com/729/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/victoriayudin.wordpress.com/729/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/victoriayudin.wordpress.com/729/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/victoriayudin.wordpress.com/729/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/victoriayudin.wordpress.com/729/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/victoriayudin.wordpress.com/729/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/victoriayudin.wordpress.com/729/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/victoriayudin.wordpress.com/729/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/victoriayudin.wordpress.com/729/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=victoriayudin.com&#038;blog=4884873&#038;post=729&#038;subd=victoriayudin&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://victoriayudin.com/2008/11/28/sql-view-to-show-all-gl-distributions-for-ap-transactions/feed/</wfw:commentRss>
		<slash:comments>77</slash:comments>
	
		<media:thumbnail url="http://victoriayudin.files.wordpress.com/2008/11/mouseguy.jpg?w=96" />
		<media:content url="http://victoriayudin.files.wordpress.com/2008/11/mouseguy.jpg?w=96" medium="image">
			<media:title type="html">mouseguy</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>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&#038;blog=4884873&#038;post=602&#038;subd=victoriayudin&#038;ref=&#038;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&#038;blog=4884873&#038;post=602&#038;subd=victoriayudin&#038;ref=&#038;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>60</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 GL table information</title>
		<link>http://victoriayudin.com/2008/10/13/dynamics-gp-gl-table-information/</link>
		<comments>http://victoriayudin.com/2008/10/13/dynamics-gp-gl-table-information/#comments</comments>
		<pubDate>Mon, 13 Oct 2008 08:54:54 +0000</pubDate>
		<dc:creator>Victoria Yudin</dc:creator>
				<category><![CDATA[Dynamics GP]]></category>
		<category><![CDATA[General Ledger]]></category>
		<category><![CDATA[GP Reports code]]></category>
		<category><![CDATA[GP table information]]></category>

		<guid isPermaLink="false">http://victoriayudin.wordpress.com/?p=298</guid>
		<description><![CDATA[A new page has been posted up with the General Ledger table information.  A list of all the various pages available can be seen on the main GP Reports page.  I have also included links there to some additional reporting resources published by fellow Dynamics GP bloggers. Posted in Dynamics GP Tagged: General Ledger, GP Reports code, GP table information<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=victoriayudin.com&#038;blog=4884873&#038;post=298&#038;subd=victoriayudin&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p style="text-align:justify;">A new page has been posted up with the <a title="GL tables" href="http://victoriayudin.com/gp-reports/gl-tables/" target="_self">General Ledger table information</a>.  A list of all the various pages available can be seen on the main <a title="GP Reports" href="http://victoriayudin.com/gp-reports/" target="_self">GP Reports</a> page.  I have also included links there to some additional reporting resources published by fellow Dynamics GP bloggers.</p>
<br />Posted in Dynamics GP Tagged: General Ledger, GP Reports code, GP table information <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/victoriayudin.wordpress.com/298/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/victoriayudin.wordpress.com/298/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/victoriayudin.wordpress.com/298/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/victoriayudin.wordpress.com/298/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/victoriayudin.wordpress.com/298/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/victoriayudin.wordpress.com/298/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/victoriayudin.wordpress.com/298/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/victoriayudin.wordpress.com/298/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/victoriayudin.wordpress.com/298/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/victoriayudin.wordpress.com/298/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/victoriayudin.wordpress.com/298/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/victoriayudin.wordpress.com/298/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/victoriayudin.wordpress.com/298/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/victoriayudin.wordpress.com/298/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=victoriayudin.com&#038;blog=4884873&#038;post=298&#038;subd=victoriayudin&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://victoriayudin.com/2008/10/13/dynamics-gp-gl-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>
