<?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</title>
	<atom:link href="http://victoriayudin.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://victoriayudin.com</link>
	<description>Ramblings and musings of a Dynamics GP MVP</description>
	<lastBuildDate>Wed, 01 Sep 2010 08:22:13 +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://s2.wp.com/i/buttonw-com.png</url>
		<title>Victoria Yudin</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 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[GP Reports code]]></category>
		<category><![CDATA[GP SQL scripts]]></category>
		<category><![CDATA[POP SQL code]]></category>
		<category><![CDATA[Payables SQL code]]></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. ~~~~~ CREATE [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=victoriayudin.com&amp;blog=4884873&amp;post=2931&amp;subd=victoriayudin&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p style="text-align:justify;"><a href="http://victoriayudin.files.wordpress.com/2010/09/shoppingcart.jpg"><img class="alignright size-thumbnail wp-image-2940" title="empty cart" src="http://victoriayudin.files.wordpress.com/2010/09/shoppingcart-e1283329105252.jpg?w=111&#038;h=96" alt="" width="111" height="96" /></a>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.</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>

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

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

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/'>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/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&amp;blog=4884873&amp;post=2931&amp;subd=victoriayudin&amp;ref=&amp;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>7</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/17a8ce996aec3d35caf943487b6956a5?s=96&#38;d=identicon" medium="image">
			<media:title type="html">Victoria</media:title>
		</media:content>

		<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>
	</item>
		<item>
		<title>5 questions to answer when writing a report spec</title>
		<link>http://victoriayudin.com/2010/08/31/5-questions-to-answer-when-writing-a-report-spec/</link>
		<comments>http://victoriayudin.com/2010/08/31/5-questions-to-answer-when-writing-a-report-spec/#comments</comments>
		<pubDate>Tue, 31 Aug 2010 18:01:31 +0000</pubDate>
		<dc:creator>Victoria Yudin</dc:creator>
				<category><![CDATA[Dynamics GP]]></category>
		<category><![CDATA[MSDynamicsWorld]]></category>

		<guid isPermaLink="false">http://victoriayudin.com/?p=2907</guid>
		<description><![CDATA[Are you a Dynamics GP user who needs to request a report? Or a consultant working on a report specification for Dynamics GP data? Anyone that needs or creates reports for Dynamics GP can benefit by knowing the Five Questions You Need to Answer When Creating a Microsoft Dynamics GP Report Specification. Filed under: Dynamics GP Tagged: Dynamics [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=victoriayudin.com&amp;blog=4884873&amp;post=2907&amp;subd=victoriayudin&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p style="text-align:justify;"><a href="http://victoriayudin.files.wordpress.com/2010/08/questionmark.jpg"><img class="alignleft size-thumbnail wp-image-2917" title="question mark" src="http://victoriayudin.files.wordpress.com/2010/08/questionmark.jpg?w=96&#038;h=96" alt="" width="96" height="96" /></a><br />
Are you a Dynamics GP user who needs to request a report? Or a consultant working on a report specification for Dynamics GP data? Anyone that needs or creates reports for Dynamics GP can benefit by knowing the <a title="Five Questions You Need to Answer When Creating a Microsoft Dynamics GP Report Specification" href="http://msdynamicsworld.com/story/accounting/five-questions-you-need-answer-when-creating-microsoft-dynamics-gp-report-specifica" target="_blank">Five Questions You Need to Answer When Creating a Microsoft Dynamics GP Report Specification</a>.</p>
<br />Filed under: <a href='http://victoriayudin.com/category/dynamics-gp/'>Dynamics GP</a> Tagged: <a href='http://victoriayudin.com/tag/dynamics-gp/'>Dynamics GP</a>, <a href='http://victoriayudin.com/tag/msdynamicsworld/'>MSDynamicsWorld</a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/victoriayudin.wordpress.com/2907/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/victoriayudin.wordpress.com/2907/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/victoriayudin.wordpress.com/2907/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/victoriayudin.wordpress.com/2907/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/victoriayudin.wordpress.com/2907/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/victoriayudin.wordpress.com/2907/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/victoriayudin.wordpress.com/2907/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/victoriayudin.wordpress.com/2907/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/victoriayudin.wordpress.com/2907/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/victoriayudin.wordpress.com/2907/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/victoriayudin.wordpress.com/2907/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/victoriayudin.wordpress.com/2907/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/victoriayudin.wordpress.com/2907/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/victoriayudin.wordpress.com/2907/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=victoriayudin.com&amp;blog=4884873&amp;post=2907&amp;subd=victoriayudin&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://victoriayudin.com/2010/08/31/5-questions-to-answer-when-writing-a-report-spec/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/17a8ce996aec3d35caf943487b6956a5?s=96&#38;d=identicon" medium="image">
			<media:title type="html">Victoria</media:title>
		</media:content>

		<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>
	</item>
		<item>
		<title>SQL view for asset account numbers in Dynamics GP</title>
		<link>http://victoriayudin.com/2010/08/10/sql-view-for-asset-account-numbers-in-dynamics-gp/</link>
		<comments>http://victoriayudin.com/2010/08/10/sql-view-for-asset-account-numbers-in-dynamics-gp/#comments</comments>
		<pubDate>Tue, 10 Aug 2010 10:38:30 +0000</pubDate>
		<dc:creator>Victoria Yudin</dc:creator>
				<category><![CDATA[Dynamics GP]]></category>
		<category><![CDATA[Fixed Assets SQL code]]></category>
		<category><![CDATA[GP Reports code]]></category>
		<category><![CDATA[GP SQL scripts]]></category>
		<category><![CDATA[Fixed Assets]]></category>
		<category><![CDATA[GP SQL view]]></category>
		<category><![CDATA[SQL code]]></category>

		<guid isPermaLink="false">http://victoriayudin.com/?p=2888</guid>
		<description><![CDATA[Want to see all the account numbers set up for all your Fixed Assets? You can do this in SmartList, but SmartList is sometimes limiting when you want to do complex searches. Here is a view that will return all the account numbers assigned for each asset in Dynamics GP. ~~~~~ CREATE VIEW view_Asset_Accounts AS /******************************************************************* view_Asset_Accounts [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=victoriayudin.com&amp;blog=4884873&amp;post=2888&amp;subd=victoriayudin&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Want to see all the account numbers set up for all your Fixed Assets? You can do this in SmartList, but SmartList is sometimes limiting when you want to do complex searches. Here is a view that will return all the account numbers assigned for each asset in Dynamics GP.</p>
<p style="text-align:center;"><span style="color:#888888;">~~~~~</span></p>
<pre>CREATE VIEW view_Asset_Accounts
AS

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

select	F.ASSETID Asset_ID,
		F.ASSETIDSUF Suffix,
		F.ASSETDESC Desciption,
		F.ASSETCLASSID Asset_Class,
		F.Physical_Location_ID,
		G1.ACTNUMST Depreciation_Expense,
		G2.ACTNUMST Depreciation_Reserve,
		G3.ACTNUMST Prior_Yr_Depreciation,
		G4.ACTNUMST Asset_Cost,
		G5.ACTNUMST Proceeds,
		G6.ACTNUMST Recognized_Gain_Loss,
		G7.ACTNUMST Non_Recognized_Gain_Loss,
		G8.ACTNUMST Clearing_Account

from FA00100 F
left outer join FA00400 A
	on F.ASSETINDEX = A.ASSETINDEX
left outer join GL00105 G1
	on A.DEPREXPACCTINDX = G1.ACTINDX
left outer join GL00105 G2
	on A.DEPRRESVACCTINDX = G2.ACTINDX
left outer join GL00105 G3
	on A.PRIORYRDEPRACCTINDX = G3.ACTINDX
left outer join GL00105 G4
	on A.ASSETCOSTACCTINDX = G4.ACTINDX
left outer join GL00105 G5
	on A.PROCEEDSACCTINDX = G5.ACTINDX
left outer join GL00105 G6
	on A.RECGAINLOSSACCTINDX = G6.ACTINDX
left outer join GL00105 G7
	on A.NONRECGAINLOSSACCTINDX = G7.ACTINDX
left outer join GL00105 G8
	on A.CLEARINGACCTINDX = G8.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 **/
GO
GRANT SELECT ON view_Asset_Accounts TO DYNGRP
</span></pre>
<p style="text-align:center;"><span style="color:#888888;">~~~~~</span></p>
<p>For more Dynamics GP SQL code 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/fixed-assets-sql-code/'>Fixed Assets 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/fixed-assets/'>Fixed Assets</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/sql-code/'>SQL code</a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/victoriayudin.wordpress.com/2888/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/victoriayudin.wordpress.com/2888/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/victoriayudin.wordpress.com/2888/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/victoriayudin.wordpress.com/2888/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/victoriayudin.wordpress.com/2888/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/victoriayudin.wordpress.com/2888/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/victoriayudin.wordpress.com/2888/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/victoriayudin.wordpress.com/2888/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/victoriayudin.wordpress.com/2888/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/victoriayudin.wordpress.com/2888/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/victoriayudin.wordpress.com/2888/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/victoriayudin.wordpress.com/2888/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/victoriayudin.wordpress.com/2888/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/victoriayudin.wordpress.com/2888/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=victoriayudin.com&amp;blog=4884873&amp;post=2888&amp;subd=victoriayudin&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://victoriayudin.com/2010/08/10/sql-view-for-asset-account-numbers-in-dynamics-gp/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/17a8ce996aec3d35caf943487b6956a5?s=96&#38;d=identicon" medium="image">
			<media:title type="html">Victoria</media:title>
		</media:content>
	</item>
		<item>
		<title>SQL view for Inventory Price Levels in Dynamics GP</title>
		<link>http://victoriayudin.com/2010/08/09/sql-view-for-inventory-price-levels-in-dynamics-gp/</link>
		<comments>http://victoriayudin.com/2010/08/09/sql-view-for-inventory-price-levels-in-dynamics-gp/#comments</comments>
		<pubDate>Mon, 09 Aug 2010 11:56:20 +0000</pubDate>
		<dc:creator>Victoria Yudin</dc:creator>
				<category><![CDATA[Dynamics GP]]></category>
		<category><![CDATA[GP Reports code]]></category>
		<category><![CDATA[GP SQL scripts]]></category>
		<category><![CDATA[Inventory SQL code]]></category>
		<category><![CDATA[GP SQL view]]></category>
		<category><![CDATA[Inventory]]></category>
		<category><![CDATA[SQL code]]></category>

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

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

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

FROM   IV00108 IV

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

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

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

		<guid isPermaLink="false">http://victoriayudin.com/?p=2829</guid>
		<description><![CDATA[Since I have posted a lot of Dynamics GP table information and SQL code, I often get asked the question &#8220;what table holds ____ &#8220;? Sometimes I just know the answer off the top of my head (yeah, I think that&#8217;s scary, too), but once in a while I have to look it up. I have various [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=victoriayudin.com&amp;blog=4884873&amp;post=2829&amp;subd=victoriayudin&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Since I have posted a lot of Dynamics GP table information and SQL code, I often get asked the question &#8220;what table holds ____ &#8220;? Sometimes I just know the answer off the top of my head (yeah, I think that&#8217;s scary, too), but once in a while I have to look it up. I have various ways of doing this, sometimes it involves glancing through the list of tables, other times I have used the <a title="Support Debugging Tool new build released" href="http://victoriayudin.com/2010/05/17/support-debugging-tool-new-build-released/" target="_blank">Support Debugging Tool</a> created by <a title="David Musgrave" href="http://www.microsoft.com/asia/css/peoplestories/david.aspx" target="_blank">David Musgrave</a>. </p>
<p>Now there is another great resource for this provided to us again by David Musgrave. You can read all about it in David&#8217;s post on <a title="Getting Table and Field Data out of Dexterity Dictionaries" href="http://blogs.msdn.com/b/developingfordynamicsgp/archive/2010/07/07/getting-table-and-field-data-out-of-dexterity-dictionaries.aspx" target="_blank">Getting Table and Field Data out of Dexterity Dictionaries</a>, however I thought I would take you through an example of how to use this. This example assumes that you have already installed the <a title="Support Debugging Tool" href="http://blogs.msdn.com/developingfordynamicsgp/archive/2008/07/30/support-debugging-tool-for-microsoft-dynamics-gp.aspx" target="_blank">Support Debugging Tool</a> - if you have not, that&#8217;s your first step. Now to our example (I am using GP 2010 for this, but it should work the same for GP 10.0):</p>
<ul>
<li>
<div style="text-align:justify;padding-bottom:3px;">Log into GP as &#8216;sa&#8217;. (Yes, there are workarounds to allow not having to use &#8216;sa&#8217;, but that&#8217;s not what this post is about.)</div>
</li>
<li>
<div style="text-align:justify;padding-bottom:3px;">Open the Support Debugging Tool by clicking <em>Ctrl+D</em> or navigating to <em>GP &gt; Tools &gt; Support Debugging Tool</em>.</div>
</li>
<li>
<div style="text-align:justify;padding-bottom:3px;">If you have not done so yet, turn on the Advanced Mode features by going to <em>Options &gt; Dex.ini Settings</em> and checking the box for <em>Enable Debugger Advanced Mode Features</em> towards the bottom of the window:<a href="http://victoriayudin.files.wordpress.com/2010/07/res01.png"><img class="aligncenter size-full wp-image-2831" title="res01" src="http://victoriayudin.files.wordpress.com/2010/07/res01.png?w=450&#038;h=518" alt="" width="450" height="518" /></a></div>
</li>
<li>
<div style="text-align:justify;padding-bottom:3px;">Click <em>OK</em> to get back to the main Support Debugging Tool window.</div>
</li>
<li>
<div style="text-align:justify;padding-bottom:3px;">Go to <em>Options &gt; Runtime Execute</em> to open the Runtime Execute window. (If you have a System Password setup, and everyone should, you will need to type it in.)</div>
</li>
<li>
<div style="text-align:justify;padding-bottom:3px;">Copy and paste the code from <a title="Getting Table and Field Data out of Dexterity Dictionaries" href="http://blogs.msdn.com/b/developingfordynamicsgp/archive/2010/07/07/getting-table-and-field-data-out-of-dexterity-dictionaries.aspx" target="_blank">David&#8217;s post</a> and change the <em>Product</em> to Microsoft Dynamics GP:<a href="http://victoriayudin.files.wordpress.com/2010/07/res02.png"><img class="aligncenter size-full wp-image-2835" title="res02" src="http://victoriayudin.files.wordpress.com/2010/07/res02.png?w=450&#038;h=389" alt="" width="450" height="389" /></a></div>
</li>
<li>
<div style="text-align:justify;padding-bottom:3px;">Click <em>Execute</em> in the bottom right corner.</div>
</li>
<li>
<div style="text-align:justify;padding-bottom:3px;">You will get a pop up window letting you know that two files called TABLES.TXT and FIELDS.TXT are about to be created in your <em>GP\Data</em> folder. Click <em>Yes</em> to continue. Once done you will get a message letting you know how many tables and fields were exported:<a href="http://victoriayudin.files.wordpress.com/2010/07/res03.png"><img class="aligncenter size-full wp-image-2838" title="res03" src="http://victoriayudin.files.wordpress.com/2010/07/res03.png?w=450&#038;h=207" alt="" width="450" height="207" /></a></div>
</li>
<li>
<div style="text-align:justify;padding-bottom:3px;">If you want to save this code for use in the future, enter a<em> Script ID</em> and <em>Script Name</em> at the top of the Runtime Execute window and click <em>Save</em>. Otherwise, you can just close this window and choose to <em>Discard</em> your changes.</div>
</li>
<li>
<div style="text-align:justify;padding-bottom:3px;">Now you have two text files with your data. The easiest thing to do is open Excel and open one of the files, this will automatically open the Text Import Wizard. In my experience you can just click <em>Finish</em> on the very first step and Excel will do the rest.</div>
</li>
<li>
<div style="text-align:justify;padding-bottom:3px;">Repeat the process for the second file, save them in Excel format and now you have searchable files of the tables and fields for your GP installation readily available.</div>
</li>
<li>
<div style="text-align:justify;padding-bottom:3px;">David has provided samples of the TABLES.TXT and FIELDS.TXT files in <a title="Getting Table and Field Data out of Dexterity Dictionaries" href="http://blogs.msdn.com/b/developingfordynamicsgp/archive/2010/07/07/getting-table-and-field-data-out-of-dexterity-dictionaries.aspx" target="_blank">his post</a> so that you can take a look at what kind of data you&#8217;d be getting. One huge benefit of going through the steps above instead of just using the samples provided is that any ISV products you have installed will be included when you run this on your system.</div>
</li>
</ul>
<p style="text-align:justify;">I would like to thank David for making this available to all of us!</p>
<br />Filed under: <a href='http://victoriayudin.com/category/dynamics-gp/'>Dynamics GP</a> Tagged: <a href='http://victoriayudin.com/tag/dynamics-gp/'>Dynamics GP</a>, <a href='http://victoriayudin.com/tag/gp-table-information/'>GP table information</a>, <a href='http://victoriayudin.com/tag/support-debugging-tool/'>Support Debugging Tool</a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/victoriayudin.wordpress.com/2829/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/victoriayudin.wordpress.com/2829/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/victoriayudin.wordpress.com/2829/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/victoriayudin.wordpress.com/2829/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/victoriayudin.wordpress.com/2829/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/victoriayudin.wordpress.com/2829/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/victoriayudin.wordpress.com/2829/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/victoriayudin.wordpress.com/2829/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/victoriayudin.wordpress.com/2829/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/victoriayudin.wordpress.com/2829/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/victoriayudin.wordpress.com/2829/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/victoriayudin.wordpress.com/2829/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/victoriayudin.wordpress.com/2829/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/victoriayudin.wordpress.com/2829/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=victoriayudin.com&amp;blog=4884873&amp;post=2829&amp;subd=victoriayudin&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://victoriayudin.com/2010/07/23/new-resource-to-find-dynamics-gp-table-and-field-information/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/17a8ce996aec3d35caf943487b6956a5?s=96&#38;d=identicon" medium="image">
			<media:title type="html">Victoria</media:title>
		</media:content>

		<media:content url="http://victoriayudin.files.wordpress.com/2010/07/res01.png" medium="image">
			<media:title type="html">res01</media:title>
		</media:content>

		<media:content url="http://victoriayudin.files.wordpress.com/2010/07/res02.png" medium="image">
			<media:title type="html">res02</media:title>
		</media:content>

		<media:content url="http://victoriayudin.files.wordpress.com/2010/07/res03.png" medium="image">
			<media:title type="html">res03</media:title>
		</media:content>
	</item>
		<item>
		<title>Renaming tables in Crystal Reports</title>
		<link>http://victoriayudin.com/2010/07/20/renaming-tables-in-crystal-reports/</link>
		<comments>http://victoriayudin.com/2010/07/20/renaming-tables-in-crystal-reports/#comments</comments>
		<pubDate>Tue, 20 Jul 2010 13:23:59 +0000</pubDate>
		<dc:creator>Victoria Yudin</dc:creator>
				<category><![CDATA[Crystal Reports]]></category>
		<category><![CDATA[Crystal tips for GP]]></category>
		<category><![CDATA[GP Reports Viewer]]></category>

		<guid isPermaLink="false">http://victoriayudin.com/?p=2797</guid>
		<description><![CDATA[From the May 2010 GP Reports Viewer newsletter comes a tip for renaming the tables (or views or stored procedures) on Crystal Reports. Some may ask why this in needed &#8211; I actually use this quite a bit in the following scenario. I often find that I am using one report as a template for another [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=victoriayudin.com&amp;blog=4884873&amp;post=2797&amp;subd=victoriayudin&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p style="text-align:justify;"><a href="http://victoriayudin.files.wordpress.com/2010/07/magic-hat-man.jpg"><img class="alignleft size-full wp-image-2799" title="magician" src="http://victoriayudin.files.wordpress.com/2010/07/magic-hat-man.jpg?w=180&#038;h=180" alt="" width="180" height="180" /></a>From the <a title="May 2010 GP Reports Viewer newsletter" href="http://www.flex-solutions.com/newsletters/201005.html" target="_blank">May 2010 GP Reports Viewer newsletter</a> comes a tip for renaming the tables (or views or stored procedures) on Crystal Reports. Some may ask why this in needed &#8211; I actually use this quite a bit in the following scenario.</p>
<p style="text-align:justify;">I often find that I am using one report as a template for another when working with Dynamics GP tables because the table structure is the same for many work, open and history tables. For example, if I am creating two versions of an SOP invoice &#8211; unposted and posted &#8211; most of the tables and fields are the same except for the two main tables. In that case, I just need to change SOP10100 to SOP30200 and SOP10200 to SOP30300. This is pretty straight forward to do in Crystal, however the name of the changed tables will still show with the original name almost everywhere, which can be quite confusing, especially when others may be working on the reports after you are done with them. You can change the display name of any table, view or stored procedure on a Crystal Report using the steps below.</p>
<p style="text-align:justify;">Let&#8217;s start at the beginning. I have an SOP Unposted Transaction report that pulls from the following tables, shown in Crystal&#8217;s Field Explorer:<a href="http://victoriayudin.files.wordpress.com/2010/07/rename-tables-01.png"><img class="size-full wp-image-2798 aligncenter" title="rename tables 01" src="http://victoriayudin.files.wordpress.com/2010/07/rename-tables-01.png?w=176&#038;h=181" alt="" width="176" height="181" /></a></p>
<p style="text-align:justify;">I update the tables by going to<em> Database &gt; Set Datasouce Location</em>, selecting the table I want to change under <em>Current Data Source</em>, selecting the table to replace it with under <em>Replace with</em> and clicking <em>Update:</em> <a href="http://victoriayudin.files.wordpress.com/2010/07/rename-tables-02.png"><img class="aligncenter size-full wp-image-2805" title="rename tables 02" src="http://victoriayudin.files.wordpress.com/2010/07/rename-tables-02.png?w=450&#038;h=382" alt="" width="450" height="382" /></a></p>
<p>I repeat these steps for every table I need to change, however the list at the top (under <em>Current Data Source</em>) looks unchanged. Only if I expand the <em>Properties</em> for each table will I see the actual table name:<a href="http://victoriayudin.files.wordpress.com/2010/07/rename-tables-03.png"><img class="aligncenter size-full wp-image-2806" title="rename tables 03" src="http://victoriayudin.files.wordpress.com/2010/07/rename-tables-03.png?w=450&#038;h=199" alt="" width="450" height="199" /></a></p>
<p>In Field Explorer I still see the old table names. Very confusing, especially when I come back and work on this months or years after the fact. So how do I change this? Here are the steps:</p>
<p>Open the Database Expert (<em>Database &gt; Database Expert</em>) and find the table in the list on the right under <em>Selected Tables</em>:<a href="http://victoriayudin.files.wordpress.com/2010/07/rename-tables-04.png"><img class="aligncenter size-full wp-image-2809" title="rename tables 04" src="http://victoriayudin.files.wordpress.com/2010/07/rename-tables-04.png?w=197&#038;h=163" alt="" width="197" height="163" /></a></p>
<p>Right click on the table, choose <em>Rename</em>:<a href="http://victoriayudin.files.wordpress.com/2010/07/rename-tables-05.png"><img class="aligncenter size-full wp-image-2810" title="rename tables 05" src="http://victoriayudin.files.wordpress.com/2010/07/rename-tables-05.png?w=295&#038;h=169" alt="" width="295" height="169" /></a></p>
<p style="text-align:justify;">Type in the new table name:<a href="http://victoriayudin.files.wordpress.com/2010/07/rename-tables-06.png"><img class="aligncenter size-full wp-image-2811" title="rename tables 06" src="http://victoriayudin.files.wordpress.com/2010/07/rename-tables-06.png?w=191&#038;h=171" alt="" width="191" height="171" /></a></p>
<p style="text-align:justify;">Click <em>OK</em> when done. You will see the updated names in Field Explorer immediately:<a href="http://victoriayudin.files.wordpress.com/2010/07/rename-tables-07.png"><img class="aligncenter size-full wp-image-2812" title="rename tables 07" src="http://victoriayudin.files.wordpress.com/2010/07/rename-tables-07.png?w=200&#038;h=179" alt="" width="200" height="179" /></a></p>
<p>If you would like to see more tips like this, take a look at our <a title="GP Reports Viewer newsletter archive" href="http://www.flex-solutions.com/news.html" target="_blank">GP Reports Viewer newsletter archive</a>. We have recently added a section for SSRS tips to the newsletter, so take a peek at those if you are starting to work with SSRS. If you are looking to print Crystal and SSRS reports in Dynamics GP, check out our <a title="GP Reports Viewer" href="http://www.flex-solutions.com/gpreports.html" target="_blank">GP Reports Viewer</a>. We have <a title="GP Reports Viewer demo videos" href="http://www.flex-solutions.com/demos.html" target="_blank">demo videos</a> and <a title="GP Reports Viewer downloads" href="http://www.flex-solutions.com/downloads.aspx" target="_blank">fully functional downloads</a> available.</p>
<br />Filed under: <a href='http://victoriayudin.com/category/crystal-reports/'>Crystal Reports</a>, <a href='http://victoriayudin.com/category/gp-reports-code/crystal-tips-for-gp/'>Crystal tips for GP</a> Tagged: <a href='http://victoriayudin.com/tag/crystal-reports/'>Crystal Reports</a>, <a href='http://victoriayudin.com/tag/gp-reports-viewer/'>GP Reports Viewer</a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/victoriayudin.wordpress.com/2797/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/victoriayudin.wordpress.com/2797/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/victoriayudin.wordpress.com/2797/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/victoriayudin.wordpress.com/2797/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/victoriayudin.wordpress.com/2797/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/victoriayudin.wordpress.com/2797/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/victoriayudin.wordpress.com/2797/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/victoriayudin.wordpress.com/2797/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/victoriayudin.wordpress.com/2797/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/victoriayudin.wordpress.com/2797/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/victoriayudin.wordpress.com/2797/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/victoriayudin.wordpress.com/2797/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/victoriayudin.wordpress.com/2797/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/victoriayudin.wordpress.com/2797/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=victoriayudin.com&amp;blog=4884873&amp;post=2797&amp;subd=victoriayudin&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://victoriayudin.com/2010/07/20/renaming-tables-in-crystal-reports/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/17a8ce996aec3d35caf943487b6956a5?s=96&#38;d=identicon" medium="image">
			<media:title type="html">Victoria</media:title>
		</media:content>

		<media:content url="http://victoriayudin.files.wordpress.com/2010/07/magic-hat-man.jpg" medium="image">
			<media:title type="html">magician</media:title>
		</media:content>

		<media:content url="http://victoriayudin.files.wordpress.com/2010/07/rename-tables-01.png" medium="image">
			<media:title type="html">rename tables 01</media:title>
		</media:content>

		<media:content url="http://victoriayudin.files.wordpress.com/2010/07/rename-tables-02.png" medium="image">
			<media:title type="html">rename tables 02</media:title>
		</media:content>

		<media:content url="http://victoriayudin.files.wordpress.com/2010/07/rename-tables-03.png" medium="image">
			<media:title type="html">rename tables 03</media:title>
		</media:content>

		<media:content url="http://victoriayudin.files.wordpress.com/2010/07/rename-tables-04.png" medium="image">
			<media:title type="html">rename tables 04</media:title>
		</media:content>

		<media:content url="http://victoriayudin.files.wordpress.com/2010/07/rename-tables-05.png" medium="image">
			<media:title type="html">rename tables 05</media:title>
		</media:content>

		<media:content url="http://victoriayudin.files.wordpress.com/2010/07/rename-tables-06.png" medium="image">
			<media:title type="html">rename tables 06</media:title>
		</media:content>

		<media:content url="http://victoriayudin.files.wordpress.com/2010/07/rename-tables-07.png" medium="image">
			<media:title type="html">rename tables 07</media:title>
		</media:content>
	</item>
		<item>
		<title>SQL view to show yearly totals for Dynamics GP Vendors</title>
		<link>http://victoriayudin.com/2010/07/15/sql-view-to-show-yearly-totals-for-dynamics-gp-vendors/</link>
		<comments>http://victoriayudin.com/2010/07/15/sql-view-to-show-yearly-totals-for-dynamics-gp-vendors/#comments</comments>
		<pubDate>Thu, 15 Jul 2010 15:31:21 +0000</pubDate>
		<dc:creator>Victoria Yudin</dc:creator>
				<category><![CDATA[Dynamics GP]]></category>
		<category><![CDATA[GP Reports code]]></category>
		<category><![CDATA[GP SQL scripts]]></category>
		<category><![CDATA[Payables SQL code]]></category>
		<category><![CDATA[GP SQL view]]></category>
		<category><![CDATA[Payables]]></category>
		<category><![CDATA[SQL code]]></category>

		<guid isPermaLink="false">http://victoriayudin.com/?p=2777</guid>
		<description><![CDATA[Below is a view that will show yearly totals for your Dynamics GP Vendors. It&#8217;s something we have used internally for a while, but I have recently gotten a few requests for it, so I cleaned it up and am sharing it.  This will show yearly totals for calendar years. If you want to use fiscal years [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=victoriayudin.com&amp;blog=4884873&amp;post=2777&amp;subd=victoriayudin&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p style="text-align:justify;">Below is a view that will show yearly totals for your Dynamics GP Vendors. It&#8217;s something we have used internally for a while, but I have recently gotten a few requests for it, so I cleaned it up and am sharing it. </p>
<p style="text-align:justify;">This will show yearly totals for calendar years. If you want to use fiscal years instead, change the WHERE clause at the bottom to the following:<br />
<code>WHERE VT.HISTTYPE = 1</code></p>
<p style="text-align:justify;"> </p>
<pre>CREATE VIEW view_Vendor_Yearly_Totals
AS

<span style="color:#339966;">/***************************************************************</span>
view_Vendor_Yearly_Totals
Shows totals for all AP vendors
Created Jul 15, 2010 by Victoria Yudin - Flexible Solutions, Inc.
For updates see http://victoriayudin.com/gp-reports/
Results shown for calendar months and functionaly currency.
<span style="color:#339966;">***************************************************************/
</span>
SELECT VT.VENDORID Vendor_ID,
       VM.VENDNAME Vendor_Name,
       VM.VNDCLSID Class_ID,
       case VM.VENDSTTS
          when 1 then 'Active'
          when 2 then 'Inactive'
          when 3 then 'Temporary'
          end Vendor_Status,
       case VM.TEN99TYPE
          when 1 then 'Not a 1099 Vendor'
          when 2 then 'Dividend'
          when 3 then 'Interest'
          when 4 then 'Miscellaneous'
          end [1099_Type],
       VM.PYMTRMID Payment_Terms_ID,
       VT.YEAR1 [Year],
       sum(VT.AMBLDLIF) Amount_Billed,
       sum(VT.AMTPDLIF) Amount_Paid,
       sum(VT.TEN99ALIF) [1099_Amount],
       sum(VT.FINCHLIF) Finance_Charges,
       sum(VT.WROFSLIF) Writeoffs,
       sum(VT.RTRNSLIF) [Returns],
       sum(VT.TRDTKLIF) Trade_Discounts,
       sum(VT.DISAVLIF) Term_Discounts_Avail,
       sum(VT.DISTKNLF) Term_Discounts_Taken,
       sum(VT.DISLSTLF) Term_Discounts_Lost,
       sum(VT.Withholding_LIFE) Withholding,
       sum(VT.NOINVLIF) Num_Of_Invoices,
       sum(VT.NFNCHLIF) Num_Of_Finance_Charges,
       VM.ADDRESS1 Address_1,
       VM.ADDRESS2 Address_2,
       VM.ADDRESS3 Address_3,
       VM.CITY City,
       VM.[STATE] [State],
       VM.ZIPCODE Zip_Code,
       VM.COUNTRY Country,
       VM.TXIDNMBR Tax_ID

FROM PM00202 VT

INNER JOIN PM00200 VM
       ON VT.VENDORID = VM.VENDORID

WHERE VT.HISTTYPE = 0

GROUP BY VT.VENDORID, VM.VENDNAME, VM.VNDCLSID,
         VM.VENDSTTS, VM.TEN99TYPE, VM.PYMTRMID,
         VT.YEAR1, VM.ADDRESS1, VM.ADDRESS2,
         VM.ADDRESS3, VM.CITY, VM.[STATE],
         VM.ZIPCODE, VM.COUNTRY, VM.TXIDNMBR

<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_Vendor_Yearly_Totals TO DYNGRP</pre>
<p style="text-align:justify;"><em>Disclaimer: I tested this on limited data, if you find an issue or have a suggestion for improvement, please let me know and I will post the update here for everyone.</em></p>
<br />Filed under: <a href='http://victoriayudin.com/category/dynamics-gp/'>Dynamics GP</a>, <a href='http://victoriayudin.com/category/gp-reports-code/'>GP Reports code</a>, <a href='http://victoriayudin.com/category/dynamics-gp/gp-sql-scripts/'>GP SQL scripts</a>, <a href='http://victoriayudin.com/category/gp-reports-code/payables-sql-code/'>Payables SQL code</a> Tagged: <a href='http://victoriayudin.com/tag/gp-reports-code/'>GP Reports code</a>, <a href='http://victoriayudin.com/tag/gp-sql-view/'>GP SQL view</a>, <a href='http://victoriayudin.com/tag/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/2777/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/victoriayudin.wordpress.com/2777/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/victoriayudin.wordpress.com/2777/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/victoriayudin.wordpress.com/2777/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/victoriayudin.wordpress.com/2777/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/victoriayudin.wordpress.com/2777/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/victoriayudin.wordpress.com/2777/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/victoriayudin.wordpress.com/2777/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/victoriayudin.wordpress.com/2777/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/victoriayudin.wordpress.com/2777/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/victoriayudin.wordpress.com/2777/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/victoriayudin.wordpress.com/2777/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/victoriayudin.wordpress.com/2777/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/victoriayudin.wordpress.com/2777/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=victoriayudin.com&amp;blog=4884873&amp;post=2777&amp;subd=victoriayudin&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://victoriayudin.com/2010/07/15/sql-view-to-show-yearly-totals-for-dynamics-gp-vendors/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/17a8ce996aec3d35caf943487b6956a5?s=96&#38;d=identicon" medium="image">
			<media:title type="html">Victoria</media:title>
		</media:content>
	</item>
		<item>
		<title>The Dynamics GP Cookbook is here</title>
		<link>http://victoriayudin.com/2010/07/14/the-dynamics-gp-cookbook-is-here/</link>
		<comments>http://victoriayudin.com/2010/07/14/the-dynamics-gp-cookbook-is-here/#comments</comments>
		<pubDate>Wed, 14 Jul 2010 10:36:34 +0000</pubDate>
		<dc:creator>Victoria Yudin</dc:creator>
				<category><![CDATA[Dynamics GP]]></category>

		<guid isPermaLink="false">http://victoriayudin.com/?p=2767</guid>
		<description><![CDATA[Mark Polino&#8217;s book, titled Microsoft Dynamics GP 2010 Cookbook, is out ahead of schedule! I think that&#8217;s the first time I have ever heard of something like that happening. I&#8217;ve already got my copy and as soon as I get a few minutes I am going to start reading it. In the meantime, you can read a [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=victoriayudin.com&amp;blog=4884873&amp;post=2767&amp;subd=victoriayudin&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><a href="http://victoriayudin.files.wordpress.com/2010/07/cookbook.jpg"><img class="alignleft size-full wp-image-2768" title="Cookbook" src="http://victoriayudin.files.wordpress.com/2010/07/cookbook.jpg?w=84&#038;h=104" alt="" width="84" height="104" /></a>Mark Polino&#8217;s book, titled <a title="Microsoft Dynamics GP 2010 Cookbook" href="http://www.packtpub.com/microsoft-dynamics-gp-2010-cookbook/book?utm_source=victoriayudin.com&amp;utm_medium=bookrev&amp;utm_content=blog&amp;utm_campaign=mdb_003886" target="_blank">Microsoft Dynamics GP 2010 Cookbook</a>, is out ahead of schedule! I think that&#8217;s the first time I have ever heard of something like that happening. I&#8217;ve already got my copy and as soon as I get a few minutes I am going to start reading it. In the meantime, you can <a title="GP Cookbook - sample chapter " href="https://www.packtpub.com/sites/default/files/0424-chapter-2-organizing-dynamics-gp.pdf" target="_blank">read a sample chapter</a> or <a title="Microsoft Dynamics GP 2010 Cookbook" href="http://www.packtpub.com/microsoft-dynamics-gp-2010-cookbook/book?utm_source=victoriayudin.com&amp;utm_medium=bookrev&amp;utm_content=blog&amp;utm_campaign=mdb_003886" target="_blank">get your own copy</a> and start cookin&#8217; with GP.</p>
<br />Filed under: <a href='http://victoriayudin.com/category/dynamics-gp/'>Dynamics GP</a> Tagged: <a href='http://victoriayudin.com/tag/dynamics-gp/'>Dynamics GP</a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/victoriayudin.wordpress.com/2767/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/victoriayudin.wordpress.com/2767/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/victoriayudin.wordpress.com/2767/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/victoriayudin.wordpress.com/2767/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/victoriayudin.wordpress.com/2767/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/victoriayudin.wordpress.com/2767/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/victoriayudin.wordpress.com/2767/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/victoriayudin.wordpress.com/2767/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/victoriayudin.wordpress.com/2767/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/victoriayudin.wordpress.com/2767/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/victoriayudin.wordpress.com/2767/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/victoriayudin.wordpress.com/2767/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/victoriayudin.wordpress.com/2767/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/victoriayudin.wordpress.com/2767/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=victoriayudin.com&amp;blog=4884873&amp;post=2767&amp;subd=victoriayudin&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://victoriayudin.com/2010/07/14/the-dynamics-gp-cookbook-is-here/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/17a8ce996aec3d35caf943487b6956a5?s=96&#38;d=identicon" medium="image">
			<media:title type="html">Victoria</media:title>
		</media:content>

		<media:content url="http://victoriayudin.files.wordpress.com/2010/07/cookbook.jpg" medium="image">
			<media:title type="html">Cookbook</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&amp;blog=4884873&amp;post=2745&amp;subd=victoriayudin&amp;ref=&amp;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&amp;blog=4884873&amp;post=2745&amp;subd=victoriayudin&amp;ref=&amp;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=identicon" medium="image">
			<media:title type="html">Victoria</media:title>
		</media:content>
	</item>
		<item>
		<title>Awesome resources available from Mark Polino</title>
		<link>http://victoriayudin.com/2010/06/17/awesome-resources-available-from-mark-polino/</link>
		<comments>http://victoriayudin.com/2010/06/17/awesome-resources-available-from-mark-polino/#comments</comments>
		<pubDate>Thu, 17 Jun 2010 10:16:05 +0000</pubDate>
		<dc:creator>Victoria Yudin</dc:creator>
				<category><![CDATA[Dynamics GP]]></category>
		<category><![CDATA[GP Reports code]]></category>
		<category><![CDATA[GP SQL scripts]]></category>
		<category><![CDATA[GP SQL view]]></category>
		<category><![CDATA[GP table information]]></category>
		<category><![CDATA[SQL code]]></category>

		<guid isPermaLink="false">http://victoriayudin.com/?p=2728</guid>
		<description><![CDATA[Mark Polino, one of the very first Dynamics GP bloggers and someone who has personally inspired me often with his writing, has done some spring cleaning on his blog. There is a ton of great content, but I would like to point out these two great resources: SQL Scripts - one location with descriptions and links for many [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=victoriayudin.com&amp;blog=4884873&amp;post=2728&amp;subd=victoriayudin&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p style="text-align:justify;"><a href="http://victoriayudin.files.wordpress.com/2010/06/thumbsupguy.jpg"><img class="size-full wp-image-2732 alignright" title="yes!" src="http://victoriayudin.files.wordpress.com/2010/06/thumbsupguy.jpg?w=113&#038;h=113" alt="" width="113" height="113" /></a><a title="Mark Polino's blog" href="http://msdynamicsgp.blogspot.com/" target="_blank">Mark Polino</a>, one of the very first Dynamics GP bloggers and someone who has personally inspired me often with his writing, has done some spring cleaning on his blog. There is a ton of great content, but I would like to point out these two great resources:</p>
<ul type="square">
<li style="text-align:justify;padding-bottom:5px;"><a title="Mark Polino's SQL script list" href="http://cid-bc679914609aa946.office.live.com/view.aspx/Downloads/Dynamic%20GP%20SQL%20Scripts.xlsx?wa=wsignin1.0&amp;sa=510964649" target="_blank">SQL Scripts</a> - one location with descriptions and links for many of the SQL scripts Mark has collected.  I am very proud to say some of these are mine.  <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </li>
<li style="text-align:justify;padding-bottom:5px;"><a title="GP 2010 table reference" href="http://cid-bc679914609aa946.office.live.com/view.aspx/Downloads/GP%5E_2010%5E_Table%5E_Reference.xlsx" target="_blank">The GP 2010 table reference</a> - a really handy Excel listing of all the tables in GP 2010.</li>
</ul>
<br />Filed under: <a href='http://victoriayudin.com/category/dynamics-gp/'>Dynamics GP</a>, <a href='http://victoriayudin.com/category/gp-reports-code/'>GP Reports code</a>, <a href='http://victoriayudin.com/category/dynamics-gp/gp-sql-scripts/'>GP SQL scripts</a> Tagged: <a href='http://victoriayudin.com/tag/dynamics-gp/'>Dynamics GP</a>, <a href='http://victoriayudin.com/tag/gp-reports-code/'>GP Reports code</a>, <a href='http://victoriayudin.com/tag/gp-sql-view/'>GP SQL view</a>, <a href='http://victoriayudin.com/tag/gp-table-information/'>GP table information</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/2728/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/victoriayudin.wordpress.com/2728/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/victoriayudin.wordpress.com/2728/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/victoriayudin.wordpress.com/2728/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/victoriayudin.wordpress.com/2728/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/victoriayudin.wordpress.com/2728/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/victoriayudin.wordpress.com/2728/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/victoriayudin.wordpress.com/2728/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/victoriayudin.wordpress.com/2728/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/victoriayudin.wordpress.com/2728/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/victoriayudin.wordpress.com/2728/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/victoriayudin.wordpress.com/2728/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/victoriayudin.wordpress.com/2728/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/victoriayudin.wordpress.com/2728/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=victoriayudin.com&amp;blog=4884873&amp;post=2728&amp;subd=victoriayudin&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://victoriayudin.com/2010/06/17/awesome-resources-available-from-mark-polino/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/17a8ce996aec3d35caf943487b6956a5?s=96&#38;d=identicon" medium="image">
			<media:title type="html">Victoria</media:title>
		</media:content>

		<media:content url="http://victoriayudin.files.wordpress.com/2010/06/thumbsupguy.jpg" medium="image">
			<media:title type="html">yes!</media:title>
		</media:content>
	</item>
		<item>
		<title>Crystal Reports is not going anywhere</title>
		<link>http://victoriayudin.com/2010/06/02/crystal-reports-is-not-going-anywhere/</link>
		<comments>http://victoriayudin.com/2010/06/02/crystal-reports-is-not-going-anywhere/#comments</comments>
		<pubDate>Wed, 02 Jun 2010 11:38:36 +0000</pubDate>
		<dc:creator>Victoria Yudin</dc:creator>
				<category><![CDATA[Crystal Reports]]></category>
		<category><![CDATA[Dynamics GP]]></category>
		<category><![CDATA[Microsoft]]></category>

		<guid isPermaLink="false">http://victoriayudin.com/?p=2706</guid>
		<description><![CDATA[Are you using Crystal Reports with Dynamics GP? Are you starting to hear rumors that Crystal Reports is not supported with GP anymore? Don&#8217;t worry, Crystal Reports is not going anywhere.  For more on this, take a look at my latest article for MSDynamicsWorld.com, The Good News for Users of Crystal Reports with Microsoft Dynamics GP.  Filed [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=victoriayudin.com&amp;blog=4884873&amp;post=2706&amp;subd=victoriayudin&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p style="text-align:justify;"><a href="http://victoriayudin.files.wordpress.com/2010/06/chat-guys.jpg"><img class="alignleft size-full wp-image-2709" title="think it about" src="http://victoriayudin.files.wordpress.com/2010/06/chat-guys.jpg?w=154&#038;h=115" alt="" width="154" height="115" /></a>Are you using Crystal Reports with Dynamics GP? Are you starting to hear rumors that Crystal Reports is not supported with GP anymore? Don&#8217;t worry, Crystal Reports is not going anywhere. </p>
<p style="text-align:justify;">For more on this, take a look at my latest article for <a title="MSDynamicsWorld.com" href="http://msdynamicsworld.com/" target="_blank">MSDynamicsWorld.com</a>, <a title="The Good News for Users of Crystal Reports with Microsoft Dynamics GP" href="http://msdynamicsworld.com/story/accounting/good-news-users-crystal-reports-microsoft-dynamics-gp" target="_blank">The Good News for Users of Crystal Reports with Microsoft Dynamics GP</a>. </p>
<br />Filed under: <a href='http://victoriayudin.com/category/crystal-reports/'>Crystal Reports</a>, <a href='http://victoriayudin.com/category/dynamics-gp/'>Dynamics GP</a> Tagged: <a href='http://victoriayudin.com/tag/crystal-reports/'>Crystal Reports</a>, <a href='http://victoriayudin.com/tag/dynamics-gp/'>Dynamics GP</a>, <a href='http://victoriayudin.com/tag/microsoft/'>Microsoft</a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/victoriayudin.wordpress.com/2706/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/victoriayudin.wordpress.com/2706/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/victoriayudin.wordpress.com/2706/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/victoriayudin.wordpress.com/2706/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/victoriayudin.wordpress.com/2706/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/victoriayudin.wordpress.com/2706/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/victoriayudin.wordpress.com/2706/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/victoriayudin.wordpress.com/2706/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/victoriayudin.wordpress.com/2706/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/victoriayudin.wordpress.com/2706/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/victoriayudin.wordpress.com/2706/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/victoriayudin.wordpress.com/2706/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/victoriayudin.wordpress.com/2706/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/victoriayudin.wordpress.com/2706/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=victoriayudin.com&amp;blog=4884873&amp;post=2706&amp;subd=victoriayudin&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://victoriayudin.com/2010/06/02/crystal-reports-is-not-going-anywhere/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/17a8ce996aec3d35caf943487b6956a5?s=96&#38;d=identicon" medium="image">
			<media:title type="html">Victoria</media:title>
		</media:content>

		<media:content url="http://victoriayudin.files.wordpress.com/2010/06/chat-guys.jpg" medium="image">
			<media:title type="html">think it about</media:title>
		</media:content>
	</item>
		<item>
		<title>Microsoft Dynamics Top 100 Most Influential People of 2010</title>
		<link>http://victoriayudin.com/2010/05/26/2701/</link>
		<comments>http://victoriayudin.com/2010/05/26/2701/#comments</comments>
		<pubDate>Wed, 26 May 2010 10:10:22 +0000</pubDate>
		<dc:creator>Victoria Yudin</dc:creator>
				<category><![CDATA[Dynamics GP]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Miscellaneous]]></category>
		<category><![CDATA[awards]]></category>

		<guid isPermaLink="false">http://victoriayudin.com/?p=2701</guid>
		<description><![CDATA[Earlier this week DynamicsWorld.co.uk announced their annual Microsoft Dynamics Top 100 Most Influential People. Thanks to your votes I made it to # 51 on this list, joined by many names you will recognize. You can see a short bio for each person on the list by clicking on the heading for the section they are in. Thanks again [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=victoriayudin.com&amp;blog=4884873&amp;post=2701&amp;subd=victoriayudin&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p style="text-align:justify;">Earlier this week <a href="http://www.dynamicsworld.co.uk/" target="_blank">DynamicsWorld.co.uk</a> announced their annual <a title="Microsoft Dynamics Top 100 Most Influential People" href="http://www.dynamicsworld.co.uk/Top-100-List.php">Microsoft Dynamics Top 100 Most Influential People</a>. Thanks to your votes I made it to # 51 on this list, joined by many names you will recognize. You can see a short bio for each person on the list by clicking on the <a title="Numbers 51 through 60" href="http://www.dynamicsworld.co.uk/Numbers-51-through-60.php" target="_blank">heading for the section they are in</a>. Thanks again to all who voted!</p>
<br />Filed under: <a href='http://victoriayudin.com/category/dynamics-gp/'>Dynamics GP</a>, <a href='http://victoriayudin.com/category/microsoft/'>Microsoft</a>, <a href='http://victoriayudin.com/category/miscellaneous/'>Miscellaneous</a> Tagged: <a href='http://victoriayudin.com/tag/awards/'>awards</a>, <a href='http://victoriayudin.com/tag/dynamics-gp/'>Dynamics GP</a>, <a href='http://victoriayudin.com/tag/microsoft/'>Microsoft</a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/victoriayudin.wordpress.com/2701/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/victoriayudin.wordpress.com/2701/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/victoriayudin.wordpress.com/2701/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/victoriayudin.wordpress.com/2701/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/victoriayudin.wordpress.com/2701/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/victoriayudin.wordpress.com/2701/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/victoriayudin.wordpress.com/2701/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/victoriayudin.wordpress.com/2701/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/victoriayudin.wordpress.com/2701/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/victoriayudin.wordpress.com/2701/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/victoriayudin.wordpress.com/2701/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/victoriayudin.wordpress.com/2701/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/victoriayudin.wordpress.com/2701/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/victoriayudin.wordpress.com/2701/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=victoriayudin.com&amp;blog=4884873&amp;post=2701&amp;subd=victoriayudin&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://victoriayudin.com/2010/05/26/2701/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/17a8ce996aec3d35caf943487b6956a5?s=96&#38;d=identicon" medium="image">
			<media:title type="html">Victoria</media:title>
		</media:content>
	</item>
		<item>
		<title>Decisions, decisions</title>
		<link>http://victoriayudin.com/2010/05/18/decisions-decisions/</link>
		<comments>http://victoriayudin.com/2010/05/18/decisions-decisions/#comments</comments>
		<pubDate>Tue, 18 May 2010 11:23:30 +0000</pubDate>
		<dc:creator>Victoria Yudin</dc:creator>
				<category><![CDATA[Dynamics GP]]></category>
		<category><![CDATA[Events]]></category>
		<category><![CDATA[GP Reports Viewer]]></category>
		<category><![CDATA[Decisions 2010]]></category>

		<guid isPermaLink="false">http://victoriayudin.com/?p=2634</guid>
		<description><![CDATA[The new era of trade shows is here. Virtual trade shows. No more leaving the office for a week, trying to work from the road, all to see what&#8217;s happening with Dynamics GP. And no more paying for travel and registration fees.  Decisions 2010, brought to us by MSDynamicsWorld.com, starts tomorrow and is free! There is a [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=victoriayudin.com&amp;blog=4884873&amp;post=2634&amp;subd=victoriayudin&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p style="text-align:center;"><a href="http://victoriayudin.files.wordpress.com/2010/05/decisions.png"><img class="size-full wp-image-2635 aligncenter" title="decisions" src="http://victoriayudin.files.wordpress.com/2010/05/decisions.png?w=324&#038;h=66" alt="" width="324" height="66" /></a></p>
<p style="text-align:justify;">The new era of trade shows is here. Virtual trade shows. No more leaving the office for a week, trying to work from the road, all to see what&#8217;s happening with Dynamics GP. And no more paying for travel and registration fees. </p>
<p style="text-align:justify;"><a title="Decisions 2010" href="http://decisions.msdynamicsworld.com/" target="_blank">Decisions 2010</a>, brought to us by <a title="MSDynamicsWorld" href="http://www.MSDynamicsWorld.com" target="_blank">MSDynamicsWorld.com</a>, starts tomorrow and is free! There is a great list of <a title="Decisions 2010 program" href="http://decisions.msdynamicsworld.com/content/program-schedule" target="_blank">sessions scheduled</a>, including presentations by Dynamics GP MVP&#8217;s <a title="Mariano Gomez" href="http://dynamicsgpblogster.blogspot.com/" target="_blank">Mariano Gomez</a>, <a title="Frank Hamelly " href="http://gp2themax.blogspot.com/" target="_blank">Frank Hamelly</a> and <a title="Mark Polino" href="http://msdynamicsgp.blogspot.com/" target="_blank">Mark Polino</a>.</p>
<p style="text-align:justify;">There will also be an exhibit hall where you can meet sponsors. My company, <a title="Flexible Solutions" href="http://www.flex-solutions.com" target="_blank">Flexible Solutions</a>, will be there to answer any of your questions about our <a title="GP Reports Viewer" href="http://www.flex-solutions.com/gpreports.html" target="_blank">GP Reports Viewer</a> add-on for GP, which lets you run Crystal and SQL Server Reporting Services reports directly from GP. I will be manning our virtual booth both days of the show &#8211; Wednesday May 19 and Thursday May 20, so please stop by and say hello.</p>
<p style="text-align:justify;">See you there!</p>
<br />Filed under: <a href='http://victoriayudin.com/category/dynamics-gp/'>Dynamics GP</a>, <a href='http://victoriayudin.com/category/events/'>Events</a>, <a href='http://victoriayudin.com/category/gp-reports-viewer/'>GP Reports Viewer</a> Tagged: <a href='http://victoriayudin.com/tag/decisions-2010/'>Decisions 2010</a>, <a href='http://victoriayudin.com/tag/dynamics-gp/'>Dynamics GP</a>, <a href='http://victoriayudin.com/tag/gp-reports-viewer/'>GP Reports Viewer</a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/victoriayudin.wordpress.com/2634/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/victoriayudin.wordpress.com/2634/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/victoriayudin.wordpress.com/2634/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/victoriayudin.wordpress.com/2634/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/victoriayudin.wordpress.com/2634/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/victoriayudin.wordpress.com/2634/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/victoriayudin.wordpress.com/2634/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/victoriayudin.wordpress.com/2634/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/victoriayudin.wordpress.com/2634/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/victoriayudin.wordpress.com/2634/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/victoriayudin.wordpress.com/2634/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/victoriayudin.wordpress.com/2634/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/victoriayudin.wordpress.com/2634/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/victoriayudin.wordpress.com/2634/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=victoriayudin.com&amp;blog=4884873&amp;post=2634&amp;subd=victoriayudin&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://victoriayudin.com/2010/05/18/decisions-decisions/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/17a8ce996aec3d35caf943487b6956a5?s=96&#38;d=identicon" medium="image">
			<media:title type="html">Victoria</media:title>
		</media:content>

		<media:content url="http://victoriayudin.files.wordpress.com/2010/05/decisions.png" medium="image">
			<media:title type="html">decisions</media:title>
		</media:content>
	</item>
		<item>
		<title>Support Debugging Tool new build released</title>
		<link>http://victoriayudin.com/2010/05/17/support-debugging-tool-new-build-released/</link>
		<comments>http://victoriayudin.com/2010/05/17/support-debugging-tool-new-build-released/#comments</comments>
		<pubDate>Mon, 17 May 2010 09:50:20 +0000</pubDate>
		<dc:creator>Victoria Yudin</dc:creator>
				<category><![CDATA[Dynamics GP]]></category>
		<category><![CDATA[GP 2010]]></category>
		<category><![CDATA[Support Debugging Tool]]></category>

		<guid isPermaLink="false">http://victoriayudin.com/?p=2614</guid>
		<description><![CDATA[Developed by David Musgrave, known to the entire GP community as the king of all things Dexterity, the Support Debugging Tool for Dynamics GP has been around for quite a while, but I have only recently started to see the benefits of it and I wanted to share one cool feature in some detail. One of [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=victoriayudin.com&amp;blog=4884873&amp;post=2614&amp;subd=victoriayudin&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p style="text-align:justify;">Developed by <a title="David Musgrave" href="http://www.microsoft.com/asia/css/peoplestories/david.aspx" target="_blank">David Musgrave</a>, known to the entire GP community as the king of all things Dexterity, the <a title="Support Debugging Tool for Dynamics GP " href="http://blogs.msdn.com/developingfordynamicsgp/archive/2008/07/30/support-debugging-tool-for-microsoft-dynamics-gp.aspx" target="_blank">Support Debugging Tool for Dynamics GP</a> has been around for quite a while, but I have only recently started to see the benefits of it and I wanted to share one cool feature in some detail.</p>
<p style="text-align:justify;">One of the readers of this blog asked for my help in finding the table that stored the serial numbers of on hand inventory. I looked at <a title="Victoria Yudin's Inventory Tables page" href="http://victoriayudin.com/gp-tables/inventory-tables/" target="_blank">my page listing inventory tables</a> and didn&#8217;t find the table that was needed. I knew the Serial Number Inquiry window in GP shows the serial numbers on hand, but I was not sure what tables this window referenced. So here is what I did:</p>
<ul>
<li>
<div style="text-align:justify;">I installed the Support Debugging Tool for GP 2010, which took about 2 seconds (!) and started up GP 2010.</div>
</li>
<li>
<div style="text-align:justify;">Once in GP 2010, clicking <em>Ctrl+D</em> brings up the Support Debugging Tool. I am a huge fan of using the keyboard as much as I can, so this is great.</div>
</li>
<li>I clicked on <em>Options &gt; Resource Information:</em><em><a href="http://victoriayudin.files.wordpress.com/2010/05/debu01.png"><img class="size-full wp-image-2616 aligncenter" title="debu01" src="http://victoriayudin.files.wordpress.com/2010/05/debu01.png?w=450&#038;h=409" alt="" width="450" height="409" /></a></em></li>
<li style="text-align:justify;">I typed in Serial Number Inquiry into the <em>Display Name</em> field and clicked the <em>Lookup</em> button:<a href="http://victoriayudin.files.wordpress.com/2010/05/debu02.png"><img class="size-full wp-image-2618 aligncenter" title="debu02" src="http://victoriayudin.files.wordpress.com/2010/05/debu02.png?w=450&#038;h=390" alt="" width="450" height="390" /></a></li>
</ul>
<p style="text-align:justify;padding-left:30px;">I could have also used the Lookup button and navigated to the window in the menu, but I happened to have the exact name, so that was faster.</p>
<ul>
<li style="text-align:justify;">This brought up the technical information about this window and enabled the <em>Associated Tables</em> button:<a href="http://victoriayudin.files.wordpress.com/2010/05/debu03.png"><img class="size-full wp-image-2622 aligncenter" title="debu03" src="http://victoriayudin.files.wordpress.com/2010/05/debu03.png?w=450&#038;h=388" alt="" width="450" height="388" /></a></li>
<li style="text-align:justify;">Clicking Associated Tables I saw that this window uses five tables and the one I was looking for was Item Serial Number Master, IV00200:<a href="http://victoriayudin.files.wordpress.com/2010/05/debu04.png"><img class="size-full wp-image-2621 aligncenter" title="debu04" src="http://victoriayudin.files.wordpress.com/2010/05/debu04.png?w=450&#038;h=314" alt="" width="450" height="314" /></a></li>
<li>I promptly updated <a title="Victoria Yudin's Inventory Tables page" href="http://victoriayudin.com/gp-tables/inventory-tables/" target="_blank">my Inventory Tables page</a>.</li>
</ul>
<p style="text-align:justify;">The entire exercise above took just a few minutes. And this is just a small taste of what the Support Debugging Tool can do. A new build of the Support Debugging Tool has just been released with even more features, you can <a title="Support Debugging Tool Build 13 released " href="http://blogs.msdn.com/developingfordynamicsgp/archive/2010/05/13/support-debugging-tool-build-13-released.aspx" target="_blank">read all about it on the Developing for Dynamics GP blog</a>.</p>
<br />Filed under: <a href='http://victoriayudin.com/category/dynamics-gp/'>Dynamics GP</a>, <a href='http://victoriayudin.com/category/dynamics-gp/gp-2010/'>GP 2010</a> Tagged: <a href='http://victoriayudin.com/tag/dynamics-gp/'>Dynamics GP</a>, <a href='http://victoriayudin.com/tag/gp-2010/'>GP 2010</a>, <a href='http://victoriayudin.com/tag/support-debugging-tool/'>Support Debugging Tool</a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/victoriayudin.wordpress.com/2614/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/victoriayudin.wordpress.com/2614/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/victoriayudin.wordpress.com/2614/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/victoriayudin.wordpress.com/2614/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/victoriayudin.wordpress.com/2614/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/victoriayudin.wordpress.com/2614/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/victoriayudin.wordpress.com/2614/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/victoriayudin.wordpress.com/2614/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/victoriayudin.wordpress.com/2614/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/victoriayudin.wordpress.com/2614/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/victoriayudin.wordpress.com/2614/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/victoriayudin.wordpress.com/2614/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/victoriayudin.wordpress.com/2614/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/victoriayudin.wordpress.com/2614/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=victoriayudin.com&amp;blog=4884873&amp;post=2614&amp;subd=victoriayudin&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://victoriayudin.com/2010/05/17/support-debugging-tool-new-build-released/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/17a8ce996aec3d35caf943487b6956a5?s=96&#38;d=identicon" medium="image">
			<media:title type="html">Victoria</media:title>
		</media:content>

		<media:content url="http://victoriayudin.files.wordpress.com/2010/05/debu01.png" medium="image">
			<media:title type="html">debu01</media:title>
		</media:content>

		<media:content url="http://victoriayudin.files.wordpress.com/2010/05/debu02.png" medium="image">
			<media:title type="html">debu02</media:title>
		</media:content>

		<media:content url="http://victoriayudin.files.wordpress.com/2010/05/debu03.png" medium="image">
			<media:title type="html">debu03</media:title>
		</media:content>

		<media:content url="http://victoriayudin.files.wordpress.com/2010/05/debu04.png" medium="image">
			<media:title type="html">debu04</media:title>
		</media:content>
	</item>
		<item>
		<title>Spring cleaning</title>
		<link>http://victoriayudin.com/2010/05/15/spring-cleaning/</link>
		<comments>http://victoriayudin.com/2010/05/15/spring-cleaning/#comments</comments>
		<pubDate>Sat, 15 May 2010 21:52:06 +0000</pubDate>
		<dc:creator>Victoria Yudin</dc:creator>
				<category><![CDATA[Miscellaneous]]></category>

		<guid isPermaLink="false">http://victoriayudin.com/?p=2523</guid>
		<description><![CDATA[It&#8217;s been a long time coming. I have changed this blog around a bit in an attempt to freshen up the look and organize things better.  Of course in the short term that means it may be difficult to find things, so if you&#8217;re looking for something that was here and cannot find it, please let [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=victoriayudin.com&amp;blog=4884873&amp;post=2523&amp;subd=victoriayudin&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p style="text-align:justify;">It&#8217;s been a long time coming. I have changed this blog around a bit in an attempt to freshen up the look and organize things better.  Of course in the short term that means it may be difficult to find things, so if you&#8217;re looking for something that was here and cannot find it, please let me know. Nothing has been removed, but many things have been moved. </p>
<p style="text-align:justify;">One cool new feature is that the topmost menu bar has drop down menus, so if you click on GP Tables, you&#8217;ll see a list of the available pages with table information:</p>
<p style="text-align:justify;"><a href="http://victoriayudin.files.wordpress.com/2010/05/new-navigation.png"><img class="aligncenter size-full wp-image-2524" title="new navigation" src="http://victoriayudin.files.wordpress.com/2010/05/new-navigation.png?w=450&#038;h=411" alt="" width="450" height="411" /></a></p>
<p style="text-align:justify;">The bottom navigation bar will list the most popular categories and subsections within them.  In the next few weeks I will be going through all the content and categorizing it better for easier searching and navigation.</p>
<br />Filed under: <a href='http://victoriayudin.com/category/miscellaneous/'>Miscellaneous</a> Tagged: <a href='http://victoriayudin.com/tag/miscellaneous/'>Miscellaneous</a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/victoriayudin.wordpress.com/2523/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/victoriayudin.wordpress.com/2523/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/victoriayudin.wordpress.com/2523/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/victoriayudin.wordpress.com/2523/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/victoriayudin.wordpress.com/2523/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/victoriayudin.wordpress.com/2523/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/victoriayudin.wordpress.com/2523/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/victoriayudin.wordpress.com/2523/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/victoriayudin.wordpress.com/2523/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/victoriayudin.wordpress.com/2523/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/victoriayudin.wordpress.com/2523/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/victoriayudin.wordpress.com/2523/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/victoriayudin.wordpress.com/2523/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/victoriayudin.wordpress.com/2523/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=victoriayudin.com&amp;blog=4884873&amp;post=2523&amp;subd=victoriayudin&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://victoriayudin.com/2010/05/15/spring-cleaning/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/17a8ce996aec3d35caf943487b6956a5?s=96&#38;d=identicon" medium="image">
			<media:title type="html">Victoria</media:title>
		</media:content>

		<media:content url="http://victoriayudin.files.wordpress.com/2010/05/new-navigation.png" medium="image">
			<media:title type="html">new navigation</media:title>
		</media:content>
	</item>
		<item>
		<title>SQL view with security and SmartList details in GP</title>
		<link>http://victoriayudin.com/2010/05/13/sql-view-with-security-and-smartlist-details-in-gp/</link>
		<comments>http://victoriayudin.com/2010/05/13/sql-view-with-security-and-smartlist-details-in-gp/#comments</comments>
		<pubDate>Thu, 13 May 2010 08:27:58 +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 Reports code]]></category>
		<category><![CDATA[Setup SQL code]]></category>
		<category><![CDATA[GP SQL view]]></category>
		<category><![CDATA[security]]></category>

		<guid isPermaLink="false">http://victoriayudin.com/?p=2391</guid>
		<description><![CDATA[Robert Cavill from Emeco in Australia has sent me an amazing update to my Security Roles and Tasks in GP 10 SQL script that includes SmartList objects. I have tested this script with both GP 10.0 and GP 2010 and for both versions to get the most out of this you will want to populate the [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=victoriayudin.com&amp;blog=4884873&amp;post=2391&amp;subd=victoriayudin&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p style="text-align:justify;">Robert Cavill from Emeco in Australia has sent me an amazing update to my <a title="Security Roles and Tasks in GP 10" href="http://victoriayudin.com/2009/03/12/sql-view-to-show-security-roles-and-tasks-in-dynamics-gp-10/" target="_blank">Security Roles and Tasks in GP 10</a> SQL script that includes SmartList objects. I have tested this script with both GP 10.0 and GP 2010 and for both versions to get the most out of this you will want to populate the GP system resource table by following the steps below:</p>
<ol>
<li>Go to <em>Microsoft Dynamics GP &gt; Maintenance &gt; Clear Data</em></li>
<li>Click <em>Display</em> on the toolbar and choose <em>Physical</em></li>
<li>Select <em>System</em> under <em>Series</em></li>
<li>Click<em> Security Resource Descriptions</em> under <em>Tables</em> to highlight it and click <em>Insert</em> to add it to the <em>Selected Tables</em> list</li>
<li>Click <em>OK</em>, then <em>Yes</em> to the pop up message asking you if you’re sure that you want to clear data from the table</li>
<li>Send the report to the screen, it should report back with &#8220;No errors found&#8221;</li>
</ol>
<p style="text-align:justify;">The view will still work without going through the steps above, but all the resource details will be blank. Please note that the script below should be run against your DYNAMICS database.</p>
<p style="text-align:center;"><span style="color:#888888;">~~~~~</span></p>
<pre>CREATE VIEW view_Security_and_SL_Details
AS
<span style="color:#888888;">/*******************************************************************
view_Security_and_SL_Details
Create this in the DYNAMICS database
Created May 13 2010 by Victoria Yudin - Flexible Solutions, Inc.
     and Robert Cavill - Emeco
For updates see http://victoriayudin.com/gp-reports/
Shows all security roles, tasks and detailed resource descriptions
     including SmartList by user by company for GP 10.0 and GP 2010
*******************************************************************/</span>

SELECT DISTINCT
   S.USERID [User_ID],
   S.CMPANYID Company_ID,
   C.CMPNYNAM Company_Name,
   S.SECURITYROLEID Security_Role_ID,
   coalesce(T.SECURITYTASKID,'') Security_Task_ID,
   coalesce(TM.SECURITYTASKNAME,'') Security_Task_Name,
   coalesce(TM.SECURITYTASKDESC,'') Security_Task_Description,
   coalesce(R.DICTID,SO.ASI_DICTID,'') Dictionary_ID,
   coalesce(R.PRODNAME,'') Product_Name,
   coalesce(R.TYPESTR,SO.ResType,'') Resource_Type,
   coalesce(R.DSPLNAME,SO.SmartlistObject,'') Resource_Display_Name,
   coalesce(R.RESTECHNAME,'') Resource_Technical_Name,
   coalesce(R.Series_Name,'') Resource_Series

FROM SY10500 S   <span style="color:#008000;">-- security assignment user role</span>

LEFT OUTER JOIN
   SY01500 C   <span style="color:#008000;">-- company master</span>
   ON S.CMPANYID = C.CMPANYID

LEFT OUTER JOIN
   SY10600 T  <span style="color:#008000;">-- tasks in roles</span>
   ON S.SECURITYROLEID = T.SECURITYROLEID 

LEFT OUTER JOIN
   SY09000 TM  <span style="color:#008000;">-- tasks master</span>
   ON T.SECURITYTASKID = TM.SECURITYTASKID 

LEFT OUTER JOIN
   SY10700 O  <span style="color:#008000;">-- operations in tasks</span>
   ON T.SECURITYTASKID = O.SECURITYTASKID 

LEFT OUTER JOIN
   SY09400 R  <span style="color:#008000;">-- resource descriptions</span>
   ON R.DICTID = O.DICTID AND O.SECRESTYPE = R.SECRESTYPE
   AND O.SECURITYID = R.SECURITYID 

LEFT OUTER JOIN  <span style="color:#008000;">-- smartlist objects</span>
   (SELECT SECURITYTASKID, SECURITYID, DICTID, SECRESTYPE,
 	ASI_DICTID, SL_OBJID, SmartlistObject,
	'Smartlist' ResType
   FROM
      (SELECT SECURITYTASKID, SECURITYID, DICTID, SECRESTYPE,
              SECURITYID / 65536 ASI_DICTID, SECURITYID % 65536 SL_OBJID
      FROM SY10700
      WHERE SECRESTYPE = 1000 AND DICTID = 1493) ST
   JOIN
      (SELECT coalesce(TRANSVAL, ASI_Favorite_Name) SmartlistObject,
              ASI_Favorite_Dict_ID, ASI_Favorite_Type
      FROM ASIEXP81  F
      LEFT JOIN
         ASITAB30 A
         ON F.ASI_Favorite_Name = A.UNTRSVAL
         AND A.Language_ID = 0
         WHERE ASI_Favorite_Save_Level = 0) SM
      ON ASI_DICTID = ASI_Favorite_Dict_ID
      AND SL_OBJID = ASI_Favorite_Type) SO
   ON SO.DICTID = O.DICTID AND O.SECRESTYPE = SO.SECRESTYPE
   AND O.SECURITYID = SO.SECURITYID

<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_Security_and_SL_Details TO DYNGRP</span></pre>
<p style="text-align:center;"><span style="color:#888888;">~~~~~</span></p>
<p style="text-align:justify;"><em>Disclaimer: I tested this on limited data, if you find an issue or have a suggestion for improvement, please let me know and I will post the update here for everyone.</em></p>
<p style="text-align:justify;">Thanks again to Robert for his work on this! For more SQL code and help with reporting on Dynamics GP data, please take a look at my <a title="Victoria Yudin - GP Reports" href="http://victoriayudin.com/gp-reports/" target="_blank">GP Reports</a> page.</p>
<br />Filed under: <a href='http://victoriayudin.com/category/dynamics-gp/'>Dynamics GP</a>, <a href='http://victoriayudin.com/category/dynamics-gp/gp-100/'>GP 10.0</a>, <a href='http://victoriayudin.com/category/dynamics-gp/gp-2010/'>GP 2010</a>, <a href='http://victoriayudin.com/category/gp-reports-code/'>GP Reports code</a>, <a href='http://victoriayudin.com/category/gp-reports-code/setup-sql-code/'>Setup SQL code</a> Tagged: <a href='http://victoriayudin.com/tag/dynamics-gp/'>Dynamics GP</a>, <a href='http://victoriayudin.com/tag/gp-100/'>GP 10.0</a>, <a href='http://victoriayudin.com/tag/gp-2010/'>GP 2010</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/security/'>security</a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/victoriayudin.wordpress.com/2391/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/victoriayudin.wordpress.com/2391/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/victoriayudin.wordpress.com/2391/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/victoriayudin.wordpress.com/2391/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/victoriayudin.wordpress.com/2391/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/victoriayudin.wordpress.com/2391/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/victoriayudin.wordpress.com/2391/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/victoriayudin.wordpress.com/2391/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/victoriayudin.wordpress.com/2391/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/victoriayudin.wordpress.com/2391/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/victoriayudin.wordpress.com/2391/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/victoriayudin.wordpress.com/2391/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/victoriayudin.wordpress.com/2391/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/victoriayudin.wordpress.com/2391/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=victoriayudin.com&amp;blog=4884873&amp;post=2391&amp;subd=victoriayudin&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://victoriayudin.com/2010/05/13/sql-view-with-security-and-smartlist-details-in-gp/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/17a8ce996aec3d35caf943487b6956a5?s=96&#38;d=identicon" medium="image">
			<media:title type="html">Victoria</media:title>
		</media:content>
	</item>
		<item>
		<title>GP 2010 Cookbook</title>
		<link>http://victoriayudin.com/2010/05/06/gp-2010-cookbook/</link>
		<comments>http://victoriayudin.com/2010/05/06/gp-2010-cookbook/#comments</comments>
		<pubDate>Thu, 06 May 2010 12:29:49 +0000</pubDate>
		<dc:creator>Victoria Yudin</dc:creator>
				<category><![CDATA[Dynamics GP]]></category>
		<category><![CDATA[GP 2010]]></category>

		<guid isPermaLink="false">http://victoriayudin.com/?p=2354</guid>
		<description><![CDATA[Dynamics GP MVP Mark Polino has been an amazing contribution to the entire Dynamics GP community for many years now with his blog, advice on forums and fabulous presentations, like 50 Tips in 50 Minutes and  50 More Tips in 50 Minutes. Now we’ll be able to get even more of Mark’s great advice in his upcoming [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=victoriayudin.com&amp;blog=4884873&amp;post=2354&amp;subd=victoriayudin&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p style="text-align:justify;">Dynamics GP MVP Mark Polino has been an amazing contribution to the entire Dynamics GP community for many years now with his <a title="DynamicAccounting.net" href="http://msdynamicsgp.blogspot.com/" target="_blank">blog</a>, advice on forums and fabulous presentations, like <a title="50 Tips in 50 Minutes" href="http://msdynamicsgp.blogspot.com/2010/04/convergence-2010-50-tips-presentation.html" target="_blank">50 Tips in 50 Minutes</a> and  <a title="50 More Tips in 50 Minutes" href="http://msdynamicsgp.blogspot.com/2010/04/convergence-2010-50-more-tips-in-50.html" target="_blank">50 More Tips in 50 Minutes</a>. Now we’ll be able to get even more of Mark’s great advice in his upcoming <a title="Microsoft Dynamics GP 2010 Cookbook" href="http://dynamicaccounting.us1.list-manage.com/track/click?u=dc971e3c1344b540924428314&amp;id=129be9552e&amp;e=6cf72dc7e8" target="_blank">Microsoft Dynamics GP 2010 Cookbook</a>.</p>
<p style="text-align:justify;">The book is scheduled for August and you can get a great discount by <a title="Microsoft Dynamics GP 2010 Cookbook" href="http://dynamicaccounting.us1.list-manage.com/track/click?u=dc971e3c1344b540924428314&amp;id=129be9552e&amp;e=6cf72dc7e8" target="_blank">ordering now</a>. My copy is already on order and it looks like I will get it just in time for my birthday. Thanks Mark!</p>
<br />Filed under: <a href='http://victoriayudin.com/category/dynamics-gp/'>Dynamics GP</a>, <a href='http://victoriayudin.com/category/dynamics-gp/gp-2010/'>GP 2010</a> Tagged: <a href='http://victoriayudin.com/tag/dynamics-gp/'>Dynamics GP</a>, <a href='http://victoriayudin.com/tag/gp-2010/'>GP 2010</a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/victoriayudin.wordpress.com/2354/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/victoriayudin.wordpress.com/2354/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/victoriayudin.wordpress.com/2354/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/victoriayudin.wordpress.com/2354/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/victoriayudin.wordpress.com/2354/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/victoriayudin.wordpress.com/2354/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/victoriayudin.wordpress.com/2354/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/victoriayudin.wordpress.com/2354/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/victoriayudin.wordpress.com/2354/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/victoriayudin.wordpress.com/2354/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/victoriayudin.wordpress.com/2354/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/victoriayudin.wordpress.com/2354/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/victoriayudin.wordpress.com/2354/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/victoriayudin.wordpress.com/2354/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=victoriayudin.com&amp;blog=4884873&amp;post=2354&amp;subd=victoriayudin&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://victoriayudin.com/2010/05/06/gp-2010-cookbook/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/17a8ce996aec3d35caf943487b6956a5?s=96&#38;d=identicon" medium="image">
			<media:title type="html">Victoria</media:title>
		</media:content>
	</item>
		<item>
		<title>It&#8217;s here!</title>
		<link>http://victoriayudin.com/2010/05/04/its-here/</link>
		<comments>http://victoriayudin.com/2010/05/04/its-here/#comments</comments>
		<pubDate>Tue, 04 May 2010 08:52:25 +0000</pubDate>
		<dc:creator>Victoria Yudin</dc:creator>
				<category><![CDATA[Dynamics GP]]></category>
		<category><![CDATA[GP 2010]]></category>
		<category><![CDATA[version]]></category>

		<guid isPermaLink="false">http://victoriayudin.com/?p=2338</guid>
		<description><![CDATA[GP 2010 is now available for download on both CustomerSource and PartnerSource. According to the poll I have had on this blog for about two months, almost 60% of those who responded have plans to upgrade to GP 2010 and another 5% are already on it. 11% chose &#8220;What&#8217;s GP 2010?&#8221; &#8211; not sure if they&#8217;re joking, stumbled upon my blog [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=victoriayudin.com&amp;blog=4884873&amp;post=2338&amp;subd=victoriayudin&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p style="text-align:justify;">GP 2010 is now available for download on both CustomerSource and PartnerSource. According to the poll I have had on this blog for about two months, almost 60% of those who responded have plans to upgrade to GP 2010 and another 5% are already on it. 11% chose &#8220;What&#8217;s GP 2010?&#8221; &#8211; not sure if they&#8217;re joking, stumbled upon my blog by accident, or if the Microsoft marketing is not working.  Here are the current results:</p>
<p style="text-align:justify;"><a href="http://victoriayudin.files.wordpress.com/2010/05/gp2010poll.png"><img class="aligncenter size-full wp-image-2344" title="GP2010poll" src="http://victoriayudin.files.wordpress.com/2010/05/gp2010poll.png?w=450&#038;h=160" alt="" width="450" height="160" /></a></p>
<p style="text-align:justify;">The links for downloading GP 2010 are below (please note that these will require a login):</p>
<ul>
<li><a title="GP 2010 Downloads on CustomerSource" href="https://mbs.microsoft.com/customersource/downloads/servicepacks/MDGP2010_Release_Download" target="_blank">GP 2010 Downloads on CustomerSource</a></li>
<li><a title="GP 2010 Downloads on PartnerSource" href="https://mbs.microsoft.com/partnersource/support/selfsupport/productreleases/MDGP2010_Release_Download" target="_blank">GP 2010 Downloads on PartnerSource</a></li>
</ul>
<p style="text-align:justify;">Some additional links that may be useful (these will also require a login):</p>
<ul>
<li><a title="GP 2010 System Requirements" href="https://mbs.microsoft.com/customersource/documentation/systemrequirements/mdgp2010_system_requirements.htm?printpage=false" target="_blank">GP 2010 System Requirements</a></li>
<li><a title="GP 2010 Printer Compatibility" href="https://mbs.microsoft.com/customersource/documentation/systemrequirements/mdgp2010_printer_compatibility.htm?printpage=false" target="_blank">GP 2010 Printer Compatibility</a></li>
<li><a title="GP 2010 Web Application System Requirements" href="https://mbs.microsoft.com/customersource/documentation/systemrequirements/MDGP2010_System_Requirements_Web_Apps" target="_blank">GP 2010 Web Application System Requirements</a></li>
<li><a title="GP 2010 Installation Documentation" href="https://mbs.microsoft.com/customersource/documentation/setupguides/gp2010_install" target="_blank">GP 2010 Installation Documentation</a></li>
<li><a title="GP 2010 Upgrade Documentation" href="https://mbs.microsoft.com/customersource/documentation/setupguides/gp2010_upgrade" target="_blank">GP 2010 Upgrade Documentation</a></li>
<li><a title="GP 2010 Update Hot Topic" href="https://mbs.microsoft.com/customersource/support/selfsupport/hottopics/hottopic_mdgp2010_update.htm?printpage=false" target="_blank">GP 2010 Update Hot Topic</a></li>
<li><a title="What's New in GP 2010" href="http://www.microsoft.com/downloads/details.aspx?FamilyID=8be4cd61-2a68-422c-b085-412e0a594a85&amp;displaylang=en" target="_blank">What&#8217;s New in GP 2010</a></li>
</ul>
<p style="text-align:justify;">All of the links above are on <a title="Victoria Yudin's Resources page " href="http://victoriayudin.com/resources/" target="_blank">my Resources page</a> along with links for other GP versions and related products. I will also be updating the following posts with GP 2010 information as it becomes available:</p>
<ul>
<li><a title="When does my GP product's support end?" href="http://victoriayudin.com/2008/10/08/when-does-my-gp-products-support-end/" target="_blank">When does my GP product&#8217;s support end?</a> - support lifecycle information and links for GP 6.0 through GP 2010 (updated May 4, 2010)</li>
<li><a title="What Service Pack am I on?" href="http://victoriayudin.com/2008/09/27/what-service-pack-am-i-on/" target="_blank">What Service Pack am I on?</a> &#8211; service pack versions for GP 8.0 through GP 10.0</li>
<li><a title="Dynamics GP Integration Manager versions" href="http://victoriayudin.com/2009/01/28/dynamics-gp-integration-manager-versions/" target="_blank">Dynamics GP Integration Manager versions</a> &#8211; for IM 7.5 through 10.0</li>
</ul>
<br />Filed under: <a href='http://victoriayudin.com/category/dynamics-gp/'>Dynamics GP</a>, <a href='http://victoriayudin.com/category/dynamics-gp/gp-2010/'>GP 2010</a> Tagged: <a href='http://victoriayudin.com/tag/dynamics-gp/'>Dynamics GP</a>, <a href='http://victoriayudin.com/tag/gp-2010/'>GP 2010</a>, <a href='http://victoriayudin.com/tag/version/'>version</a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/victoriayudin.wordpress.com/2338/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/victoriayudin.wordpress.com/2338/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/victoriayudin.wordpress.com/2338/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/victoriayudin.wordpress.com/2338/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/victoriayudin.wordpress.com/2338/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/victoriayudin.wordpress.com/2338/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/victoriayudin.wordpress.com/2338/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/victoriayudin.wordpress.com/2338/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/victoriayudin.wordpress.com/2338/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/victoriayudin.wordpress.com/2338/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/victoriayudin.wordpress.com/2338/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/victoriayudin.wordpress.com/2338/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/victoriayudin.wordpress.com/2338/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/victoriayudin.wordpress.com/2338/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=victoriayudin.com&amp;blog=4884873&amp;post=2338&amp;subd=victoriayudin&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://victoriayudin.com/2010/05/04/its-here/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/17a8ce996aec3d35caf943487b6956a5?s=96&#38;d=identicon" medium="image">
			<media:title type="html">Victoria</media:title>
		</media:content>

		<media:content url="http://victoriayudin.files.wordpress.com/2010/05/gp2010poll.png" medium="image">
			<media:title type="html">GP2010poll</media:title>
		</media:content>
	</item>
		<item>
		<title>How to find all SQL tables with a column name</title>
		<link>http://victoriayudin.com/2010/04/23/how-to-find-all-sql-tables-with-a-column-name/</link>
		<comments>http://victoriayudin.com/2010/04/23/how-to-find-all-sql-tables-with-a-column-name/#comments</comments>
		<pubDate>Fri, 23 Apr 2010 07:26:09 +0000</pubDate>
		<dc:creator>Victoria Yudin</dc:creator>
				<category><![CDATA[GP Reports code]]></category>
		<category><![CDATA[SQL Server]]></category>
		<category><![CDATA[SQL coding]]></category>
		<category><![CDATA[SQL code]]></category>

		<guid isPermaLink="false">http://victoriayudin.com/?p=2321</guid>
		<description><![CDATA[Often I need to find all the tables in Dynamics GP that have a particular column or search for all columns where I only have a partial column name. Over the years I have seen lots of different code to accomplish this, so this is nothing new. But I am asked about this enough that [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=victoriayudin.com&amp;blog=4884873&amp;post=2321&amp;subd=victoriayudin&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p style="text-align:justify;">Often I need to find all the tables in Dynamics GP that have a particular column or search for all columns where I only have a partial column name. Over the years I have seen lots of different code to accomplish this, so this is nothing new. But I am asked about this enough that I thought I would share the code I use:</p>
<p><code>SELECT<br />
    TABLE_NAME, COLUMN_NAME, DATA_TYPE<br />
FROM INFORMATION_SCHEMA.COLUMNS<br />
WHERE TABLE_NAME in<br />
   (SELECT name<br />
    FROM sysobjects<br />
    WHERE xtype = 'U')<br />
and COLUMN_NAME like '%<span style="color:#ff0000;">xxxx</span>%' <span style="color:#ff0000;">-- replace with yours</span><br />
ORDER BY COLUMN_NAME, TABLE_NAME </code></p>
<p style="text-align:justify;">Just replace the <span style="color:#ff0000;">xxxx </span>with what you are looking for and run.</p>
<br />Filed under: <a href='http://victoriayudin.com/category/gp-reports-code/'>GP Reports code</a>, <a href='http://victoriayudin.com/category/gp-reports-code/sql-coding/'>SQL coding</a>, <a href='http://victoriayudin.com/category/sql-server/'>SQL Server</a> Tagged: <a href='http://victoriayudin.com/tag/sql-code/'>SQL code</a>, <a href='http://victoriayudin.com/tag/sql-server/'>SQL Server</a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/victoriayudin.wordpress.com/2321/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/victoriayudin.wordpress.com/2321/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/victoriayudin.wordpress.com/2321/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/victoriayudin.wordpress.com/2321/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/victoriayudin.wordpress.com/2321/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/victoriayudin.wordpress.com/2321/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/victoriayudin.wordpress.com/2321/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/victoriayudin.wordpress.com/2321/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/victoriayudin.wordpress.com/2321/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/victoriayudin.wordpress.com/2321/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/victoriayudin.wordpress.com/2321/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/victoriayudin.wordpress.com/2321/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/victoriayudin.wordpress.com/2321/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/victoriayudin.wordpress.com/2321/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=victoriayudin.com&amp;blog=4884873&amp;post=2321&amp;subd=victoriayudin&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://victoriayudin.com/2010/04/23/how-to-find-all-sql-tables-with-a-column-name/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/17a8ce996aec3d35caf943487b6956a5?s=96&#38;d=identicon" medium="image">
			<media:title type="html">Victoria</media:title>
		</media:content>
	</item>
		<item>
		<title>SQL view for Fixed Assets depreciation in Dynamics GP</title>
		<link>http://victoriayudin.com/2010/04/07/sql-view-for-fixed-assets-depreciation-in-dynamics-gp/</link>
		<comments>http://victoriayudin.com/2010/04/07/sql-view-for-fixed-assets-depreciation-in-dynamics-gp/#comments</comments>
		<pubDate>Wed, 07 Apr 2010 09:15:34 +0000</pubDate>
		<dc:creator>Victoria Yudin</dc:creator>
				<category><![CDATA[Dynamics GP]]></category>
		<category><![CDATA[Fixed Assets SQL code]]></category>
		<category><![CDATA[GP Reports code]]></category>
		<category><![CDATA[GP SQL scripts]]></category>
		<category><![CDATA[Fixed Assets]]></category>
		<category><![CDATA[GP SQL view]]></category>
		<category><![CDATA[SQL code]]></category>

		<guid isPermaLink="false">http://victoriayudin.com/?p=2290</guid>
		<description><![CDATA[Below is a view I have put together to get the monthly Fixed Assets depreciation amounts in Dynamics GP. For more detail on the Fixed Assets module, please visit my Fixed Assets Tables page. If you&#8217;re looking for more SQL code, you can find it on my GP Reports page. ~~~~~ CREATE VIEW view_FA_Depreciation AS /******************************************************************* view_FA_Depreciation Created on [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=victoriayudin.com&amp;blog=4884873&amp;post=2290&amp;subd=victoriayudin&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p style="text-align:justify;">Below is a view I have put together to get the monthly Fixed Assets depreciation amounts in Dynamics GP. For more detail on the Fixed Assets module, please visit my <a title="Fixed Assets tables" href="http://victoriayudin.com/gp-reports/fixed-assets-tables/" target="_blank">Fixed Assets Tables page</a>. If you&#8217;re looking for more SQL code, you can find it on my <a title="GP Reports" href="http://victoriayudin.com/gp-reports/" target="_blank">GP Reports page</a>.</p>
<p style="text-align:center;"><span style="color:#999999;">~~~~~</span></p>
<pre>CREATE VIEW view_FA_Depreciation
AS

<span style="color:#999999;">/*******************************************************************
view_FA_Depreciation
Created on Apr 7, 2010 by Victoria Yudin - Flexible Solutions, Inc.
For updates visit http://victoriayudin.com/gp-reports/
Tables used:
FA00100 – fm - Asset General Information Master
FA00902 – d - Financial Detail Master
FA40200 - b - Book Setup
Updated on Apr 7, 2010 to add Book ID
*******************************************************************/</span>

SELECT
     fm.ASSETID Asset_ID,
     fm.ASSETIDSUF Asset_Suffix,
     fm.ASSETDESC Asset_Description,
     b.BOOKID Book_ID,
     d.FAPERIOD Depr_Month,
     d.FAYEAR Depr_Year,
     d.AMOUNT Depreciation,
     d.GLINTTRXDATE GL_Trx_Date,
     fm.Master_Asset_ID,
     fm.ASSETCLASSID Asset_Class,
     fm.STRUCTUREID Stucture_ID,
     fm.LOCATNID Location_ID,
     fm.ACQDATE Acquisition_Date,
     fm.Acquisition_Cost,
     fm.Physical_Location_ID,
     fm.Asset_Label

FROM FA00902 d  <span style="color:#008000;">-- financial detail</span>

LEFT OUTER JOIN
     FA00100 fm  <span style="color:#008000;">-- fa master</span>
     ON fm.assetindex = d.assetindex

INNER JOIN
     FA40200 b   <span style="color:#008000;">-- book setup</span>
     ON b.BOOKINDX = d.BOOKINDX	

WHERE d.TRANSACCTTYPE = 2  <span style="color:#008000;">-- depreciation only</span>

<span style="color:#008000;">/** 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_FA_Depreciation 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 />Filed under: <a href='http://victoriayudin.com/category/dynamics-gp/'>Dynamics GP</a>, <a href='http://victoriayudin.com/category/gp-reports-code/fixed-assets-sql-code/'>Fixed Assets 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/fixed-assets/'>Fixed Assets</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/sql-code/'>SQL code</a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/victoriayudin.wordpress.com/2290/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/victoriayudin.wordpress.com/2290/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/victoriayudin.wordpress.com/2290/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/victoriayudin.wordpress.com/2290/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/victoriayudin.wordpress.com/2290/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/victoriayudin.wordpress.com/2290/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/victoriayudin.wordpress.com/2290/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/victoriayudin.wordpress.com/2290/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/victoriayudin.wordpress.com/2290/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/victoriayudin.wordpress.com/2290/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/victoriayudin.wordpress.com/2290/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/victoriayudin.wordpress.com/2290/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/victoriayudin.wordpress.com/2290/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/victoriayudin.wordpress.com/2290/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=victoriayudin.com&amp;blog=4884873&amp;post=2290&amp;subd=victoriayudin&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://victoriayudin.com/2010/04/07/sql-view-for-fixed-assets-depreciation-in-dynamics-gp/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/17a8ce996aec3d35caf943487b6956a5?s=96&#38;d=identicon" medium="image">
			<media:title type="html">Victoria</media:title>
		</media:content>
	</item>
	</channel>
</rss>