<?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 for Payables payment apply detail in GP</title>
	<atom:link href="http://victoriayudin.com/2009/10/22/sql-view-for-payables-payment-apply-detail-in-dynamics-gp/feed/" rel="self" type="application/rss+xml" />
	<link>http://victoriayudin.com/2009/10/22/sql-view-for-payables-payment-apply-detail-in-dynamics-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/2009/10/22/sql-view-for-payables-payment-apply-detail-in-dynamics-gp/#comment-22992</link>
		<dc:creator><![CDATA[Victoria Yudin]]></dc:creator>
		<pubDate>Wed, 02 May 2012 18:00:58 +0000</pubDate>
		<guid isPermaLink="false">http://victoriayudin.com/?p=2014#comment-22992</guid>
		<description><![CDATA[Phil,

This was not meant to replace the Check Distribution report.  While I have never compared the two, one difference I know of is that my code will show ALL payments, whereas the GP report will show only checks.  Have you tried filtering on the Payment_Type column in my code to include only checks?  

That said, I am not sure of the exact logic used by the Check Distribution report, so I am not sure if that is the only difference, if you are finding others and need help tracking them down, please write back with more details.

&lt;em&gt;-Victoria&lt;/em&gt;]]></description>
		<content:encoded><![CDATA[<p>Phil,</p>
<p>This was not meant to replace the Check Distribution report.  While I have never compared the two, one difference I know of is that my code will show ALL payments, whereas the GP report will show only checks.  Have you tried filtering on the Payment_Type column in my code to include only checks?  </p>
<p>That said, I am not sure of the exact logic used by the Check Distribution report, so I am not sure if that is the only difference, if you are finding others and need help tracking them down, please write back with more details.</p>
<p><em>-Victoria</em></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Phil</title>
		<link>http://victoriayudin.com/2009/10/22/sql-view-for-payables-payment-apply-detail-in-dynamics-gp/#comment-22991</link>
		<dc:creator><![CDATA[Phil]]></dc:creator>
		<pubDate>Wed, 02 May 2012 17:34:47 +0000</pubDate>
		<guid isPermaLink="false">http://victoriayudin.com/?p=2014#comment-22991</guid>
		<description><![CDATA[How does this script deal with partial payments? Our customer is comparing it to the check distribution report out of Dynamics, and they are not matching. Is there any way to do the same thing that report does, or will it only show the total invoice distribution amounts?]]></description>
		<content:encoded><![CDATA[<p>How does this script deal with partial payments? Our customer is comparing it to the check distribution report out of Dynamics, and they are not matching. Is there any way to do the same thing that report does, or will it only show the total invoice distribution amounts?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Takeshi</title>
		<link>http://victoriayudin.com/2009/10/22/sql-view-for-payables-payment-apply-detail-in-dynamics-gp/#comment-18988</link>
		<dc:creator><![CDATA[Takeshi]]></dc:creator>
		<pubDate>Fri, 20 Jan 2012 19:54:45 +0000</pubDate>
		<guid isPermaLink="false">http://victoriayudin.com/?p=2014#comment-18988</guid>
		<description><![CDATA[Thanks for the quick response, Victoria.
I guess my assumption about PM10200 was wrong.
I haven&#039;t run it against our live data yet, but I will let you know if I find any incorrect results (hopefully not).

Thanks again!]]></description>
		<content:encoded><![CDATA[<p>Thanks for the quick response, Victoria.<br />
I guess my assumption about PM10200 was wrong.<br />
I haven&#8217;t run it against our live data yet, but I will let you know if I find any incorrect results (hopefully not).</p>
<p>Thanks again!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Victoria Yudin</title>
		<link>http://victoriayudin.com/2009/10/22/sql-view-for-payables-payment-apply-detail-in-dynamics-gp/#comment-18974</link>
		<dc:creator><![CDATA[Victoria Yudin]]></dc:creator>
		<pubDate>Fri, 20 Jan 2012 10:16:47 +0000</pubDate>
		<guid isPermaLink="false">http://victoriayudin.com/?p=2014#comment-18974</guid>
		<description><![CDATA[Hi Takeshi,

PM20100 is a Temporary table, which I try to stay away from when coding reports.  PM10200 has the apply information for WORK and OPEN transactions.  PM30300 has the apply information for HISTORY transactions.  So the combination of PM10200 and PM30300 should be sufficient for the data needed.  Are you finding that this view is not giving you correct results?  

Out of curiosity, I tested replacing PM10200 with PM20100.  In my data set, I get the same number of results with either.  However PM20100 has a much larger amount of records than PM10200.  So all other things being equal, using a table with less records should make the query faster.  I have also seen data issues in the past where records get stuck in PM20100 and need to be cleared out manually for various reasons.  Just another reason I would not use this table for reporting if I have other options. 

&lt;em&gt;-Victoria&lt;/em&gt;]]></description>
		<content:encoded><![CDATA[<p>Hi Takeshi,</p>
<p>PM20100 is a Temporary table, which I try to stay away from when coding reports.  PM10200 has the apply information for WORK and OPEN transactions.  PM30300 has the apply information for HISTORY transactions.  So the combination of PM10200 and PM30300 should be sufficient for the data needed.  Are you finding that this view is not giving you correct results?  </p>
<p>Out of curiosity, I tested replacing PM10200 with PM20100.  In my data set, I get the same number of results with either.  However PM20100 has a much larger amount of records than PM10200.  So all other things being equal, using a table with less records should make the query faster.  I have also seen data issues in the past where records get stuck in PM20100 and need to be cleared out manually for various reasons.  Just another reason I would not use this table for reporting if I have other options. </p>
<p><em>-Victoria</em></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Takeshi</title>
		<link>http://victoriayudin.com/2009/10/22/sql-view-for-payables-payment-apply-detail-in-dynamics-gp/#comment-18958</link>
		<dc:creator><![CDATA[Takeshi]]></dc:creator>
		<pubDate>Fri, 20 Jan 2012 03:40:47 +0000</pubDate>
		<guid isPermaLink="false">http://victoriayudin.com/?p=2014#comment-18958</guid>
		<description><![CDATA[Hi Victoria,

I was just looking at this query and run into a question:
I believe this query lists all payments with documents they applied to.
If you are listing all payments in PM20000, don&#039;t you have to use PM20100 for apply information instead of PM10200, which is for unposted transactions?

Please tell me if I&#039;m going crazy here.
Thank you!]]></description>
		<content:encoded><![CDATA[<p>Hi Victoria,</p>
<p>I was just looking at this query and run into a question:<br />
I believe this query lists all payments with documents they applied to.<br />
If you are listing all payments in PM20000, don&#8217;t you have to use PM20100 for apply information instead of PM10200, which is for unposted transactions?</p>
<p>Please tell me if I&#8217;m going crazy here.<br />
Thank you!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: tami</title>
		<link>http://victoriayudin.com/2009/10/22/sql-view-for-payables-payment-apply-detail-in-dynamics-gp/#comment-12929</link>
		<dc:creator><![CDATA[tami]]></dc:creator>
		<pubDate>Thu, 11 Aug 2011 20:55:06 +0000</pubDate>
		<guid isPermaLink="false">http://victoriayudin.com/?p=2014#comment-12929</guid>
		<description><![CDATA[Hello Victoria,

Thank you for responding back so qucikly.  My bad, I said I was using your AP_APPLY script and not getting the intended resuilts.  I was actually using the Payables_Apply_Detail script whcih was not returning CM&#039;s.  I have swithched to your AP_APPLY script and it&#039;s is giving me both CM&#039;s as well as not returning voided transactions.

Thanks for your time and efforts!!

~Tami]]></description>
		<content:encoded><![CDATA[<p>Hello Victoria,</p>
<p>Thank you for responding back so qucikly.  My bad, I said I was using your AP_APPLY script and not getting the intended resuilts.  I was actually using the Payables_Apply_Detail script whcih was not returning CM&#8217;s.  I have swithched to your AP_APPLY script and it&#8217;s is giving me both CM&#8217;s as well as not returning voided transactions.</p>
<p>Thanks for your time and efforts!!</p>
<p>~Tami</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Victoria Yudin</title>
		<link>http://victoriayudin.com/2009/10/22/sql-view-for-payables-payment-apply-detail-in-dynamics-gp/#comment-11649</link>
		<dc:creator><![CDATA[Victoria Yudin]]></dc:creator>
		<pubDate>Thu, 23 Jun 2011 12:22:27 +0000</pubDate>
		<guid isPermaLink="false">http://victoriayudin.com/?p=2014#comment-11649</guid>
		<description><![CDATA[Hi Tami,

I have not tried this myself, but I would think you&#039;d need to add a column for Document Type (to either the payments, or the apply to docs, or both, depending on what you wanted to be able to zoom to) and then use the Payables Transaction Inquiry under Advanced Go Tos.  

&lt;em&gt;-Victoria&lt;/em&gt;]]></description>
		<content:encoded><![CDATA[<p>Hi Tami,</p>
<p>I have not tried this myself, but I would think you&#8217;d need to add a column for Document Type (to either the payments, or the apply to docs, or both, depending on what you wanted to be able to zoom to) and then use the Payables Transaction Inquiry under Advanced Go Tos.  </p>
<p><em>-Victoria</em></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tami</title>
		<link>http://victoriayudin.com/2009/10/22/sql-view-for-payables-payment-apply-detail-in-dynamics-gp/#comment-11625</link>
		<dc:creator><![CDATA[Tami]]></dc:creator>
		<pubDate>Wed, 22 Jun 2011 21:27:34 +0000</pubDate>
		<guid isPermaLink="false">http://victoriayudin.com/?p=2014#comment-11625</guid>
		<description><![CDATA[Victoria 

I am using your AP Apply view in SLB and was wondering if you can or have created a GO To for it.  I would like to be able to drill into the original AP Transastion entry winow or zoom.

Thanks!]]></description>
		<content:encoded><![CDATA[<p>Victoria </p>
<p>I am using your AP Apply view in SLB and was wondering if you can or have created a GO To for it.  I would like to be able to drill into the original AP Transastion entry winow or zoom.</p>
<p>Thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Victoria Yudin</title>
		<link>http://victoriayudin.com/2009/10/22/sql-view-for-payables-payment-apply-detail-in-dynamics-gp/#comment-11382</link>
		<dc:creator><![CDATA[Victoria Yudin]]></dc:creator>
		<pubDate>Thu, 16 Jun 2011 09:44:23 +0000</pubDate>
		<guid isPermaLink="false">http://victoriayudin.com/?p=2014#comment-11382</guid>
		<description><![CDATA[Hi Noraini,

I think this is what you&#039;re looking for: http://victoriayudin.com/2008/10/22/sql-view-ap-apply-in-gp/.

&lt;em&gt;-Victoria&lt;/em&gt;]]></description>
		<content:encoded><![CDATA[<p>Hi Noraini,</p>
<p>I think this is what you&#8217;re looking for: <a href="http://victoriayudin.com/2008/10/22/sql-view-ap-apply-in-gp/" rel="nofollow">http://victoriayudin.com/2008/10/22/sql-view-ap-apply-in-gp/</a>.</p>
<p><em>-Victoria</em></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Noraini</title>
		<link>http://victoriayudin.com/2009/10/22/sql-view-for-payables-payment-apply-detail-in-dynamics-gp/#comment-11380</link>
		<dc:creator><![CDATA[Noraini]]></dc:creator>
		<pubDate>Thu, 16 Jun 2011 08:54:45 +0000</pubDate>
		<guid isPermaLink="false">http://victoriayudin.com/?p=2014#comment-11380</guid>
		<description><![CDATA[Dear Victoria,

 I&#039;m Noraini. This view is so helpful. Thanks. For your information, one of my customer need to show payments which apply to original document invoice amount and original credit memos amount. How do I get this information? 

Regards,
Noraini]]></description>
		<content:encoded><![CDATA[<p>Dear Victoria,</p>
<p> I&#8217;m Noraini. This view is so helpful. Thanks. For your information, one of my customer need to show payments which apply to original document invoice amount and original credit memos amount. How do I get this information? </p>
<p>Regards,<br />
Noraini</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Amir</title>
		<link>http://victoriayudin.com/2009/10/22/sql-view-for-payables-payment-apply-detail-in-dynamics-gp/#comment-7665</link>
		<dc:creator><![CDATA[Amir]]></dc:creator>
		<pubDate>Fri, 28 Jan 2011 18:07:26 +0000</pubDate>
		<guid isPermaLink="false">http://victoriayudin.com/?p=2014#comment-7665</guid>
		<description><![CDATA[Thanks Victoria, will check it out.]]></description>
		<content:encoded><![CDATA[<p>Thanks Victoria, will check it out.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Victoria Yudin</title>
		<link>http://victoriayudin.com/2009/10/22/sql-view-for-payables-payment-apply-detail-in-dynamics-gp/#comment-7662</link>
		<dc:creator><![CDATA[Victoria Yudin]]></dc:creator>
		<pubDate>Fri, 28 Jan 2011 09:32:21 +0000</pubDate>
		<guid isPermaLink="false">http://victoriayudin.com/?p=2014#comment-7662</guid>
		<description><![CDATA[Hi Amir,

The &#039;REMIT&#039; transactions are generated by Dynamics GP during a check run when a remittance needs to be printed, based on rules set up in GP for the payables subledger.  Here is one example of when this might happen: 
1. You cut a check for vendor A on 1/2/11.
2. You enter a credit memo for vendor A on 1/3/11.
3. You enter an invoice for vendor A on 1/4/11 and apply the credit memo from step 2 to the invoice.
4. On 1/5/11 you do a check run and include all your vendors, or some vendor range that would include vendor A.  In the Payables module setup you have the &#039;Print Previously Applied Documents on Remittance&#039; selected.  As part of the check run a remittance document for vendor A will be generated by GP showing apply information since the last time you have cut a check to vendor A.  It will not use up a check number, but a &#039;transaction&#039; is created for GP to be able to print the remittance.  

These remittance transactions will always have an amount of zero and should be fine to ignore, as you suspect.  

Hope that helps,
&lt;em&gt;-Victoria&lt;/em&gt;]]></description>
		<content:encoded><![CDATA[<p>Hi Amir,</p>
<p>The &#8216;REMIT&#8217; transactions are generated by Dynamics GP during a check run when a remittance needs to be printed, based on rules set up in GP for the payables subledger.  Here is one example of when this might happen:<br />
1. You cut a check for vendor A on 1/2/11.<br />
2. You enter a credit memo for vendor A on 1/3/11.<br />
3. You enter an invoice for vendor A on 1/4/11 and apply the credit memo from step 2 to the invoice.<br />
4. On 1/5/11 you do a check run and include all your vendors, or some vendor range that would include vendor A.  In the Payables module setup you have the &#8216;Print Previously Applied Documents on Remittance&#8217; selected.  As part of the check run a remittance document for vendor A will be generated by GP showing apply information since the last time you have cut a check to vendor A.  It will not use up a check number, but a &#8216;transaction&#8217; is created for GP to be able to print the remittance.  </p>
<p>These remittance transactions will always have an amount of zero and should be fine to ignore, as you suspect.  </p>
<p>Hope that helps,<br />
<em>-Victoria</em></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Amir</title>
		<link>http://victoriayudin.com/2009/10/22/sql-view-for-payables-payment-apply-detail-in-dynamics-gp/#comment-7656</link>
		<dc:creator><![CDATA[Amir]]></dc:creator>
		<pubDate>Fri, 28 Jan 2011 02:58:14 +0000</pubDate>
		<guid isPermaLink="false">http://victoriayudin.com/?p=2014#comment-7656</guid>
		<description><![CDATA[Hey Victoria,

We have been using the query for some time, and from output of the query we are getting:
Payment_Document_Number = &#039;REMIT000000000000002&#039; with Payment_Document_Type = 6 (where 6 is the  checks type).
However, all the other Payment_Document_Type = 6 cases are coming always having numeric ids rather then alphanumeric data.

Do you know what type of activity will reproduce this case?

From looking at the data where the $ amount is zero on that row it look like something it may be ok to ignore.
But I want to be able to replicate it to clearly validate we&#039;re doing the right thing.

Thanks much,

Amir]]></description>
		<content:encoded><![CDATA[<p>Hey Victoria,</p>
<p>We have been using the query for some time, and from output of the query we are getting:<br />
Payment_Document_Number = &#8216;REMIT000000000000002&#8242; with Payment_Document_Type = 6 (where 6 is the  checks type).<br />
However, all the other Payment_Document_Type = 6 cases are coming always having numeric ids rather then alphanumeric data.</p>
<p>Do you know what type of activity will reproduce this case?</p>
<p>From looking at the data where the $ amount is zero on that row it look like something it may be ok to ignore.<br />
But I want to be able to replicate it to clearly validate we&#8217;re doing the right thing.</p>
<p>Thanks much,</p>
<p>Amir</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Victoria Yudin</title>
		<link>http://victoriayudin.com/2009/10/22/sql-view-for-payables-payment-apply-detail-in-dynamics-gp/#comment-7644</link>
		<dc:creator><![CDATA[Victoria Yudin]]></dc:creator>
		<pubDate>Thu, 27 Jan 2011 16:27:02 +0000</pubDate>
		<guid isPermaLink="false">http://victoriayudin.com/?p=2014#comment-7644</guid>
		<description><![CDATA[Jerri,

I believe &lt;a href=&quot;http://victoriayudin.com/2008/10/17/sql-view-what-check-paid-purchase-order/&quot; rel=&quot;nofollow&quot;&gt;this view&lt;/a&gt; will give you what you are looking for.

&lt;em&gt;-Victoria&lt;/em&gt;]]></description>
		<content:encoded><![CDATA[<p>Jerri,</p>
<p>I believe <a href="http://victoriayudin.com/2008/10/17/sql-view-what-check-paid-purchase-order/" rel="nofollow">this view</a> will give you what you are looking for.</p>
<p><em>-Victoria</em></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jerri</title>
		<link>http://victoriayudin.com/2009/10/22/sql-view-for-payables-payment-apply-detail-in-dynamics-gp/#comment-7643</link>
		<dc:creator><![CDATA[Jerri]]></dc:creator>
		<pubDate>Thu, 27 Jan 2011 16:23:39 +0000</pubDate>
		<guid isPermaLink="false">http://victoriayudin.com/?p=2014#comment-7643</guid>
		<description><![CDATA[Victoria,

I need to obtain the voucher number and check information for an invoice that is entered into the Receivings Transaction Entry screen. I know there is information in the PM30300 table, but it doesn&#039;t include the receipt number. Do you have a way to collect this information via the receipt number?

Thanks for all of your posts...they have saved me on a few projects :-)
Jerri]]></description>
		<content:encoded><![CDATA[<p>Victoria,</p>
<p>I need to obtain the voucher number and check information for an invoice that is entered into the Receivings Transaction Entry screen. I know there is information in the PM30300 table, but it doesn&#8217;t include the receipt number. Do you have a way to collect this information via the receipt number?</p>
<p>Thanks for all of your posts&#8230;they have saved me on a few projects <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /><br />
Jerri</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jason Shepard</title>
		<link>http://victoriayudin.com/2009/10/22/sql-view-for-payables-payment-apply-detail-in-dynamics-gp/#comment-7162</link>
		<dc:creator><![CDATA[Jason Shepard]]></dc:creator>
		<pubDate>Mon, 10 Jan 2011 20:07:16 +0000</pubDate>
		<guid isPermaLink="false">http://victoriayudin.com/?p=2014#comment-7162</guid>
		<description><![CDATA[Wow!  Thanks for the quick follow-up.  I thought our Controller had already run Check Links, but after just speaking with him I found he hadn&#039;t.  We&#039;re going to try that tonight.

I consider myself to be pretty savvy, but I&#039;m concerned with being directly involved with this issue due to my lack of knowledge of the Purchasing tables.  I feel that if I had a little more intimate knowledge I would be able to clear this up if Check Links doesn&#039;t work, but I believe you&#039;re right and we will be calling our GP Partner for assistance with this.

Thanks again!]]></description>
		<content:encoded><![CDATA[<p>Wow!  Thanks for the quick follow-up.  I thought our Controller had already run Check Links, but after just speaking with him I found he hadn&#8217;t.  We&#8217;re going to try that tonight.</p>
<p>I consider myself to be pretty savvy, but I&#8217;m concerned with being directly involved with this issue due to my lack of knowledge of the Purchasing tables.  I feel that if I had a little more intimate knowledge I would be able to clear this up if Check Links doesn&#8217;t work, but I believe you&#8217;re right and we will be calling our GP Partner for assistance with this.</p>
<p>Thanks again!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Victoria Yudin</title>
		<link>http://victoriayudin.com/2009/10/22/sql-view-for-payables-payment-apply-detail-in-dynamics-gp/#comment-7161</link>
		<dc:creator><![CDATA[Victoria Yudin]]></dc:creator>
		<pubDate>Mon, 10 Jan 2011 19:55:55 +0000</pubDate>
		<guid isPermaLink="false">http://victoriayudin.com/?p=2014#comment-7161</guid>
		<description><![CDATA[Hi Jason,

Thanks for the kind words.  I have run into similar situations before.  First step is to run check links and reconcile on the purchasing series.  Sometimes that will clear up the issue.  If that does not help, then you will need to fix this directly in the tables.  Since every situation is different, I would advise to get your GP partner or GP Support to help with this, as it can get pretty involved and it&#039;s easy to get undesired results.

&lt;em&gt;-Victoria&lt;/em&gt;]]></description>
		<content:encoded><![CDATA[<p>Hi Jason,</p>
<p>Thanks for the kind words.  I have run into similar situations before.  First step is to run check links and reconcile on the purchasing series.  Sometimes that will clear up the issue.  If that does not help, then you will need to fix this directly in the tables.  Since every situation is different, I would advise to get your GP partner or GP Support to help with this, as it can get pretty involved and it&#8217;s easy to get undesired results.</p>
<p><em>-Victoria</em></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jason Shepard</title>
		<link>http://victoriayudin.com/2009/10/22/sql-view-for-payables-payment-apply-detail-in-dynamics-gp/#comment-7160</link>
		<dc:creator><![CDATA[Jason Shepard]]></dc:creator>
		<pubDate>Mon, 10 Jan 2011 19:50:31 +0000</pubDate>
		<guid isPermaLink="false">http://victoriayudin.com/?p=2014#comment-7160</guid>
		<description><![CDATA[Victoria,  I have received immense knowledge from your site, and I sincerely thank you for posting this information out there.

I have a question related to Payables Apply.  We had a situation where we were applying payments to invoices and received an out of memory error on the database server that is running GP.  We were left with a batch that had half applied that we cannot unapply, or recover the batch on.

Now, the batch is no longer available in batch recovery and I cannot find the apply details or distributions in the work, open or historical tables.  Is there a way we can unapply this batch so that we can attempt to repost?]]></description>
		<content:encoded><![CDATA[<p>Victoria,  I have received immense knowledge from your site, and I sincerely thank you for posting this information out there.</p>
<p>I have a question related to Payables Apply.  We had a situation where we were applying payments to invoices and received an out of memory error on the database server that is running GP.  We were left with a batch that had half applied that we cannot unapply, or recover the batch on.</p>
<p>Now, the batch is no longer available in batch recovery and I cannot find the apply details or distributions in the work, open or historical tables.  Is there a way we can unapply this batch so that we can attempt to repost?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Victoria Yudin</title>
		<link>http://victoriayudin.com/2009/10/22/sql-view-for-payables-payment-apply-detail-in-dynamics-gp/#comment-5556</link>
		<dc:creator><![CDATA[Victoria Yudin]]></dc:creator>
		<pubDate>Wed, 13 Oct 2010 07:58:08 +0000</pubDate>
		<guid isPermaLink="false">http://victoriayudin.com/?p=2014#comment-5556</guid>
		<description><![CDATA[Amir,

Thanks for the update.  To my knowledge there is nothing to address this in the latest version (GP 2010).  I cannot speak to plans to future versions, as nothing has been released on that.  

You can search and vote on existing product suggestions, or suggest your own, at this site: https://connect.microsoft.com/dynamicssuggestions.

&lt;em&gt;-Victoria&lt;/em&gt;]]></description>
		<content:encoded><![CDATA[<p>Amir,</p>
<p>Thanks for the update.  To my knowledge there is nothing to address this in the latest version (GP 2010).  I cannot speak to plans to future versions, as nothing has been released on that.  </p>
<p>You can search and vote on existing product suggestions, or suggest your own, at this site: <a href="https://connect.microsoft.com/dynamicssuggestions" rel="nofollow">https://connect.microsoft.com/dynamicssuggestions</a>.</p>
<p><em>-Victoria</em></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Amir</title>
		<link>http://victoriayudin.com/2009/10/22/sql-view-for-payables-payment-apply-detail-in-dynamics-gp/#comment-5552</link>
		<dc:creator><![CDATA[Amir]]></dc:creator>
		<pubDate>Wed, 13 Oct 2010 01:42:27 +0000</pubDate>
		<guid isPermaLink="false">http://victoriayudin.com/?p=2014#comment-5552</guid>
		<description><![CDATA[Hey Victoria,

Status update and a quick question.

So we&#039;ve gone with option 2 for now for 2 reasons - first to avoid the GP customization needed.  Second since we were already comfortable reading that data.  We know it&#039;s not perfect, but also believe it would be rare, then we&#039;ll throw in the fact that we&#039;ll be closely monitoring it (send alerts if it happens) + make it simple to manually fix the data - then it&#039;s a non-perfect but pretty practical solution.  (in fact all amounts are being read back, even if amounts exactly consume others.  Just that when they exactly consume the explicit association to check id is lost.  In case one can guarantee a single check per day per seller we could have been deducting the association based on date+seller)

Then another good news is that we are moving to the latest GP code soon.
In which case - since we know this is a missing the option 1 feature in GP - do you have any recommendation or knowledge how to check / where to look up if it&#039;s planned for an upcoming release?  
If not yet planned, I would want to file them a feature request for adding it.

Thanks,
Amir]]></description>
		<content:encoded><![CDATA[<p>Hey Victoria,</p>
<p>Status update and a quick question.</p>
<p>So we&#8217;ve gone with option 2 for now for 2 reasons &#8211; first to avoid the GP customization needed.  Second since we were already comfortable reading that data.  We know it&#8217;s not perfect, but also believe it would be rare, then we&#8217;ll throw in the fact that we&#8217;ll be closely monitoring it (send alerts if it happens) + make it simple to manually fix the data &#8211; then it&#8217;s a non-perfect but pretty practical solution.  (in fact all amounts are being read back, even if amounts exactly consume others.  Just that when they exactly consume the explicit association to check id is lost.  In case one can guarantee a single check per day per seller we could have been deducting the association based on date+seller)</p>
<p>Then another good news is that we are moving to the latest GP code soon.<br />
In which case &#8211; since we know this is a missing the option 1 feature in GP &#8211; do you have any recommendation or knowledge how to check / where to look up if it&#8217;s planned for an upcoming release?<br />
If not yet planned, I would want to file them a feature request for adding it.</p>
<p>Thanks,<br />
Amir</p>
]]></content:encoded>
	</item>
</channel>
</rss>

