<?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/"
		>
<channel>
	<title>Comments on: Reporting Changes In Peoplesoft With SQR, Part 2</title>
	<atom:link href="http://peoplesoftsqr.com/index.php/2009/09/reporting-changes-in-peoplesoft-with-sqr-part-2/feed/" rel="self" type="application/rss+xml" />
	<link>http://peoplesoftsqr.com/index.php/2009/09/reporting-changes-in-peoplesoft-with-sqr-part-2/</link>
	<description>When Peoplebooks Is Not Enough</description>
	<lastBuildDate>Mon, 23 Jan 2012 21:54:00 -0700</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: administrator</title>
		<link>http://peoplesoftsqr.com/index.php/2009/09/reporting-changes-in-peoplesoft-with-sqr-part-2/comment-page-1/#comment-6212</link>
		<dc:creator>administrator</dc:creator>
		<pubDate>Sat, 13 Nov 2010 22:11:53 +0000</pubDate>
		<guid isPermaLink="false">http://peoplesoftsqr.com/?p=469#comment-6212</guid>
		<description>Mike, I&#039;ve never worked with workflow and I don&#039;t even know what tables are involved.  If you can view workflow data, press Ctrl-J on your browser to identify the PeopleSoft page you&#039;re viewing.  Open it in Application Designer and see what records are on it.  That will give you a start.  Good luck.</description>
		<content:encoded><![CDATA[<p>Mike, I&#8217;ve never worked with workflow and I don&#8217;t even know what tables are involved.  If you can view workflow data, press Ctrl-J on your browser to identify the PeopleSoft page you&#8217;re viewing.  Open it in Application Designer and see what records are on it.  That will give you a start.  Good luck.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mike</title>
		<link>http://peoplesoftsqr.com/index.php/2009/09/reporting-changes-in-peoplesoft-with-sqr-part-2/comment-page-1/#comment-6209</link>
		<dc:creator>Mike</dc:creator>
		<pubDate>Fri, 12 Nov 2010 22:15:11 +0000</pubDate>
		<guid isPermaLink="false">http://peoplesoftsqr.com/?p=469#comment-6209</guid>
		<description>We&#039;re looking at doing some reporting based on workflows that have already been setup regarding the PS_JOB table.  Do you have any workflow query examples by any chance?

Thanks - great blog!</description>
		<content:encoded><![CDATA[<p>We&#8217;re looking at doing some reporting based on workflows that have already been setup regarding the PS_JOB table.  Do you have any workflow query examples by any chance?</p>
<p>Thanks &#8211; great blog!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: administrator</title>
		<link>http://peoplesoftsqr.com/index.php/2009/09/reporting-changes-in-peoplesoft-with-sqr-part-2/comment-page-1/#comment-6183</link>
		<dc:creator>administrator</dc:creator>
		<pubDate>Mon, 08 Nov 2010 17:16:36 +0000</pubDate>
		<guid isPermaLink="false">http://peoplesoftsqr.com/?p=469#comment-6183</guid>
		<description>Ken, when you have a mystery like this, it&#039;s best to look at the data instead of selecting a count().  Select D.EFFDT and D.PLAN_TYPE, to see what&#039;s in PS_HEALTH_BENEFIT, and the key fields from PS_RATE_SCHED_COVG.  Are you assuming that there is only one row in PS_RATE_SCHED_COVG for each row in PS_HEALTH_BENEFIT?  Maybe there&#039;s more.</description>
		<content:encoded><![CDATA[<p>Ken, when you have a mystery like this, it&#8217;s best to look at the data instead of selecting a count().  Select D.EFFDT and D.PLAN_TYPE, to see what&#8217;s in PS_HEALTH_BENEFIT, and the key fields from PS_RATE_SCHED_COVG.  Are you assuming that there is only one row in PS_RATE_SCHED_COVG for each row in PS_HEALTH_BENEFIT?  Maybe there&#8217;s more.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ken</title>
		<link>http://peoplesoftsqr.com/index.php/2009/09/reporting-changes-in-peoplesoft-with-sqr-part-2/comment-page-1/#comment-6169</link>
		<dc:creator>Ken</dc:creator>
		<pubDate>Fri, 05 Nov 2010 21:08:42 +0000</pubDate>
		<guid isPermaLink="false">http://peoplesoftsqr.com/?p=469#comment-6169</guid>
		<description>My second query is not reflective of the 3 records in the PS_HEALTH_BENEFIT table and I am unable to fix.  Any suggestions?
select
   count (a.EMPLID)
from
   PS_JOB A inner join PS_PERSONAL_DATA B
      on A.EMPLID = B.EMPLID
       	    inner join PS_HEALTH_BENEFIT D
      on A.EMPLID = D.EMPLID
--  #            inner join PS_RATE_SCHED_COVG C
--  #      on D.COVRG_CD = C.COVRG_CD
      where A.emplid = &#039;100806&#039;;
COUNT(A.EMPLID)
---------------
              3
-------------------------------------------------
-------------------------------------------------
select
   count (a.EMPLID)
from
   PS_JOB A inner join PS_PERSONAL_DATA B
      on A.EMPLID = B.EMPLID
       	    inner join PS_HEALTH_BENEFIT D
      on A.EMPLID = D.EMPLID
            inner join PS_RATE_SCHED_COVG C
      on D.COVRG_CD = C.COVRG_CD
      where A.emplid = &#039;100806&#039;;
COUNT(A.EMPLID)
---------------
             13</description>
		<content:encoded><![CDATA[<p>My second query is not reflective of the 3 records in the PS_HEALTH_BENEFIT table and I am unable to fix.  Any suggestions?<br />
select<br />
   count (a.EMPLID)<br />
from<br />
   PS_JOB A inner join PS_PERSONAL_DATA B<br />
      on A.EMPLID = B.EMPLID<br />
       	    inner join PS_HEALTH_BENEFIT D<br />
      on A.EMPLID = D.EMPLID<br />
&#8211;  #            inner join PS_RATE_SCHED_COVG C<br />
&#8211;  #      on D.COVRG_CD = C.COVRG_CD<br />
      where A.emplid = &#8216;100806&#8242;;<br />
COUNT(A.EMPLID)<br />
&#8212;&#8212;&#8212;&#8212;&#8212;<br />
              3<br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-<br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-<br />
select<br />
   count (a.EMPLID)<br />
from<br />
   PS_JOB A inner join PS_PERSONAL_DATA B<br />
      on A.EMPLID = B.EMPLID<br />
       	    inner join PS_HEALTH_BENEFIT D<br />
      on A.EMPLID = D.EMPLID<br />
            inner join PS_RATE_SCHED_COVG C<br />
      on D.COVRG_CD = C.COVRG_CD<br />
      where A.emplid = &#8216;100806&#8242;;<br />
COUNT(A.EMPLID)<br />
&#8212;&#8212;&#8212;&#8212;&#8212;<br />
             13</p>
]]></content:encoded>
	</item>
</channel>
</rss>

