<?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/"
	>

<channel>
	<title>MIPRO Unfiltered &#187; howto</title>
	<atom:link href="http://www.miproconsulting.com/blog/tag/howto/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.miproconsulting.com/blog</link>
	<description>MIPRO Consulting on PeopleSoft, Business Intelligence and General Nerdery</description>
	<lastBuildDate>Wed, 08 Feb 2012 12:48:55 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>[HOWTO] Using PeopleCode to Create Charts</title>
		<link>http://www.miproconsulting.com/blog/2011/04/peoplecode-charts/</link>
		<comments>http://www.miproconsulting.com/blog/2011/04/peoplecode-charts/#comments</comments>
		<pubDate>Tue, 12 Apr 2011 12:14:41 +0000</pubDate>
		<dc:creator>Jeff Ventura</dc:creator>
				<category><![CDATA[ERP]]></category>
		<category><![CDATA[Nerdery]]></category>
		<category><![CDATA[oracle]]></category>
		<category><![CDATA[PeopleSoft]]></category>
		<category><![CDATA[coding]]></category>
		<category><![CDATA[howto]]></category>
		<category><![CDATA[peoplecode]]></category>
		<category><![CDATA[tech tips]]></category>

		<guid isPermaLink="false">http://www.miproconsulting.com/blog/?p=2415</guid>
		<description><![CDATA[Stumbled across this post about how to create charts in PeopleCode with a nice, clean approach.  From The PeopleSoft Blog: For those who haven&#8217;t tried creating a chart using peoplecode. I do not have the code which I did while I was working with my first company. But this example below from peoplebooks will give [...]]]></description>
			<content:encoded><![CDATA[<p></p><p>Stumbled across this post about how to create charts in PeopleCode with a nice, clean approach.  From <a href="http://ps.mytechspeak.com/2011/03/creating-chart-using-peoplecode.html?utm_source=feedburner&amp;utm_medium=feed&amp;utm_campaign=Feed%3A+ThePeoplesoftBlog+%28The+PeopleSoft+Blog%29&amp;utm_content=Google+Reader">The PeopleSoft Blog</a>:</p>
<blockquote><p><span style="font-family: Georgia, serif;">For  those who haven&#8217;t tried creating a chart using peoplecode. I do not  have the code which I did while I was working with my first company. But  this example below from peoplebooks will give you an idea. You can  create great charts using pagelet wizard also , but when the performance  part is considered, I will recommend the usage of chart class.</span></p>
<p>The below chart is created from a record with three fields, relating to  sales, month, and product. The series in the chart are based on the  product. The following is the complete code sample.</p>
<p><em> Global Chart &amp;oChart;</em></p>
<p><em>&amp;oChart = GetChart(QE_CHART_DUMREC.QE_CHART_FIELD);</em></p>
<p><em>&amp;oChart.SetData(Record.QE_CHART_RECORD);<br />
&amp;oChart.SetDataYAxis(QE_CHART_RECORD.QE_CHART_SALES);<br />
&amp;oChart.SetDataXAxis(QE_CHART_RECORD.QE_CHART_PRODUCT);</em></p>
<p><em>&amp;oChart.SetDataSeries(QE_CHART_RECORD.QE_CHART_REGION);</em></p>
<p><em>&amp;oChart.Type = %ChartType_2DStackedBar;</em></p>
<p><em>&amp;oChart.HasLegend = True;<br />
&amp;oChart.LegendPosition = %ChartLegend_Right;</p>
<p></em><em> </em><em> </em><em> </em><em> </em><em> &amp;oChart.XAxisLabelOrient = %ChartText_Vertical</em></p></blockquote>
<div class="post">
<div class="post-text">
<div class="post-body entry-content">
<blockquote><p><img class="alignnone" style="border: 0pt none;" title="image67.gif" src="http://www.miproconsulting.com/blog/wp-content/uploads/2011/04/image672.gif" border="0" alt="Image67" width="392" height="206" /></p></blockquote>
<blockquote><p>To create a chart:</p>
<ol>
<li>Open PeopleSoft      Application Designer.</li>
<li>Open the page      where the chart is to be inserted.</li>
<li>Insert the chart      control by either:
<ul>
<li>Clicking on the       chart icon in the toolbar, or</li>
<li>Selecting       Insert, Chart</li>
</ul>
</li>
<li>Draw the chart      control on the page.</li>
<li>Associate the      chart control with a record field</li>
</ol>
<p>Every  chart control must be associated with a record field. This is just the  field for the chart control. It is not the field used for drilling down  for data in the chart.</p>
<p>Bring up the chart control properties by either</p>
<ol>
<li>
<ul>
<li>Double-clicking       on the chart control, or</li>
<li>Right-clicking       on the chart control and selecting Page Field Properties.</li>
</ul>
</li>
<li>Select the      record name and field for the chart.</li>
</ol>
<p>On the Record tab of the chart control properties, select the record and field for the chart.</p>
<p>To make the control a page anchor, select the Enable as Page Anchor on the General tab.</p>
<ol>
<li>Write your      PeopleCode.</li>
</ol>
<p>In some event on the page, such as Activate, put the PeopleCode you need for populating the chart.</p>
<ol>
<li>Get the chart.</li>
</ol>
<p>The  first thing you must do is get the chart. You must use the record and  field name that you associated with the chart control on the page.</p>
<p><em>&amp;oChart = GetChart(QE_CHART_DUMREC.QE_CHART_FIELD);</em></p>
<ol>
<li>Set the data      records.</li>
</ol>
<p>Set  the data record. The SetData function associates the record data with  the chart. Then use the SetDataYAxis and SetDataXAxis functions to  associate specific fields in the record with the Y axis data and the X  axis data.</p>
<p><em>&amp;oChart.SetData(Record.QE_CHART_RECORD); </em></p>
<p><em>&amp;oChart.SetDataYAxis(QE_CHART_RECORD.QE_CHART_SALES); </em></p>
<p><em>&amp;oChart.SetDataXAxis(QE_CHART_RECORD.QE_CHART_PRODUCT);</em></p>
<p>This  is all the code needed to create a chart. You don’t need to set the  chart type: the default is a 2D bar chart. You don&#8217;t need to set the  series unless you want to group your data. Everything else is also  optional.</p>
<ol>
<li>(Optional) Set      the data series.</li>
</ol>
<p>In this example, we want to set the region as the series. This means that the data will be grouped according to the region.</p>
<p><em>&amp;oChart.SetDataSeries(QE_CHART_RECORD.QE_CHART_REGION);</em></p>
<ol>
<li>(Optional) Set      the chart type.</li>
</ol>
<p>Because  we want a stacked bar for the chart, we must set the Type property of  the chart. This means that each product (footballs, rackets, and so on)  will have a single bar, and the data series (California, Oregon, and so  on) will be what is &#8216;stacked&#8217;.</p>
<p><em>&amp;oChart.Type = %ChartType_2DStackedBar;</em></p>
<ol>
<li>(Optional) Set      legend and label attributes.</li>
</ol>
<p>For  this example, we want a legend, and want it to appear in the right  side. In addition, because the text of the series labels is so large,  they must be vertical to display all of them.</p>
<p><em>&amp;oChart.HasLegend = True;  &amp;oChart.LegendPosition = %ChartLegend_Right; </em></p>
<p><em>&amp;oChart.XAxisLabelOrient = %ChartText_Vertical;</em></p></blockquote>
<p>###</p>
<p><em><span style="color: #a5a5a5;">More links:</span></em></p>
<p><em><span style="color: #a5a5a5;">MIPRO Consulting </span></em><a href="http://www.miproconsulting.com/"><em><span style="color: #a5a5a5;">main website</span></em></a><em><span style="color: #a5a5a5;">.</span></em></p>
<p><em><span style="color: #a5a5a5;">You should follow MIPRO on </span></em><a href="http://twitter.com/mipro"><em><span style="color: #a5a5a5;">Twitter</span></em></a><em><span style="color: #a5a5a5;"> and </span></em><a href="http://www.facebook.com/mipro"><em><span style="color: #a5a5a5;">Facebook</span></em></a><em><span style="color: #a5a5a5;">.</span></em></p>
<p><a href="http://www.miproconsulting.com/blog/about-mipro-unfiltered/"><em><span style="color: #a5a5a5;">About this blog</span></em></a><em><span style="color: #a5a5a5;">.</span></em></p>
<p><em><br />
</em></p>
</div>
</div>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.miproconsulting.com/blog/2011/04/peoplecode-charts/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PeopleSoft: How to Enable Page Anchor</title>
		<link>http://www.miproconsulting.com/blog/2010/11/peoplesoft-page-anchor/</link>
		<comments>http://www.miproconsulting.com/blog/2010/11/peoplesoft-page-anchor/#comments</comments>
		<pubDate>Tue, 09 Nov 2010 15:27:13 +0000</pubDate>
		<dc:creator>Jeff Ventura</dc:creator>
				<category><![CDATA[ERP]]></category>
		<category><![CDATA[Nerdery]]></category>
		<category><![CDATA[oracle]]></category>
		<category><![CDATA[PeopleSoft]]></category>
		<category><![CDATA[howto]]></category>
		<category><![CDATA[page anchor]]></category>
		<category><![CDATA[peopletools]]></category>
		<category><![CDATA[tech]]></category>

		<guid isPermaLink="false">http://www.miproconsulting.com/blog/2010/11/peoplesoft-page-anchor/</guid>
		<description><![CDATA[Mani over at the PeopleSoft Technology Blog has a nice summary on how to enable the page anchor function in PeopleSoft apps: The Anchor fields should be a Push Button or Hyperlink On the General tab, Check the box, Enable as Page Anchor and give the Page Filed Name as &#8216;Anchor1&#8242; (upto us) 3. Keep [...]]]></description>
			<content:encoded><![CDATA[<p></p><p><a href="http://mytechspeak.blogspot.com/2010/10/enable-page-anchor.html?utm_source=feedburner&amp;utm_medium=feed&amp;utm_campaign=Feed%3A+ThePeoplesoftBlog+%28The+PeopleSoft+Blog%29" target="_blank">Mani over at the PeopleSoft Technology Blog</a> has a nice summary on how to enable the page anchor function in PeopleSoft apps:</p>
<blockquote>
<ol>
<li>The Anchor fields should be a Push Button or Hyperlink</li>
<li>On the General tab, Check the box, Enable as Page Anchor and give the Page Filed Name as &#8216;Anchor1&#8242; (upto us)</li>
<li>3. Keep this button at the top of the page</li>
<li>Create one more field with the same properties (Give the page field name as Anchor2)</li>
<li>On both the fields, change the destination (on the Type tab) to Page Anchor</li>
<li>Once done, Action tab will be enabled on the same Type tab</li>
<li>Give the Action Type as Page Anchor</li>
<li>Give &#8216;Related Control&#8217; as Anchor 2 for Anchor1 field and Anchor1 for Anchor2 field</li>
</ol>
<p>Once done, if you click on Anchor1, the control goes to Anchor2 and vice versa.</p></blockquote>
<p>Likewise, here’s an <a href="http://peoplesoft.ittoolbox.com/groups/technical-functional/peopletools-l/page-anchor-1197705" target="_blank">ongoing discussion on IT Toolbox</a> about what the page anchor is and how it works.</p>
<p>Thoughts or comments?  Let us hear them in the comments.</p>
<p>###</p>
<p><em><span style="color: #a5a5a5;">MIPRO Consulting is a nationally-recognized consulting firm specializing in </span><a href="http://www.miproconsulting.com/peoplesoft.htm"><span style="color: #a5a5a5;">PeopleSoft Enterprise</span></a><span style="color: #a5a5a5;"> (particularly Enterprise Asset Management) and </span><a href="http://www.miproconsulting.com/business-intelligence.htm"><span style="color: #a5a5a5;">Business Intelligence</span></a><span style="color: #a5a5a5;">. You’re reading MIPRO Unfiltered, its blog. If you’d like to contact MIPRO, </span><a href="mailto:jeff.micallef@miproconsulting.com?subject=Contact%20MIPRO"><span style="color: #a5a5a5;">email</span></a><span style="color: #a5a5a5;"> is a great place to start, or you can easily jump over to its </span><a href="http://www.miproconsulting.com"><span style="color: #a5a5a5;">main website</span></a><span style="color: #a5a5a5;">. If you’d like to see what MIPRO offers via </span><a href="http://twitter.com/mipro"><span style="color: #a5a5a5;">Twitter</span></a><span style="color: #a5a5a5;"> or </span><a href="http://www.facebook.com/pages/MiPro-Consulting/88589433767?sid=2aadd79a180a4987ce699427ba0367e9&amp;ref=search"><span style="color: #a5a5a5;">Facebook</span></a><span style="color: #a5a5a5;">, we’d love to have you.</span></em></p>
<p><em><span style="color: #a5a5a5;">More </span><a href="http://www.miproconsulting.com/blog/category/peoplesoft/"><span style="color: #a5a5a5;">PeopleSoft</span></a><span style="color: #a5a5a5;"> posts.</span></em></p>
]]></content:encoded>
			<wfw:commentRss>http://www.miproconsulting.com/blog/2010/11/peoplesoft-page-anchor/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Value of (Real) Integration Between Business Intelligence and MS Office</title>
		<link>http://www.miproconsulting.com/blog/2009/09/bi-msoffice/</link>
		<comments>http://www.miproconsulting.com/blog/2009/09/bi-msoffice/#comments</comments>
		<pubDate>Tue, 29 Sep 2009 04:38:00 +0000</pubDate>
		<dc:creator>Larry Zagata</dc:creator>
				<category><![CDATA[business intelligence]]></category>
		<category><![CDATA[bi]]></category>
		<category><![CDATA[Business]]></category>
		<category><![CDATA[enterprise apps]]></category>
		<category><![CDATA[howto]]></category>
		<category><![CDATA[integrations]]></category>
		<category><![CDATA[IT]]></category>
		<category><![CDATA[ms office]]></category>
		<category><![CDATA[productivity]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[tips]]></category>

		<guid isPermaLink="false">http://www.miproconsulting.com/blog/2009/09/bi-msoffice/</guid>
		<description><![CDATA[Something I find many folks don’t know, at least on one level or another: most of today’s business intelligence (BI) solutions have been designed and built with integration into Microsoft Office in mind. Arguably, Excel is the main medium to which most BI information is exported (or in some cases, it can be the BI [...]]]></description>
			<content:encoded><![CDATA[<p></p><p>Something I find many folks don’t know, at least on one level or another: most of today’s business intelligence (BI) solutions have been designed and built with integration into Microsoft Office in mind. Arguably, Excel is the main<a href="http://www.miproconsulting.com/blog/wp-content/uploads/2009/09/MS_Office.jpg"><img style="margin: 5px 0px 5px 5px; display: inline" title="MS_Office" src="http://www.miproconsulting.com/blog/wp-content/uploads/2009/09/MS_Office_thumb.jpg" alt="MS_Office" width="240" height="229" align="right" /></a> medium to which most BI information is exported (or in some cases, it can be <a href="http://www.miproconsulting.com/blog/2009/08/excel-is-not-bi/" target="_blank">the BI tool unto itself</a>), so it’s logical that these integrations are essential to any strategic BI platform. Really, no longer is a full integration with Microsoft Office a differentiator – it should be required functionality.</p>
<p>However, even though MS Office integration is now fairly prevalent in most of the main BI solutions, this technology still tends not to be taken advantage of in the ways it was intended. There is much unrealized potential related to this integration and most of it is the result of a lack of training or education.</p>
<p>MS Office integration is bisynchronous, meaning you can initiate BI from the appropriate Office product or you can export from a dedicated BI tool to an Office product. In too many cases (and this truly saddens the hardcore BI wonk in me), the two-way integration for end users simply means there is a nice little button in their Office task bar that they can click to get access to the BI solution and run a report.  Put another way, instead of starting in BI and exporting to Excel, the user starts in Office and accesses BI via a basic GUI integration. In this scenario there really isn’t much difference between the two and the advantages of this integration are essentially lost; it’s good for marketing feature bullet lists and not much else.</p>
<p><span id="more-739"></span></p>
<p>But there’s so much more to be had.  Let’s take a moment and explore a basic example that would harness more depth of this type of integration.</p>
<p>Let’s say you have to generate monthly presentations for your management team and you use the same PowerPoint template every month. However, each month your data changes and you have to update the numbers within your PPT.  This means you have to run your reports, manipulate them and get the data you need, each and every month.   You then must manually update the PPT with the new monthly data.</p>
<p>Depending on how extensive the reports are and how many slides you have and how much manipulation you have to conduct, this could take a significant number of hours to accomplish – all for something that’s pretty rote and programmatic.  Not only that, but while you’re doing such a task, you just <em>know</em> that this sort of work is exactly what integration and automation were designed to handle.</p>
<p>Well, what if your PPT were automatically integrated with your relevant BI reports that could, in turn, instantly populate the month’s data for your PPT? In this scenario, since only the data changes (not the content or format), you could simply use the integration with MS Office and automatically refresh the BI reports, saving you <em>significant</em> hours of time in preparing your presentation. Additionally, since this avoids the “manual” part of updating, you reduce the potential to introduce errors. The presentation stays the same, you refresh your important reports from your BI tool and the integration with Office does the rest.  Easy.</p>
<p>Is this the most powerful feature on Earth?  Not even close.  But it is often overlooked and downright underutilized.  Typically, once I show clients how they can trim a considerable chunk of time from their workflow with this integration, they wonder how they ever lived without it.</p>
<p>As with many things in enterprise technology, the gods live in the details.  From simplicity comes power.</p>
<p>###</p>
<p><strong>Previously by <a href="http://www.miproconsulting.com/blog/author/lzagata/">Larry Zagata</a>:</strong></p>
<ul>
<li><a href="http://www.miproconsulting.com/blog/2009/08/bi-requirements-gathering-2/" target="_blank">Business Intelligence Requirements Gathering: Digging Deeper</a></li>
<li><a href="http://www.miproconsulting.com/blog/2009/08/excel-is-not-bi/">Why Excel Is Not an Enterprise BI Solution</a></li>
<li><a href="http://www.miproconsulting.com/blog/2009/06/bi-requirements-gathering/">Art Meets Science: Business Intelligence Requirements Gathering</a></li>
<li><a href="http://www.miproconsulting.com/blog/2009/06/oracle-bi-peoplesoft-erp/">Living Together: Oracle BI and PeopleSoft</a></li>
<li><a href="http://www.miproconsulting.com/blog/2009/05/erp-vs-ebi/">Back to basics: Why choose an enterprise Business Intelligence tool, anyway?</a></li>
<li><a href="http://www.miproconsulting.com/blog/2009/03/bi-recession/">Using BI to Survive the Recession, Part I</a></li>
<li><a href="http://www.miproconsulting.com/blog/2009/03/bi-recession-2/">Using BI to Survive the Recession, Part II</a></li>
<li><a href="http://www.miproconsulting.com/blog/2009/03/bi-real-world-i/">Business Intelligence in the real world: Aligning metrics (Part I)</a></li>
<li><a href="http://www.miproconsulting.com/blog/2009/04/bi-real-world-ii/">Business Intelligence in the real world: Aligning metrics (Part II)</a></li>
</ul>
<p><strong>Related whitepapers (PDF):</strong></p>
<ul>
<li><a href="http://www.miproconsulting.com/whitepaper.php?file=bi-manifesto">MiPro’s Business Intelligence Manifesto: Six Requirements for an Effective BI Deployment</a></li>
</ul>
<p><strong>Related Services:</strong></p>
<ul>
<li><a href="http://www.miproconsulting.com/business-intelligence-oracle.htm">MiPro Consulting: Oracle BI Services</a></li>
<li><a href="http://www.miproconsulting.com/business-intelligence-sap.htm">MiPro Consulting: SAP Business Objects Services</a></li>
<li><a href="http://www.miproconsulting.com/resources.html">MiPro Consulting: Resources</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.miproconsulting.com/blog/2009/09/bi-msoffice/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>The Intricacies of PeopleSoft Invoice Matching</title>
		<link>http://www.miproconsulting.com/blog/2008/08/psft-invoice-matching/</link>
		<comments>http://www.miproconsulting.com/blog/2008/08/psft-invoice-matching/#comments</comments>
		<pubDate>Thu, 14 Aug 2008 14:41:15 +0000</pubDate>
		<dc:creator>Jeff Ventura</dc:creator>
				<category><![CDATA[ERP]]></category>
		<category><![CDATA[Nerdery]]></category>
		<category><![CDATA[PeopleSoft]]></category>
		<category><![CDATA[financials]]></category>
		<category><![CDATA[help]]></category>
		<category><![CDATA[howto]]></category>
		<category><![CDATA[invoice matching]]></category>
		<category><![CDATA[oracle]]></category>
		<category><![CDATA[tips and tricks]]></category>

		<guid isPermaLink="false">http://www.miproconsulting.com/blog/2008/08/psft-invoice-matching/</guid>
		<description><![CDATA[In our recent newsletter, two of our senior principal consultants wrote a quick bit about the differences in PeopleSoft invoice matching functionality from 8.9 to 9.0.  We get asked about this a lot, and for most users, the differences can be somewhat arcane.  Because of this, I&#8217;d like to share the article. Differences in PeopleSoft [...]]]></description>
			<content:encoded><![CDATA[<p></p><p><span class="drop_cap">I</span>n our <a href="http://www.miproconsulting.com/nl/?id=3" target="_blank">recent newsletter</a>, two of our senior principal consultants wrote a quick bit about the differences in PeopleSoft invoice matching functionality from 8.9 to 9.0.  We get asked about this a lot, and for most users, the differences can be somewhat arcane.  Because of this, I&#8217;d like to share the article.</p>
<h3>Differences in PeopleSoft Invoice Matching from 8.9 to 9.0: A High-level View</h3>
<p><em>by April Black and Jack Kochie, Sr. Principal Consultants</em></p>
<p>From PeopleSoft 8.9 to 9.0, some of the invoice matching and processing rules changed significantly, and we find many of our clients don’t know about the changes in any sort of detail.  At a high-level, here are the biggest-hitting changes:</p>
<ul>
<li>9.0 includes all features of prior releases</li>
<li>Expanded document association included (e.g. receipt selection)</li>
<li>Expanded rules engine (contexts: summary, tolerance, global), which provide:
<ul>
<li>More flexibility</li>
<li>Flow control (allows matching – i.e. check all or check first)</li>
<li>Summary rules</li>
<li>Rule tolerances</li>
</ul>
</li>
<li>Auto-matching with debit memos</li>
<li>Configurable matching workbench</li>
<li>Expanded workflow</li>
</ul>
<p>As for what we get asked about steadily, it’s the intricacies of the rules engine.</p>
<p><span id="more-55"></span></p>
<p>Specifically, the flow control and the summary rules allow you to set a dollar threshold per invoice where the processing of the match exception difference is not cost effective to handle manually based upon the invoice charge and the purchase order comparison.  In other words, the small dollar exceptions are processed and matched, which means the remaining match exceptions are material and warrant the time required to contact vendors and manage the corrections.  The invoice differences that match within the tolerance are scheduled for payment, which improves the opportunity for payment discounts and timely payments.  In the end, overall process flow is improved and negative impact to the business is safeguarded.</p>
<p>Matching tolerances, flow, and action can be defined solely at the rule level or at a more granular level as in the past (e.g. by item category).  For example, if a contract with the supplier states freight is not charged on an invoice, the rule specific to the freight charges can be used and the flow defined to stop after this rule is triggered because freight was charged on the invoice.  Additional exceptions are not generated and the supplier is contacted to send a corrected invoice.  This means the matching configuration can be defined to focus on the invoice processing differences for your organization and business processes.</p>
<p>While the 9.0 enhancements are powerful, the new matching will require some time to review and evaluate the rule combinations to meet your business processing needs.  Doing so may reduce the number of exceptions generated for processing and generate exceptions for the material differences between invoices purchase orders and receipts.  The groundwork to get 9.0 matching running and optimized for your business might be intricate, but it’s an investment that pays for itself very quickly.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.miproconsulting.com/blog/2008/08/psft-invoice-matching/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
	</channel>
</rss>

