<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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: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>Comments on: SQL view to show AP apply information in GP</title>
	<atom:link href="http://victoriayudin.com/2008/10/22/sql-view-ap-apply-in-gp/feed/" rel="self" type="application/rss+xml" />
	<link>http://victoriayudin.com/2008/10/22/sql-view-ap-apply-in-gp/</link>
	<description>Ramblings and musings of a Dynamics GP MVP</description>
	<lastBuildDate>Sat, 19 May 2012 09:34:01 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
	<item>
		<title>By: Victoria Yudin</title>
		<link>http://victoriayudin.com/2008/10/22/sql-view-ap-apply-in-gp/#comment-18985</link>
		<dc:creator><![CDATA[Victoria Yudin]]></dc:creator>
		<pubDate>Fri, 20 Jan 2012 19:05:20 +0000</pubDate>
		<guid isPermaLink="false">http://victoriayudin.wordpress.com/?p=434#comment-18985</guid>
		<description><![CDATA[Logan,

I don&#039;t have anything like that posted.  Part of the problem with writing something generic for what you are asking is that the definition or criteria for duplicates may vary by company.  First step in identifying duplicates would be determining the logic for what would constitute a duplicate for you. 

&lt;em&gt;-Victoria&lt;/em&gt;]]></description>
		<content:encoded><![CDATA[<p>Logan,</p>
<p>I don&#8217;t have anything like that posted.  Part of the problem with writing something generic for what you are asking is that the definition or criteria for duplicates may vary by company.  First step in identifying duplicates would be determining the logic for what would constitute a duplicate for you. </p>
<p><em>-Victoria</em></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Logan</title>
		<link>http://victoriayudin.com/2008/10/22/sql-view-ap-apply-in-gp/#comment-18984</link>
		<dc:creator><![CDATA[Logan]]></dc:creator>
		<pubDate>Fri, 20 Jan 2012 19:01:52 +0000</pubDate>
		<guid isPermaLink="false">http://victoriayudin.wordpress.com/?p=434#comment-18984</guid>
		<description><![CDATA[Hi Victoria
is there any sql script available to check if i have duplicate vendors or is there any script to check if payment was duplicated

Regards
Logan]]></description>
		<content:encoded><![CDATA[<p>Hi Victoria<br />
is there any sql script available to check if i have duplicate vendors or is there any script to check if payment was duplicated</p>
<p>Regards<br />
Logan</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Victoria Yudin</title>
		<link>http://victoriayudin.com/2008/10/22/sql-view-ap-apply-in-gp/#comment-12876</link>
		<dc:creator><![CDATA[Victoria Yudin]]></dc:creator>
		<pubDate>Thu, 11 Aug 2011 10:13:05 +0000</pubDate>
		<guid isPermaLink="false">http://victoriayudin.wordpress.com/?p=434#comment-12876</guid>
		<description><![CDATA[Tami,

Your change will not work because you cannot apply from a payment to a credit memo in GP, as they are both &#039;credit&#039; transactions.  GP only allows you to apply FROM a &#039;credit&#039; transaction (payment, credit memo, return) TO a &#039;debit&#039; transaction (invoice, finance charge, misc charge).  They way I have set up this view, the credit transactions will be listed as &#039;payments&#039;, so you should see Credit Memo in the Payment_Type column without having to make any changes to my original code.  Voided checks should not be showing up in the results, since they are not applied to anything and I am only showing applied credit transactions.  Please let me know if you are seeing voided checks in your results and I will double check my code. 

&lt;em&gt;-Victoria&lt;/em&gt;]]></description>
		<content:encoded><![CDATA[<p>Tami,</p>
<p>Your change will not work because you cannot apply from a payment to a credit memo in GP, as they are both &#8216;credit&#8217; transactions.  GP only allows you to apply FROM a &#8216;credit&#8217; transaction (payment, credit memo, return) TO a &#8216;debit&#8217; transaction (invoice, finance charge, misc charge).  They way I have set up this view, the credit transactions will be listed as &#8216;payments&#8217;, so you should see Credit Memo in the Payment_Type column without having to make any changes to my original code.  Voided checks should not be showing up in the results, since they are not applied to anything and I am only showing applied credit transactions.  Please let me know if you are seeing voided checks in your results and I will double check my code. </p>
<p><em>-Victoria</em></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: tami</title>
		<link>http://victoriayudin.com/2008/10/22/sql-view-ap-apply-in-gp/#comment-12851</link>
		<dc:creator><![CDATA[tami]]></dc:creator>
		<pubDate>Wed, 10 Aug 2011 23:40:52 +0000</pubDate>
		<guid isPermaLink="false">http://victoriayudin.wordpress.com/?p=434#comment-12851</guid>
		<description><![CDATA[Hello Victoria,

I am trying get see not only applied payments but also applied CM, 
I added last line to your applied pymts scripts but it is still only returining invoices.
CASE PA.APTODCTY
         WHEN 1 THEN &#039;Invoice&#039;
         WHEN 2 THEN &#039;Finance Charge&#039;
         WHEN 3 THEN &#039;Misc Charge&#039;
         WHEN 5 THEN &#039;Credit Memo&#039;

Additionally I do not want to see any cks taht had been voided, can you please tell me how to do this?

Thanks!]]></description>
		<content:encoded><![CDATA[<p>Hello Victoria,</p>
<p>I am trying get see not only applied payments but also applied CM,<br />
I added last line to your applied pymts scripts but it is still only returining invoices.<br />
CASE PA.APTODCTY<br />
         WHEN 1 THEN &#8216;Invoice&#8217;<br />
         WHEN 2 THEN &#8216;Finance Charge&#8217;<br />
         WHEN 3 THEN &#8216;Misc Charge&#8217;<br />
         WHEN 5 THEN &#8216;Credit Memo&#8217;</p>
<p>Additionally I do not want to see any cks taht had been voided, can you please tell me how to do this?</p>
<p>Thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Siddeek</title>
		<link>http://victoriayudin.com/2008/10/22/sql-view-ap-apply-in-gp/#comment-9806</link>
		<dc:creator><![CDATA[Siddeek]]></dc:creator>
		<pubDate>Tue, 19 Apr 2011 05:52:23 +0000</pubDate>
		<guid isPermaLink="false">http://victoriayudin.wordpress.com/?p=434#comment-9806</guid>
		<description><![CDATA[Hi, Vic,
Thanks for the tip. This is good idea for future. Actually, I just want to create a smart list by smart list builder with originating invoice amount in a column by removing currency symbol and add as a column for currency using the tables in your view.

- Siddeek]]></description>
		<content:encoded><![CDATA[<p>Hi, Vic,<br />
Thanks for the tip. This is good idea for future. Actually, I just want to create a smart list by smart list builder with originating invoice amount in a column by removing currency symbol and add as a column for currency using the tables in your view.</p>
<p>- Siddeek</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Victoria Yudin</title>
		<link>http://victoriayudin.com/2008/10/22/sql-view-ap-apply-in-gp/#comment-9790</link>
		<dc:creator><![CDATA[Victoria Yudin]]></dc:creator>
		<pubDate>Mon, 18 Apr 2011 11:27:55 +0000</pubDate>
		<guid isPermaLink="false">http://victoriayudin.wordpress.com/?p=434#comment-9790</guid>
		<description><![CDATA[Hi Siddeek, 

Adding Multicurrency information to this requires a lot more work and linking in at least one additional table (MC020103) for the multicurrency amounts.  This is not something I am planning on posting on my blog, at least in the foreseeable future, however, it may be something we can create as a consulting project. Please let me know if this is something you would be interested in. 

&lt;em&gt;-Victoria&lt;/em&gt;]]></description>
		<content:encoded><![CDATA[<p>Hi Siddeek, </p>
<p>Adding Multicurrency information to this requires a lot more work and linking in at least one additional table (MC020103) for the multicurrency amounts.  This is not something I am planning on posting on my blog, at least in the foreseeable future, however, it may be something we can create as a consulting project. Please let me know if this is something you would be interested in. </p>
<p><em>-Victoria</em></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Siddeek</title>
		<link>http://victoriayudin.com/2008/10/22/sql-view-ap-apply-in-gp/#comment-9788</link>
		<dc:creator><![CDATA[Siddeek]]></dc:creator>
		<pubDate>Mon, 18 Apr 2011 11:20:18 +0000</pubDate>
		<guid isPermaLink="false">http://victoriayudin.wordpress.com/?p=434#comment-9788</guid>
		<description><![CDATA[Hello, Victoria,
Thanks for the view. I replaced APFRMAPLYAMT with ActualApplyToAmount for payment to display the orginal apply amount in multi currency (Z-NZD). It works fine. 
1. I need the same for Document amount of invoices. I can not.
2. I need Originating Currecy ( CURNCYID or FROMCURR ) as column for invoice appy amount 

Appriciate your help.

- Siddeek -]]></description>
		<content:encoded><![CDATA[<p>Hello, Victoria,<br />
Thanks for the view. I replaced APFRMAPLYAMT with ActualApplyToAmount for payment to display the orginal apply amount in multi currency (Z-NZD). It works fine.<br />
1. I need the same for Document amount of invoices. I can not.<br />
2. I need Originating Currecy ( CURNCYID or FROMCURR ) as column for invoice appy amount </p>
<p>Appriciate your help.</p>
<p>- Siddeek -</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Victoria Yudin</title>
		<link>http://victoriayudin.com/2008/10/22/sql-view-ap-apply-in-gp/#comment-8811</link>
		<dc:creator><![CDATA[Victoria Yudin]]></dc:creator>
		<pubDate>Fri, 11 Mar 2011 10:25:05 +0000</pubDate>
		<guid isPermaLink="false">http://victoriayudin.wordpress.com/?p=434#comment-8811</guid>
		<description><![CDATA[Hi Preston,

No, this will not help reconcile the AP subledger to the General Ledger.  If your client in on GP 10.0 or higher, there is a Reconcile to GL feature inside GP that they can use to help find the difference.  It&#039;s not always 100%, so if that does not help, they need to either get someone knowledgeable to help them search through their data, or, if this is a recurring problem, they may be better off purchasing a product called &lt;a href=&quot;http://www.reporting-central.com/&quot; rel=&quot;nofollow&quot;&gt;The Closer&lt;/a&gt; that will give them a report of what is causing the differences.  You may also find Frank Hamelly&#039;s answer in this thread helpful: http://community.dynamics.com/product/gp/f/32/p/32268/55524.aspx.  There are a lot of other discussions online about this, but you may need to create logins for them.  Here is an example: http://groups.google.com/group/microsoft.public.greatplains/browse_thread/thread/c04a0be3c210ce6d.

&lt;em&gt;-Victoria&lt;/em&gt;]]></description>
		<content:encoded><![CDATA[<p>Hi Preston,</p>
<p>No, this will not help reconcile the AP subledger to the General Ledger.  If your client in on GP 10.0 or higher, there is a Reconcile to GL feature inside GP that they can use to help find the difference.  It&#8217;s not always 100%, so if that does not help, they need to either get someone knowledgeable to help them search through their data, or, if this is a recurring problem, they may be better off purchasing a product called <a href="http://www.reporting-central.com/" rel="nofollow">The Closer</a> that will give them a report of what is causing the differences.  You may also find Frank Hamelly&#8217;s answer in this thread helpful: <a href="http://community.dynamics.com/product/gp/f/32/p/32268/55524.aspx" rel="nofollow">http://community.dynamics.com/product/gp/f/32/p/32268/55524.aspx</a>.  There are a lot of other discussions online about this, but you may need to create logins for them.  Here is an example: <a href="http://groups.google.com/group/microsoft.public.greatplains/browse_thread/thread/c04a0be3c210ce6d" rel="nofollow">http://groups.google.com/group/microsoft.public.greatplains/browse_thread/thread/c04a0be3c210ce6d</a>.</p>
<p><em>-Victoria</em></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Preston</title>
		<link>http://victoriayudin.com/2008/10/22/sql-view-ap-apply-in-gp/#comment-8779</link>
		<dc:creator><![CDATA[Preston]]></dc:creator>
		<pubDate>Thu, 10 Mar 2011 17:04:37 +0000</pubDate>
		<guid isPermaLink="false">http://victoriayudin.wordpress.com/?p=434#comment-8779</guid>
		<description><![CDATA[Victoria, 

I am an auditor for a company that uses great plains. I need a listing of all invoices that were open as of a certain date (the audit date). This total should equal the total in the accounts payable account on there G/L. Currently it does not. Will this report help them? And how do they create it.]]></description>
		<content:encoded><![CDATA[<p>Victoria, </p>
<p>I am an auditor for a company that uses great plains. I need a listing of all invoices that were open as of a certain date (the audit date). This total should equal the total in the accounts payable account on there G/L. Currently it does not. Will this report help them? And how do they create it.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Lulu</title>
		<link>http://victoriayudin.com/2008/10/22/sql-view-ap-apply-in-gp/#comment-6450</link>
		<dc:creator><![CDATA[Lulu]]></dc:creator>
		<pubDate>Wed, 08 Dec 2010 12:50:24 +0000</pubDate>
		<guid isPermaLink="false">http://victoriayudin.wordpress.com/?p=434#comment-6450</guid>
		<description><![CDATA[Hello Victoria

We&#039;ve been using your view to create the one for our multicurrency payments requirements. We&#039;re getting there, slowly!

I noticed that your view does not include the currency ID field. I understand why you did it - it wasn&#039;t written for multicurrency purposes - but I thought I&#039;d let you know that it is still a nice field to have since I&#039;ve  been working with it somewhat :-)

Take care]]></description>
		<content:encoded><![CDATA[<p>Hello Victoria</p>
<p>We&#8217;ve been using your view to create the one for our multicurrency payments requirements. We&#8217;re getting there, slowly!</p>
<p>I noticed that your view does not include the currency ID field. I understand why you did it &#8211; it wasn&#8217;t written for multicurrency purposes &#8211; but I thought I&#8217;d let you know that it is still a nice field to have since I&#8217;ve  been working with it somewhat <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<p>Take care</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Lulu</title>
		<link>http://victoriayudin.com/2008/10/22/sql-view-ap-apply-in-gp/#comment-5538</link>
		<dc:creator><![CDATA[Lulu]]></dc:creator>
		<pubDate>Tue, 12 Oct 2010 11:49:08 +0000</pubDate>
		<guid isPermaLink="false">http://victoriayudin.wordpress.com/?p=434#comment-5538</guid>
		<description><![CDATA[Thanks your reply Victoria.
Unfortunately right now I don&#039;t have the budget to consider a consulting project. I&#039;ll have an in-depth look at my requirements again and what I can do about the multicurrency transactions.

I am using SQL for some other reporting so already that&#039;s been a big help :-)]]></description>
		<content:encoded><![CDATA[<p>Thanks your reply Victoria.<br />
Unfortunately right now I don&#8217;t have the budget to consider a consulting project. I&#8217;ll have an in-depth look at my requirements again and what I can do about the multicurrency transactions.</p>
<p>I am using SQL for some other reporting so already that&#8217;s been a big help <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Victoria Yudin</title>
		<link>http://victoriayudin.com/2008/10/22/sql-view-ap-apply-in-gp/#comment-5497</link>
		<dc:creator><![CDATA[Victoria Yudin]]></dc:creator>
		<pubDate>Wed, 06 Oct 2010 11:15:31 +0000</pubDate>
		<guid isPermaLink="false">http://victoriayudin.wordpress.com/?p=434#comment-5497</guid>
		<description><![CDATA[Hi Lulu,

Adding multicurrency details to this is quite involved and will bring up a number of additional issues/questions to be resolved.  This is not something I am planning on posting on my blog, at least in the foreseeable future, however, it may be something we can create as a consulting project.  Please let me know if this is something you would be interested in.  

&lt;i&gt;-Victoria&lt;/i&gt;]]></description>
		<content:encoded><![CDATA[<p>Hi Lulu,</p>
<p>Adding multicurrency details to this is quite involved and will bring up a number of additional issues/questions to be resolved.  This is not something I am planning on posting on my blog, at least in the foreseeable future, however, it may be something we can create as a consulting project.  Please let me know if this is something you would be interested in.  </p>
<p><i>-Victoria</i></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Lulu</title>
		<link>http://victoriayudin.com/2008/10/22/sql-view-ap-apply-in-gp/#comment-5496</link>
		<dc:creator><![CDATA[Lulu]]></dc:creator>
		<pubDate>Wed, 06 Oct 2010 10:12:24 +0000</pubDate>
		<guid isPermaLink="false">http://victoriayudin.wordpress.com/?p=434#comment-5496</guid>
		<description><![CDATA[Hello again Victoria

I was wondering if it was at all possible to update this view with the originating currency information please? This view is perfect for my clients request to create a check payment document - however, we are always reporting in Originating &amp; Functional currency. I&#039;ve noted the fields for the multicurrency reporting purposes below:

1. Currency ID
2. Exchange rate
3. Originating Check amount
4. Originating applied amount
5. Checkbook ID

Thank you &amp; regards]]></description>
		<content:encoded><![CDATA[<p>Hello again Victoria</p>
<p>I was wondering if it was at all possible to update this view with the originating currency information please? This view is perfect for my clients request to create a check payment document &#8211; however, we are always reporting in Originating &amp; Functional currency. I&#8217;ve noted the fields for the multicurrency reporting purposes below:</p>
<p>1. Currency ID<br />
2. Exchange rate<br />
3. Originating Check amount<br />
4. Originating applied amount<br />
5. Checkbook ID</p>
<p>Thank you &amp; regards</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Victoria Yudin</title>
		<link>http://victoriayudin.com/2008/10/22/sql-view-ap-apply-in-gp/#comment-4290</link>
		<dc:creator><![CDATA[Victoria Yudin]]></dc:creator>
		<pubDate>Tue, 29 Jun 2010 09:55:02 +0000</pubDate>
		<guid isPermaLink="false">http://victoriayudin.wordpress.com/?p=434#comment-4290</guid>
		<description><![CDATA[Hi Deborah,

Thanks for the kind words! 

I believe this can be done in SQL, but not without some serious effort.  If you knew upfront how many columns you would need for the apply information, this might be a little easier, otherwise, you would have to build the columns dynamically in your code which is pretty difficult.  If it can be done in SQL it is possible that you could then use the results in Report Writer, but I think that would add yet another level of complexity.  Creating something like this in RW would probably force you to either concatenate the apply data into one field or force a maximum allowed.  Either way not pretty.  

&lt;em&gt;-Victoria&lt;/em&gt;]]></description>
		<content:encoded><![CDATA[<p>Hi Deborah,</p>
<p>Thanks for the kind words! </p>
<p>I believe this can be done in SQL, but not without some serious effort.  If you knew upfront how many columns you would need for the apply information, this might be a little easier, otherwise, you would have to build the columns dynamically in your code which is pretty difficult.  If it can be done in SQL it is possible that you could then use the results in Report Writer, but I think that would add yet another level of complexity.  Creating something like this in RW would probably force you to either concatenate the apply data into one field or force a maximum allowed.  Either way not pretty.  </p>
<p><em>-Victoria</em></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Deborah</title>
		<link>http://victoriayudin.com/2008/10/22/sql-view-ap-apply-in-gp/#comment-4289</link>
		<dc:creator><![CDATA[Deborah]]></dc:creator>
		<pubDate>Mon, 28 Jun 2010 19:28:22 +0000</pubDate>
		<guid isPermaLink="false">http://victoriayudin.wordpress.com/?p=434#comment-4289</guid>
		<description><![CDATA[Hi Victoria,

Thanks for posting this view.  I always find your posts very helpful.  Now I have a question.  Do you know if it&#039;s possible in either Report Writer or in a SQL view to get all the invoices applied to a particular check into one row?  For instance, if one check paid three invoices, we want just one row for that check showing separate columns for each invoice number and amount paid.]]></description>
		<content:encoded><![CDATA[<p>Hi Victoria,</p>
<p>Thanks for posting this view.  I always find your posts very helpful.  Now I have a question.  Do you know if it&#8217;s possible in either Report Writer or in a SQL view to get all the invoices applied to a particular check into one row?  For instance, if one check paid three invoices, we want just one row for that check showing separate columns for each invoice number and amount paid.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Victoria Yudin</title>
		<link>http://victoriayudin.com/2008/10/22/sql-view-ap-apply-in-gp/#comment-2800</link>
		<dc:creator><![CDATA[Victoria Yudin]]></dc:creator>
		<pubDate>Tue, 22 Dec 2009 21:42:38 +0000</pubDate>
		<guid isPermaLink="false">http://victoriayudin.wordpress.com/?p=434#comment-2800</guid>
		<description><![CDATA[JHM,

If you are paying the vendor electronically and they do not already know about the credits, then you would have to find some way of letting them know.  The method of doing that will depend greatly on your exact work flow - I would recommend talking to your GP Partner about the best way for your specific situation.  You may be able to print the remittance information from GP or it may be better/easier to create a custom report.

&lt;em&gt;-Victoria&lt;/em&gt;]]></description>
		<content:encoded><![CDATA[<p>JHM,</p>
<p>If you are paying the vendor electronically and they do not already know about the credits, then you would have to find some way of letting them know.  The method of doing that will depend greatly on your exact work flow &#8211; I would recommend talking to your GP Partner about the best way for your specific situation.  You may be able to print the remittance information from GP or it may be better/easier to create a custom report.</p>
<p><em>-Victoria</em></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: jmh</title>
		<link>http://victoriayudin.com/2008/10/22/sql-view-ap-apply-in-gp/#comment-2798</link>
		<dc:creator><![CDATA[jmh]]></dc:creator>
		<pubDate>Tue, 22 Dec 2009 21:35:07 +0000</pubDate>
		<guid isPermaLink="false">http://victoriayudin.wordpress.com/?p=434#comment-2798</guid>
		<description><![CDATA[Hi,

    Per this conversation about credit in GP. I understand if you print checks the applied documents can appear on the stub.  What happens if you pay electronically the vendor?  how would they know???]]></description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>    Per this conversation about credit in GP. I understand if you print checks the applied documents can appear on the stub.  What happens if you pay electronically the vendor?  how would they know???</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Victoria Yudin</title>
		<link>http://victoriayudin.com/2008/10/22/sql-view-ap-apply-in-gp/#comment-1705</link>
		<dc:creator><![CDATA[Victoria Yudin]]></dc:creator>
		<pubDate>Sun, 12 Jul 2009 10:11:48 +0000</pubDate>
		<guid isPermaLink="false">http://victoriayudin.wordpress.com/?p=434#comment-1705</guid>
		<description><![CDATA[Hi Kim,

PM30600 holds the GL Distributions for historical payables transactions.  Since this particular view is only showing apply information (what invoice was paid with what check, credit memo, etc.) there was no reason to show the GL distributions here.  You may want to take a look at my &lt;a href=&quot;http://victoriayudin.com/2008/11/28/sql-view-to-show-all-gl-distributions-for-ap-transactions/&quot; rel=&quot;nofollow&quot;&gt;view for Payables GL Distributions&lt;/a&gt; - I think that would help get you started on your report.

&lt;em&gt;-Victoria&lt;/em&gt;]]></description>
		<content:encoded><![CDATA[<p>Hi Kim,</p>
<p>PM30600 holds the GL Distributions for historical payables transactions.  Since this particular view is only showing apply information (what invoice was paid with what check, credit memo, etc.) there was no reason to show the GL distributions here.  You may want to take a look at my <a href="http://victoriayudin.com/2008/11/28/sql-view-to-show-all-gl-distributions-for-ap-transactions/" rel="nofollow">view for Payables GL Distributions</a> &#8211; I think that would help get you started on your report.</p>
<p><em>-Victoria</em></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Kim</title>
		<link>http://victoriayudin.com/2008/10/22/sql-view-ap-apply-in-gp/#comment-1702</link>
		<dc:creator><![CDATA[Kim]]></dc:creator>
		<pubDate>Sat, 11 Jul 2009 20:24:49 +0000</pubDate>
		<guid isPermaLink="false">http://victoriayudin.wordpress.com/?p=434#comment-1702</guid>
		<description><![CDATA[Hello Victoria,
Thank you for all of your work published here on your web site.   

I am a novice with the GP database so I have a lot to learn:

I have a question in regards to the SQL view to show AP apply information in GP:
1) How come you are not using PM30600 table?  what is the difference between PM30600 and the other PM tables?
2) I need to write a crystal report to show all the expenses including the journal entries, credit memo...
  I found some of the data in PM30600 and the journal entries are in the GL20000 table.   What other tables do I need to include in order to get all the expenses?
3) I guess I have to create a view like the example you had above and then I can use Crystal report to display the data.  

I really appreciate your help. 

Kim Hoang]]></description>
		<content:encoded><![CDATA[<p>Hello Victoria,<br />
Thank you for all of your work published here on your web site.   </p>
<p>I am a novice with the GP database so I have a lot to learn:</p>
<p>I have a question in regards to the SQL view to show AP apply information in GP:<br />
1) How come you are not using PM30600 table?  what is the difference between PM30600 and the other PM tables?<br />
2) I need to write a crystal report to show all the expenses including the journal entries, credit memo&#8230;<br />
  I found some of the data in PM30600 and the journal entries are in the GL20000 table.   What other tables do I need to include in order to get all the expenses?<br />
3) I guess I have to create a view like the example you had above and then I can use Crystal report to display the data.  </p>
<p>I really appreciate your help. </p>
<p>Kim Hoang</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Victoria Yudin</title>
		<link>http://victoriayudin.com/2008/10/22/sql-view-ap-apply-in-gp/#comment-1540</link>
		<dc:creator><![CDATA[Victoria Yudin]]></dc:creator>
		<pubDate>Mon, 08 Jun 2009 21:25:43 +0000</pubDate>
		<guid isPermaLink="false">http://victoriayudin.wordpress.com/?p=434#comment-1540</guid>
		<description><![CDATA[Jason,

Yes, Doc Type of 1 = &quot;Invoice&quot; in payables.

&lt;em&gt;-Victoria&lt;/em&gt;]]></description>
		<content:encoded><![CDATA[<p>Jason,</p>
<p>Yes, Doc Type of 1 = &#8220;Invoice&#8221; in payables.</p>
<p><em>-Victoria</em></p>
]]></content:encoded>
	</item>
</channel>
</rss>

