<?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:media="http://search.yahoo.com/mrss/"
		>
<channel>
	<title>Comments for PSST0101</title>
	<atom:link href="http://psst0101.wordpress.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://psst0101.wordpress.com</link>
	<description>Just Trying to Remember and Share What I Learn at Work</description>
	<lastBuildDate>Mon, 26 Oct 2009 01:39:38 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>Comment on Step By Step Virtual PS Install: Database Creation by jansen</title>
		<link>http://psst0101.wordpress.com/2009/01/21/step-by-step-virtual-ps-install-database-creation/#comment-1081</link>
		<dc:creator>jansen</dc:creator>
		<pubDate>Mon, 26 Oct 2009 01:39:38 +0000</pubDate>
		<guid isPermaLink="false">http://psst0101.wordpress.com/?p=172#comment-1081</guid>
		<description>hello, I still get error when I ran pupbld.sql and dbowner.sql.

Please help. 

regard.

Jansen</description>
		<content:encoded><![CDATA[<p>hello, I still get error when I ran pupbld.sql and dbowner.sql.</p>
<p>Please help. </p>
<p>regard.</p>
<p>Jansen</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on PeopleTools Bug: Job Data Component Interface by Praj</title>
		<link>http://psst0101.wordpress.com/2007/09/19/peopletools-bug-job-data-component-interface/#comment-1080</link>
		<dc:creator>Praj</dc:creator>
		<pubDate>Thu, 22 Oct 2009 01:46:13 +0000</pubDate>
		<guid isPermaLink="false">http://psst0101.wordpress.com/2007/09/19/peopletools-bug-job-data-component-interface/#comment-1080</guid>
		<description>Out of curiosity, I dropped the index on PSBCITEM and then saved the component interface as TEST_JOB_DATA_CI. I then ran the following SQL to check if there were any duplicated rows:

select BCNAME, BCTYPE, BCITEMPARENT, BCITEMNAME, count(*)
from PSBCITEM 
where BCNAME = &#039;TEST_JOB_DATA_CI&#039;
group by BCNAME, BCTYPE, BCITEMPARENT, BCITEMNAME
having count(*) &gt; 1;

Result was:
BCNAME           BCTYPE BCITEMPARENT BCITEMNAME       COUNT(*)
TEST_JOB_DATA_CI      4 JOB          TERMINATION_DT_1        2

So in my case it looks like the field TERMINATION_DT_1 is duplicating in the PSBCITEM table:

BCITEMNAME       SEQUENCE_NBR_6 BCSCROLL RECNAME         FIELDNAME      SYNCID
TERMINATION_DT_1            403        1 DERIVED_HR_CORE TERMINATION_DT   3752
TERMINATION_DT_1            257        1 JOB             TERMINATION_DT   3886

That is, both items have the TERMINATION_DT_1 field occurs twice on the key field BCITEMNAME.

This is also the case when you look at the CI properties in the JOB scroll for the TERMINATION_DT_1 field on the records DERIVED_HR_CORE and JOB.

So, I removed the CI I had created (by exporting to file with delete flag and reimporting), recreated the unique index on PSBCITEM, and performed the &quot;save twice&quot; trick to get it to save the CI.

I queried the PSBCITEM table again, and the TERMINATION_DT_1 returned was the one for the RECNAME, DERIVED_HR_CORE. So for some reason, during the second save, app designer decides to drop the TERMINATION_DT_1 field from the JOB scroll.

So I figured I could do this manually, by deleting the CI again (using a file project), recreating the CI, and then going into the properties and removing the field TERMINATION_DT_1 from the JOB record of the JOB scroll (or renaming the field to TERMINATION_DT_1_1). Both these options worked for me.

Can anyone else confirm if this is the case for them? Thanks.</description>
		<content:encoded><![CDATA[<p>Out of curiosity, I dropped the index on PSBCITEM and then saved the component interface as TEST_JOB_DATA_CI. I then ran the following SQL to check if there were any duplicated rows:</p>
<p>select BCNAME, BCTYPE, BCITEMPARENT, BCITEMNAME, count(*)<br />
from PSBCITEM<br />
where BCNAME = &#8216;TEST_JOB_DATA_CI&#8217;<br />
group by BCNAME, BCTYPE, BCITEMPARENT, BCITEMNAME<br />
having count(*) &gt; 1;</p>
<p>Result was:<br />
BCNAME           BCTYPE BCITEMPARENT BCITEMNAME       COUNT(*)<br />
TEST_JOB_DATA_CI      4 JOB          TERMINATION_DT_1        2</p>
<p>So in my case it looks like the field TERMINATION_DT_1 is duplicating in the PSBCITEM table:</p>
<p>BCITEMNAME       SEQUENCE_NBR_6 BCSCROLL RECNAME         FIELDNAME      SYNCID<br />
TERMINATION_DT_1            403        1 DERIVED_HR_CORE TERMINATION_DT   3752<br />
TERMINATION_DT_1            257        1 JOB             TERMINATION_DT   3886</p>
<p>That is, both items have the TERMINATION_DT_1 field occurs twice on the key field BCITEMNAME.</p>
<p>This is also the case when you look at the CI properties in the JOB scroll for the TERMINATION_DT_1 field on the records DERIVED_HR_CORE and JOB.</p>
<p>So, I removed the CI I had created (by exporting to file with delete flag and reimporting), recreated the unique index on PSBCITEM, and performed the &#8220;save twice&#8221; trick to get it to save the CI.</p>
<p>I queried the PSBCITEM table again, and the TERMINATION_DT_1 returned was the one for the RECNAME, DERIVED_HR_CORE. So for some reason, during the second save, app designer decides to drop the TERMINATION_DT_1 field from the JOB scroll.</p>
<p>So I figured I could do this manually, by deleting the CI again (using a file project), recreating the CI, and then going into the properties and removing the field TERMINATION_DT_1 from the JOB record of the JOB scroll (or renaming the field to TERMINATION_DT_1_1). Both these options worked for me.</p>
<p>Can anyone else confirm if this is the case for them? Thanks.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on PeopleTools Bug: Job Data Component Interface by PeopleTools Bug: Job Data CI &#171; PSST0101</title>
		<link>http://psst0101.wordpress.com/2007/09/19/peopletools-bug-job-data-component-interface/#comment-1079</link>
		<dc:creator>PeopleTools Bug: Job Data CI &#171; PSST0101</dc:creator>
		<pubDate>Wed, 21 Oct 2009 11:35:30 +0000</pubDate>
		<guid isPermaLink="false">http://psst0101.wordpress.com/2007/09/19/peopletools-bug-job-data-component-interface/#comment-1079</guid>
		<description>[...] Bugs, Component Interface, PeopleTools &#8212; digitaleagle @ 6:34 am   This is another look at an old post.  In summary, the problem is that when you create a Component Interface for the Job Data [...]</description>
		<content:encoded><![CDATA[<p>[...] Bugs, Component Interface, PeopleTools &#8212; digitaleagle @ 6:34 am   This is another look at an old post.  In summary, the problem is that when you create a Component Interface for the Job Data [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on PeopleTools Bug: Job Data Component Interface by digitaleagle</title>
		<link>http://psst0101.wordpress.com/2007/09/19/peopletools-bug-job-data-component-interface/#comment-1078</link>
		<dc:creator>digitaleagle</dc:creator>
		<pubDate>Wed, 21 Oct 2009 11:35:25 +0000</pubDate>
		<guid isPermaLink="false">http://psst0101.wordpress.com/2007/09/19/peopletools-bug-job-data-component-interface/#comment-1078</guid>
		<description>I never did figure it out.  It has been a while since I have tried to create a CI for Job.  To me, it is a PeopleTools bug, and I was hoping that they would have it fixed.  I just tried it in PeopleTools 8.49, and it still happens.

I ran a trace, so here are some more details:
http://psst0101.wordpress.com/2009/10/21/458/</description>
		<content:encoded><![CDATA[<p>I never did figure it out.  It has been a while since I have tried to create a CI for Job.  To me, it is a PeopleTools bug, and I was hoping that they would have it fixed.  I just tried it in PeopleTools 8.49, and it still happens.</p>
<p>I ran a trace, so here are some more details:<br />
<a href="http://psst0101.wordpress.com/2009/10/21/458/" rel="nofollow">http://psst0101.wordpress.com/2009/10/21/458/</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on PeopleTools Bug: Job Data Component Interface by Pon Arun Kumar</title>
		<link>http://psst0101.wordpress.com/2007/09/19/peopletools-bug-job-data-component-interface/#comment-1077</link>
		<dc:creator>Pon Arun Kumar</dc:creator>
		<pubDate>Wed, 21 Oct 2009 10:21:03 +0000</pubDate>
		<guid isPermaLink="false">http://psst0101.wordpress.com/2007/09/19/peopletools-bug-job-data-component-interface/#comment-1077</guid>
		<description>Any specific reason why the unique constraint error occurs for the very first time while saving the JOB DATA CI? Please share the info</description>
		<content:encoded><![CDATA[<p>Any specific reason why the unique constraint error occurs for the very first time while saving the JOB DATA CI? Please share the info</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on PeopleTools Tables by digitaleagle</title>
		<link>http://psst0101.wordpress.com/peopletools-tables/#comment-1073</link>
		<dc:creator>digitaleagle</dc:creator>
		<pubDate>Wed, 14 Oct 2009 03:08:43 +0000</pubDate>
		<guid isPermaLink="false">http://psst0101.wordpress.com/peopletools-tables/#comment-1073</guid>
		<description>Anil,

I created a post with a couple of queries.  Check them out here:

http://psst0101.wordpress.com/2009/10/13/querying-the-component/</description>
		<content:encoded><![CDATA[<p>Anil,</p>
<p>I created a post with a couple of queries.  Check them out here:</p>
<p><a href="http://psst0101.wordpress.com/2009/10/13/querying-the-component/" rel="nofollow">http://psst0101.wordpress.com/2009/10/13/querying-the-component/</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on PeopleTools 8.50 Update by The Seer</title>
		<link>http://psst0101.wordpress.com/2009/07/10/peopletools-8-50-update/#comment-1072</link>
		<dc:creator>The Seer</dc:creator>
		<pubDate>Sun, 11 Oct 2009 17:26:29 +0000</pubDate>
		<guid isPermaLink="false">http://psst0101.wordpress.com/?p=452#comment-1072</guid>
		<description>Oracle has already released PeopleTools patch 8.50.02 to correct issues not addressed in the initial release. You can download it at.....

 ftp://ftp.oracle.com/peoplesoft/outgoing/ptools/85002/</description>
		<content:encoded><![CDATA[<p>Oracle has already released PeopleTools patch 8.50.02 to correct issues not addressed in the initial release. You can download it at&#8230;..</p>
<p> <a href="ftp://ftp.oracle.com/peoplesoft/outgoing/ptools/85002/" rel="nofollow">ftp://ftp.oracle.com/peoplesoft/outgoing/ptools/85002/</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Step By Step by baim</title>
		<link>http://psst0101.wordpress.com/step-by-step/#comment-1071</link>
		<dc:creator>baim</dc:creator>
		<pubDate>Sat, 10 Oct 2009 21:28:47 +0000</pubDate>
		<guid isPermaLink="false">http://psst0101.wordpress.com/?page_id=222#comment-1071</guid>
		<description>Great article....</description>
		<content:encoded><![CDATA[<p>Great article&#8230;.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on PeopleSoft Home Subdirectories by Jansen</title>
		<link>http://psst0101.wordpress.com/2009/04/14/peoplesoft-home-subdirectories/#comment-1069</link>
		<dc:creator>Jansen</dc:creator>
		<pubDate>Fri, 09 Oct 2009 06:32:36 +0000</pubDate>
		<guid isPermaLink="false">http://psst0101.wordpress.com/?p=416#comment-1069</guid>
		<description>Hi.. how to run configuration manager??</description>
		<content:encoded><![CDATA[<p>Hi.. how to run configuration manager??</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on PeopleTools Tables by Anil</title>
		<link>http://psst0101.wordpress.com/peopletools-tables/#comment-1067</link>
		<dc:creator>Anil</dc:creator>
		<pubDate>Wed, 30 Sep 2009 12:57:43 +0000</pubDate>
		<guid isPermaLink="false">http://psst0101.wordpress.com/peopletools-tables/#comment-1067</guid>
		<description>How can i find all the tables used in a peoplesoft component ? I need to find all the tables used in a component. There are very high number of components i need to work onn. Does anybody have a query for that? Please help me.</description>
		<content:encoded><![CDATA[<p>How can i find all the tables used in a peoplesoft component ? I need to find all the tables used in a component. There are very high number of components i need to work onn. Does anybody have a query for that? Please help me.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
