<?xml version="1.0" encoding="UTF-8" ?>
<rss version="2.0" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:wikidot="http://www.wikidot.com/rss-namespace">

	<channel>
		<title>PeopleSoft Wiki - new forum posts</title>
		<link>http://www.peoplesoftwiki.com/forum/start</link>
		<description>Posts in forums of the site &quot;PeopleSoft Wiki&quot;</description>
				<copyright></copyright>
		<lastBuildDate>Fri, 30 Jul 2010 05:16:18 +0000</lastBuildDate>
		
					<item>
				<guid>http://www.peoplesoftwiki.com/forum/t-256066#post-838912</guid>
				<title>Difference Between Data Buffer and Component Buffer</title>
				<link>http://www.peoplesoftwiki.com/forum/t-256066/difference-between-data-buffer-and-component-buffer#post-838912</link>
				<description></description>
				<pubDate>Thu, 29 Jul 2010 07:39:16 +0000</pubDate>
				<wikidot:authorName>DURGAVAJHULA</wikidot:authorName>				<wikidot:authorUserId>476507</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>What is the difference between Data Buffer and the Component Buffer?</p> <br/>Forum category: <a href="http://www.peoplesoftwiki.com/forum/c-41750">Forum / Help</a><br/>Forum thread: <a href="http://www.peoplesoftwiki.com/forum/t-256066/difference-between-data-buffer-and-component-buffer">Difference Between Data Buffer and Component Buffer</a>
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://www.peoplesoftwiki.com/forum/t-254405#post-837096</guid>
				<title>Re: Data Being Added Conflicts error on Save.</title>
				<link>http://www.peoplesoftwiki.com/forum/t-254405/data-being-added-conflicts-error-on-save#post-837096</link>
				<description></description>
				<pubDate>Mon, 26 Jul 2010 20:41:42 +0000</pubDate>
				<wikidot:authorName>MeridianGuy</wikidot:authorName>								<content:encoded>
					<![CDATA[
						 <p>Just to update… I found that the page had a secondary page which had a scroll area (instead of a group box). The scroll area property "No Auto Update" was NOT checked so the processor was doing an auto update in addition to my SQL Insert.</p> <p>The solution was to check the "No Auto Update" on both the grid and the scroll area on the secondary page.</p> <br/>Forum category: <a href="http://www.peoplesoftwiki.com/forum/c-41750">Forum / Help</a><br/>Forum thread: <a href="http://www.peoplesoftwiki.com/forum/t-254405/data-being-added-conflicts-error-on-save">Data Being Added Conflicts error on Save.</a>
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://www.peoplesoftwiki.com/forum/t-236523#post-834343</guid>
				<title>Re: PSQUERY App Engine email query results</title>
				<link>http://www.peoplesoftwiki.com/forum/t-236523/psquery-app-engine-email-query-results#post-834343</link>
				<description></description>
				<pubDate>Thu, 22 Jul 2010 02:46:27 +0000</pubDate>
				<wikidot:authorName>Matt</wikidot:authorName>								<content:encoded>
					<![CDATA[
						 <p>The following URL provides an example of how to achieve this, although additional work is required to make it suitable for releasing to production around who is emailed the query result.</p> <p><a href="http://blog.greysparling.com/2009/03/emailing-scheduled-psquery-results.html">How to email scheduled psquery results</a></p> <p>As mentioned in the comments to the blog this functionality is available in Tools 8.5</p> <br/>Forum category: <a href="http://www.peoplesoftwiki.com/forum/c-41750">Forum / Help</a><br/>Forum thread: <a href="http://www.peoplesoftwiki.com/forum/t-236523/psquery-app-engine-email-query-results">PSQUERY App Engine email query results</a>
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://www.peoplesoftwiki.com/forum/t-254405#post-832657</guid>
				<title>Data Being Added Conflicts error on Save.</title>
				<link>http://www.peoplesoftwiki.com/forum/t-254405/data-being-added-conflicts-error-on-save#post-832657</link>
				<description></description>
				<pubDate>Tue, 20 Jul 2010 00:15:20 +0000</pubDate>
				<wikidot:authorName>MeridianGuy</wikidot:authorName>								<content:encoded>
					<![CDATA[
						 <p>My page has a level 1 grid whose primary record is a "top of stack" view. When the user modifies a "top of stack" row, upon the Save I do a CopyTo(&amp;Rec), where &amp;Rec is the underlying table, then I increment the effdt and effseq appropriately, then do a &amp;Rec.Insert.</p> <p>I am doing this for several grids on the page at the same level, and all grids work fine except this one grid. In all cases, the level 1 scrolls have one extra key than the parent. In this case, the trace shows the &amp;Rec.Insert succeeding, then it attempts the "Select for Update" into the original view giving the original effdt. This doesn't happen for any other grid. All other grids stop after the insert.</p> <p>TRACE FILE:</p> <p>If GetRow().IsChanged Then<br /> &amp;Rec = GetRecord();<br /> If &amp;Rec.EFFDT.Value = %Date And<br /> GetRow().IsNew = False Then<br /> &amp;Rec.EFFSEQ.Value = &amp;Rec.EFFSEQ.Value + 1;<br /> Else<br /> &amp;Rec.EFFDT.Value = %Date;<br /> &amp;Rec.EFFSEQ.Value = 0;<br /> End-If;<br /> …<br /> &amp;REC2 = CreateRecord(Record.ZG_ENT_KC);<br /> &amp;REC2.SetDefault();<br /> &amp;Rec.COPYFIELDSTO(&amp;REC2);<br /> &amp;REC2.Insert();</p> <p>Stmt=INSERT INTO PS_ZG_ENT_KC (ZG_ENTITY_ID,EMPLID,EFFDT,EFFSEQ,EFF_STATUS,PHONE, EMAIL_ADDR,LASTUPDOPRID,LASTUPDDTTM) VALUES (:1,:2,TO_DATE(:3,'YYYY-MM-DD'),:4,:5,:6,:7,:8,TO_TIMESTAMP(:9,'YYYY-MM-DD-HH24.MI.SS.FF'))<br /> value=V0000001<br /> value=7269&nbsp;555<br /> value<br /> 10-07-19<br /> value=0<br /> value=A<br /> value=444/444-4444<br /> value=<br /> value=743156<br /> value<br /> 10-07-19-19.36.34.000000<br /> End-If;</p> <p>Stmt=SELECT ZG_ENTITY_ID, EMPLID, EFFDT, TO_CHAR(EFFDT,'YYYY-MM-DD'), EFFSEQ, EFF_STATUS, PHONE, EMAIL_ADDR, LASTUPDOPRID, TO_CHAR(CAST((LASTUPDDTTM) AS TIMESTAMP),'YYYY-MM-DD-HH24.MI.SS.FF') FROM PS_ZG_ENT_KC_VW WHERE ZG_ENTITY_ID=:1 AND EMPLID=:2 AND EFFDT=TO_DATE(:3,'YYYY-MM-DD') AND EFFSEQ=:4 FOR UPDATE OF EFFDT, PHONE, LASTUPDOPRID, LASTUPDDTTM<br /> value=V0000001<br /> value=7269555value<br /> 10-07-15<br /> value=0</p> <br/>Forum category: <a href="http://www.peoplesoftwiki.com/forum/c-41750">Forum / Help</a><br/>Forum thread: <a href="http://www.peoplesoftwiki.com/forum/t-254405/data-being-added-conflicts-error-on-save">Data Being Added Conflicts error on Save.</a>
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://www.peoplesoftwiki.com/forum/t-236523#post-822408</guid>
				<title>Re: PSQUERY App Engine email query results</title>
				<link>http://www.peoplesoftwiki.com/forum/t-236523/psquery-app-engine-email-query-results#post-822408</link>
				<description></description>
				<pubDate>Mon, 05 Jul 2010 02:29:55 +0000</pubDate>
				<wikidot:authorName>Kathy</wikidot:authorName>								<content:encoded>
					<![CDATA[
						 <p>Hi Melban - we found our issue to this, there is SMTP settings in the psprcs.cfg that had not been configured NOTE you have to set the SMTPSourceMachine to the machine name.<br /> Hope this helps anyone that comes across this issue.</p> <br/>Forum category: <a href="http://www.peoplesoftwiki.com/forum/c-41750">Forum / Help</a><br/>Forum thread: <a href="http://www.peoplesoftwiki.com/forum/t-236523/psquery-app-engine-email-query-results">PSQUERY App Engine email query results</a>
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://www.peoplesoftwiki.com/forum/t-236523#post-818222</guid>
				<title>Re: PSQUERY App Engine email query results</title>
				<link>http://www.peoplesoftwiki.com/forum/t-236523/psquery-app-engine-email-query-results#post-818222</link>
				<description></description>
				<pubDate>Tue, 29 Jun 2010 03:54:27 +0000</pubDate>
				<wikidot:authorName>Kathy</wikidot:authorName>								<content:encoded>
					<![CDATA[
						 <p>Did you get any further with this? we are trying to do the same thing, we have gone into distribution selected "Email Web Report" and entered in email address… process completes sucessfully but no email generated. If you have got any further than this please let me know.</p> <p>Thanks</p> <br/>Forum category: <a href="http://www.peoplesoftwiki.com/forum/c-41750">Forum / Help</a><br/>Forum thread: <a href="http://www.peoplesoftwiki.com/forum/t-236523/psquery-app-engine-email-query-results">PSQUERY App Engine email query results</a>
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://www.peoplesoftwiki.com/forum/t-248449#post-817028</guid>
				<title>Re: Field Is Required while calling DoSaveNow()</title>
				<link>http://www.peoplesoftwiki.com/forum/t-248449/field-is-required-while-calling-dosavenow#post-817028</link>
				<description></description>
				<pubDate>Sun, 27 Jun 2010 09:50:12 +0000</pubDate>
				<wikidot:authorName>Anonymous</wikidot:authorName>								<content:encoded>
					<![CDATA[
						 <p>Does it work if you check for a value of <tt>OT_ESS.DATE</tt> before calling <tt>DoSaveNow()</tt> ? E.g.</p> <div class="code"> <pre> <code>If All(&amp;LocalRowOT(&amp;i).OT_ESS.DATE.Value) Then DoSaveNow(); End-If;</code> </pre></div> <br/>Forum category: <a href="http://www.peoplesoftwiki.com/forum/c-41750">Forum / Help</a><br/>Forum thread: <a href="http://www.peoplesoftwiki.com/forum/t-248449/field-is-required-while-calling-dosavenow">Field Is Required while calling DoSaveNow()</a>
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://www.peoplesoftwiki.com/forum/t-248449#post-810589</guid>
				<title>Field Is Required while calling DoSaveNow()</title>
				<link>http://www.peoplesoftwiki.com/forum/t-248449/field-is-required-while-calling-dosavenow#post-810589</link>
				<description></description>
				<pubDate>Thu, 17 Jun 2010 12:36:10 +0000</pubDate>
				<wikidot:authorName>mi jo</wikidot:authorName>								<content:encoded>
					<![CDATA[
						 <p>Why OT_ESS.DATE is stated empty while calling DoSaveNow() althought it already has a value?</p> <p>Here is the code in the submit button</p> <div class="code"> <pre> <code>Local Rowset &amp;LocalRowOT; &amp;LocalRowOT = GetLevel0()(1).GetRowset(Scroll.OT_ESS); For &amp;i = ActiveRowCount(Scroll.OT_ESS) To 1 Step - 1 If All(&amp;LocalRowOT(&amp;i).OT_ESS.EMP_RMK.Value) Then &amp;LocalRowOT(&amp;i).OT_ESS.STATUS.Value = "SUB"; End-If; If All(&amp;LocalRowOT(&amp;i).OT_ESS.CODE.Value, &amp;LocalRowOT(&amp;i).OT_ESS.DATE.Value, &amp;LocalRowOT(&amp;i).OT_ESS.EMP_RMK.Value) Then &amp;LocalRowOT(&amp;i).OT_ESS.DATE.Enabled = False; &amp;LocalRowOT(&amp;i).OT_ESS.EMP_RMK.Enabled = False; End-If; DoSaveNow(); End-For;</code> </pre></div> <p>I got this error messsage after click the SUBMIT_BTN<br /> <strong>Field Is Required: OT_ESS - DATE</strong></p> <p>I try to display the value so add the code with message boxes:</p> <div class="code"> <pre> <code>Local Rowset &amp;LocalRowOT; &amp;LocalRowOT = GetLevel0()(1).GetRowset(Scroll.OT_ESS); For &amp;i = ActiveRowCount(Scroll.OT_ESS) To 1 Step - 1 MessageBox(0, "", 0, 0, "&amp;i is " | &amp;i | " &amp;LocalRowOT(&amp;i).OT_ESS.DATE is " | &amp;LocalRowOT(&amp;i).OT_ESS.DATE | " &amp;LocalRowOT(&amp;i).OT_ESS.DATE.Value is " | &amp;LocalRowOT(&amp;i).OT_ESS.DATE.Value); End-For; For &amp;i = ActiveRowCount(Scroll.OT_ESS) To 1 Step - 1 If All(&amp;LocalRowOT(&amp;i).OT_ESS.EMP_RMK.Value) Then &amp;LocalRowOT(&amp;i).OT_ESS.STATUS.Value = "SUB"; End-If; If All(&amp;LocalRowOT(&amp;i).OT_ESS.CODE.Value, &amp;LocalRowOT(&amp;i).OT_ESS.DATE.Value, &amp;LocalRowOT(&amp;i).OT_ESS.EMP_RMK.Value) Then &amp;LocalRowOT(&amp;i).OT_ESS.DATE.Enabled = False; &amp;LocalRowOT(&amp;i).OT_ESS.EMP_RMK.Enabled = False; End-If; MessageBox(0, "", 0, 0, "before save : OT_ESS.DATE is " | OT_ESS.DATE | " and OT_ESS.DATE.Value is " | OT_ESS.DATE.Value); DoSaveNow(); End-For;</code> </pre></div> <p>The first Message box<br /> i is <strong>1</strong> &amp;LocalRowOT(&amp;i).OT_ESS.DATE is <strong>Field</strong> &amp;LocalRowOT(&amp;i).OT_ESS.DATE.Value is <strong>2010-06-10</strong></p> <p>The second Message box<br /> before save : OT_ESS.DATE is and OT_ESS.DATE.Value is</p> <p>the field DATE already has a value (displayed in the message box). But why it generates error while calling DoSaveNow() ?</p> <br/>Forum category: <a href="http://www.peoplesoftwiki.com/forum/c-41750">Forum / Help</a><br/>Forum thread: <a href="http://www.peoplesoftwiki.com/forum/t-248449/field-is-required-while-calling-dosavenow">Field Is Required while calling DoSaveNow()</a>
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://www.peoplesoftwiki.com/forum/t-247983#post-810398</guid>
				<title>Re: HRMS TABLES</title>
				<link>http://www.peoplesoftwiki.com/forum/t-247983/hrms-tables#post-810398</link>
				<description></description>
				<pubDate>Thu, 17 Jun 2010 04:53:33 +0000</pubDate>
				<wikidot:authorName>Praj</wikidot:authorName>				<wikidot:authorUserId>52320</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>If you are just after tables, start with the following query:</p> <div class="code"> <div class="hl-main"> <pre> <span class="hl-reserved">select</span><span class="hl-code"> </span><span class="hl-identifier">RECNAME</span><span class="hl-code">, </span><span class="hl-identifier">RECDESCR</span><span class="hl-code"> </span><span class="hl-reserved">from</span><span class="hl-code"> </span><span class="hl-identifier">PSRECDEFN</span><span class="hl-code"> </span><span class="hl-reserved">where</span><span class="hl-code"> </span><span class="hl-identifier">RECTYPE</span><span class="hl-code"> = </span><span class="hl-number">0</span><span class="hl-code"> </span><span class="hl-reserved">and</span><span class="hl-code"> </span><span class="hl-identifier">RECNAME</span><span class="hl-code"> </span><span class="hl-reserved">not</span><span class="hl-code"> </span><span class="hl-reserved">like</span><span class="hl-code"> </span><span class="hl-quotes">'</span><span class="hl-string">PS%</span><span class="hl-quotes">'</span><span class="hl-code"> </span><span class="hl-reserved">order</span><span class="hl-code"> </span><span class="hl-reserved">by</span><span class="hl-code"> </span><span class="hl-identifier">RECNAME</span><span class="hl-code">;</span> </pre></div> </div> <p>A <tt>RECTYPE</tt> of 0 indicates a table. The condition <tt>RECNAME not like 'PS%'</tt> excludes the PeopleTools tables which (largely) start with PSabc (e.g. <tt>PSOPRDEFN</tt>).</p> <br/>Forum category: <a href="http://www.peoplesoftwiki.com/forum/c-41750">Forum / Help</a><br/>Forum thread: <a href="http://www.peoplesoftwiki.com/forum/t-247983/hrms-tables">HRMS TABLES</a>
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://www.peoplesoftwiki.com/forum/t-248344#post-810138</guid>
				<title>PeopleSoft Campus Solutions 9.0</title>
				<link>http://www.peoplesoftwiki.com/forum/t-248344/peoplesoft-campus-solutions-9-0#post-810138</link>
				<description></description>
				<pubDate>Wed, 16 Jun 2010 21:00:59 +0000</pubDate>
				<wikidot:authorName>Shelly</wikidot:authorName>								<content:encoded>
					<![CDATA[
						 <p>Hi!</p> <p>I'm looking to find someone who has good experience working with PeopleSoft Campus Solutions 9.0. If you do, please let me know as I'd like to speak to you about an excellent position in the NY area.</p> <p>Shelly<br /> 646-247-0075</p> <br/>Forum category: <a href="http://www.peoplesoftwiki.com/forum/c-114949">Forum / Opportunities</a><br/>Forum thread: <a href="http://www.peoplesoftwiki.com/forum/t-248344/peoplesoft-campus-solutions-9-0">PeopleSoft Campus Solutions 9.0</a>
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://www.peoplesoftwiki.com/forum/t-248286#post-809851</guid>
				<title>PeopleSoft HRMS Principal Consultant</title>
				<link>http://www.peoplesoftwiki.com/forum/t-248286/peoplesoft-finance-principal-consultant#post-809851</link>
				<description></description>
				<pubDate>Wed, 16 Jun 2010 12:41:04 +0000</pubDate>
				<wikidot:authorName>Chandra Reddy</wikidot:authorName>				<wikidot:authorUserId>500516</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>My name is Chandra Reddy working as an IT recruiter with Avance Consulting Services. I would like to share a job opportunity with one of our esteemed clients.<br /> Please find the below job description and if you are interested, Please send me your updated CV and also suggest me the best time to discuss in detail.</p> <p>Requirement:</p> <p>Roles : PeopleSoft HRMS Consultant<br /> Location : London</p> <p>Job Description:</p> <p> Implement multiple Peoplesoft HRMS modules like HR, Benefits administration, Talent Acquisition &amp; Candidate Gateway with expertise in one or more process areas<br />  Model business processes based on user requirements.<br />  Understand and advise client on best practices<br />  Implement technical and package configurations with setups<br />  Support and/or conduct requirements collation and analysis.<br />  Map package features to client requirements, suggest workarounds where necessary, conduct Fit- Gap analysis, define requirements for customizations and extensions.<br />  Conduct CRP, support UAT, user training and perform System testing, configuring in Development environments as part of implementation, support and other related activities.<br />  Provide guidance to the team, throughout the project life cycle for a successful completion of the project.<br />  Tailor methodologies and macro issues to customer’s needs<br />  Good knowledge of PeopleSoft Upgrade/Implementation methodologies<br />  Lead large teams at a module or functional process<br />  Pre-sales support activities.<br />  Contribute to thought-leadership and identification of pre-packaged solutions.</p> <p>Mentor junior consultants.</p> <p>Looking ahead to hear from you.</p> <p>Best Regards,<br /> Chandra Reddy<br /> Avance Consulting(Europe)<br /> Direct: +44&nbsp;20&nbsp;79935300<br /> Fax : 08718130559<br /> Email: <span class="wiki-email">moc.secivresecnava|ydder.ardnahc#moc.secivresecnava|ydder.ardnahc</span><br /> www.avanceservices.com</p> <p>We pay referral fee for all our positions. Please visit <a href="http://www.wisestep.com/">http://www.wisestep.com/</a> for details.</p> <br/>Forum category: <a href="http://www.peoplesoftwiki.com/forum/c-114949">Forum / Opportunities</a><br/>Forum thread: <a href="http://www.peoplesoftwiki.com/forum/t-248286/peoplesoft-finance-principal-consultant">PeopleSoft Finance Principal Consultant</a>
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://www.peoplesoftwiki.com/forum/t-248286#post-809850</guid>
				<title>PeopleSoft Finance Principal Consultant</title>
				<link>http://www.peoplesoftwiki.com/forum/t-248286/peoplesoft-finance-principal-consultant#post-809850</link>
				<description></description>
				<pubDate>Wed, 16 Jun 2010 12:39:45 +0000</pubDate>
				<wikidot:authorName>Chandra Reddy</wikidot:authorName>				<wikidot:authorUserId>500516</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>My name is Chandra Reddy working as an IT recruiter with Avance Consulting Services. I would like to share a job opportunity with one of our esteemed clients.<br /> Please find the below job description and if you are interested, Please send me your updated CV and also suggest me the best time to discuss in detail.</p> <p>Requirement:</p> <p>Roles : PeopleSoft Financial Consultant<br /> Location : London<br /> Type : Permanent</p> <p>Job Description:</p> <p> Implement multiple Peoplesoft Financial modules like finance, Benefits administration, Talent Acquisition &amp; Candidate Gateway with experties in one or more process areas<br />  Model business processes based on user requirements.<br />  Understand and advise client on best practices<br />  Implement technical and package configurations with setups<br />  Support and/or conduct requirements collation and analysis.<br />  Map package features to client requirements, suggest workarounds where necessary, conduct Fit- Gap analysis, define requirements for customizations and extensions.<br />  Conduct CRP, support UAT, user training and perform System testing, configuring in Development environments as part of implementation, support and other related activities.<br />  Provide guidance to the team, throughout the project life cycle for a successful completion of the project.<br />  Tailor methodologies and macro issues to customer’s needs<br />  Good knowledge of PeopleSoft Upgrade/Implementation methodologies<br />  Lead large teams at a module or functional process<br />  Pre-sales support activities.<br />  Contribute to thought-leadership and identification of pre-packaged solutions.</p> <p>Mentor junior consultants.</p> <p>Looking ahead to hear from you.</p> <p>Best Regards,<br /> Chandra Reddy<br /> Avance Consulting(Europe)<br /> Direct: +44&nbsp;20&nbsp;79935300<br /> Fax : 08718130559<br /> Email: <span class="wiki-email">moc.secivresecnava|ydder.ardnahc#moc.secivresecnava|ydder.ardnahc</span><br /> www.avanceservices.com</p> <p>We pay referral fee for all our positions. Please visit <a href="http://www.wisestep.com/">http://www.wisestep.com/</a> for details.</p> <br/>Forum category: <a href="http://www.peoplesoftwiki.com/forum/c-114949">Forum / Opportunities</a><br/>Forum thread: <a href="http://www.peoplesoftwiki.com/forum/t-248286/peoplesoft-finance-principal-consultant">PeopleSoft Finance Principal Consultant</a>
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://www.peoplesoftwiki.com/forum/t-247983#post-808879</guid>
				<title>HRMS TABLES</title>
				<link>http://www.peoplesoftwiki.com/forum/t-247983/hrms-tables#post-808879</link>
				<description></description>
				<pubDate>Tue, 15 Jun 2010 04:57:54 +0000</pubDate>
				<wikidot:authorName>DURGAVAJHULA</wikidot:authorName>				<wikidot:authorUserId>476507</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>I want to know all the hrms tables available in peoplesoft. can i find the list of all hrms table names in one table, if so please provide the name of that table.</p> <br/>Forum category: <a href="http://www.peoplesoftwiki.com/forum/c-41750">Forum / Help</a><br/>Forum thread: <a href="http://www.peoplesoftwiki.com/forum/t-247983/hrms-tables">HRMS TABLES</a>
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://www.peoplesoftwiki.com/forum/t-144176#post-808560</guid>
				<title>Thank you</title>
				<link>http://www.peoplesoftwiki.com/forum/t-144176/auditing-user-profiles#post-808560</link>
				<description></description>
				<pubDate>Mon, 14 Jun 2010 20:17:16 +0000</pubDate>
				<wikidot:authorName>Yvonne</wikidot:authorName>								<content:encoded>
					<![CDATA[
						 <p>This is the first time I have used information found on this site.</p> <p>I have never created a trigger, nor an audit record.</p> <p>Your instructions were perfect.<br /> I followed them and had success the first time.</p> <p>Thank you.</p> <br/>Forum category: <a href="http://www.peoplesoftwiki.com/forum/c-41062">Forum / Existing Content</a><br/>Forum thread: <a href="http://www.peoplesoftwiki.com/forum/t-144176/auditing-user-profiles">Auditing User Profiles</a>
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://www.peoplesoftwiki.com/forum/t-245795#post-801858</guid>
				<title>Re: Great idea</title>
				<link>http://www.peoplesoftwiki.com/forum/t-245795/great-idea#post-801858</link>
				<description></description>
				<pubDate>Sun, 06 Jun 2010 07:41:24 +0000</pubDate>
				<wikidot:authorName>Praj</wikidot:authorName>				<wikidot:authorUserId>52320</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>Thanks glad you like it. I've used it in numerous places which is why I packaged it up. Let me know if you have any enhancements to it you'd like to publish.</p> <br/>Forum category: <a href="http://www.peoplesoftwiki.com/forum/c-112806">Projects / Email Message Catalog</a><br/>Forum thread: <a href="http://www.peoplesoftwiki.com/forum/t-245795/great-idea">Great idea</a>
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://www.peoplesoftwiki.com/forum/t-245789#post-801856</guid>
				<title>Re: Small Bug, I think...</title>
				<link>http://www.peoplesoftwiki.com/forum/t-245789/email-message-catalog#post-801856</link>
				<description></description>
				<pubDate>Sun, 06 Jun 2010 07:35:31 +0000</pubDate>
				<wikidot:authorName>Praj</wikidot:authorName>				<wikidot:authorUserId>52320</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>Nice pick up, really appreciate you pointing this out. I've updated the code and put up a new version of the project. Thanks!</p> <br/>Forum category: <a href="http://www.peoplesoftwiki.com/forum/c-41062">Forum / Existing Content</a><br/>Forum thread: <a href="http://www.peoplesoftwiki.com/forum/t-245789/email-message-catalog">Email Message Catalog</a>
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://www.peoplesoftwiki.com/forum/t-246000#post-800753</guid>
				<title>Need to find field in peoplesoft</title>
				<link>http://www.peoplesoftwiki.com/forum/t-246000/need-to-find-field-in-peoplesoft#post-800753</link>
				<description></description>
				<pubDate>Fri, 04 Jun 2010 14:18:12 +0000</pubDate>
				<wikidot:authorName>KHurley</wikidot:authorName>								<content:encoded>
					<![CDATA[
						 <p>Does anyone know what record/field would denote in peoplesoft if a purchase order is a regular order or a repair? I need to eliminate purchase orders in a query that I have developed for a user based on if it is a purchase order for a repair.</p> <br/>Forum category: <a href="http://www.peoplesoftwiki.com/forum/c-41750">Forum / Help</a><br/>Forum thread: <a href="http://www.peoplesoftwiki.com/forum/t-246000/need-to-find-field-in-peoplesoft">Need to find field in peoplesoft</a>
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://www.peoplesoftwiki.com/forum/t-245795#post-799895</guid>
				<title>Great idea</title>
				<link>http://www.peoplesoftwiki.com/forum/t-245795/great-idea#post-799895</link>
				<description></description>
				<pubDate>Thu, 03 Jun 2010 14:42:54 +0000</pubDate>
				<wikidot:authorName>melban</wikidot:authorName>				<wikidot:authorUserId>332139</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>This is such a great idea. I've used the correspondence CRM piece before and it is just too bulking for some things. This allows for very simple emails to be sent very easily and I'll use this in the future. I've also been using the PT_MCF_MAIL App Package alot for projects and have had to develop a nice template engine to go along for generating complex HTML emails. Great start.</p> <br/>Forum category: <a href="http://www.peoplesoftwiki.com/forum/c-112806">Projects / Email Message Catalog</a><br/>Forum thread: <a href="http://www.peoplesoftwiki.com/forum/t-245795/great-idea">Great idea</a>
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://www.peoplesoftwiki.com/forum/t-245789#post-799882</guid>
				<title>Small Bug, I think...</title>
				<link>http://www.peoplesoftwiki.com/forum/t-245789/email-message-catalog#post-799882</link>
				<description></description>
				<pubDate>Thu, 03 Jun 2010 14:24:39 +0000</pubDate>
				<wikidot:authorName>bensonky</wikidot:authorName>				<wikidot:authorUserId>315241</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>First off, this rocks!</p> <p>While reading through this I noticed what I think is a small bug. Doubt it would ever show or cause issue, but thought I'd mention it.</p> <div class="code"> <pre> <code>method GetResultText ... When = %ObEmail_NotDelivered Return "Delivery not attempted"; Break; When = %ObEmail_NotDelivered Return "Partially delivered"; Break; ... end-method;</code> </pre></div> <p>I think this should actually be</p> <div class="code"> <pre> <code> When = %ObEmail_NotDelivered Return "Delivery not attempted"; Break; When = %ObEmail_PartiallyDelivered Return "Partially delivered"; Break;</code> </pre></div> <br/>Forum category: <a href="http://www.peoplesoftwiki.com/forum/c-41062">Forum / Existing Content</a><br/>Forum thread: <a href="http://www.peoplesoftwiki.com/forum/t-245789/email-message-catalog">Email Message Catalog</a>
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://www.peoplesoftwiki.com/forum/t-239735#post-799515</guid>
				<title>Re: Sending mail using PT_MCF_MAIL</title>
				<link>http://www.peoplesoftwiki.com/forum/t-239735/sending-mail-using-pt-mcf-mail#post-799515</link>
				<description></description>
				<pubDate>Thu, 03 Jun 2010 02:51:23 +0000</pubDate>
				<wikidot:authorName>srinivas</wikidot:authorName>								<content:encoded>
					<![CDATA[
						 <p>Thanks for posting<br /> I've posted the same question Oracle SUport</p> <p>from Metalink</p> <hr /> <p>In PT8.50 we have a new function called isdomainavailable to check if the email address's domain is valid or not. It pings DNS server to validate email addresses. Other than that, there is no other ways. Development has stated that Java mail on the outgoing server does not check for invalid address of TO address while sending an email. It just checks for the correct format of email address.<br /> If you consider to upgrade to PT8.50, this issue can be resolved.</p> <p>:-(<br /> Thanks<br /> Srinivas</p> <br/>Forum category: <a href="http://www.peoplesoftwiki.com/forum/c-41750">Forum / Help</a><br/>Forum thread: <a href="http://www.peoplesoftwiki.com/forum/t-239735/sending-mail-using-pt-mcf-mail">Sending mail using PT_MCF_MAIL</a>
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://www.peoplesoftwiki.com/forum/t-242765#post-790161</guid>
				<title>Re: Inserting to a table</title>
				<link>http://www.peoplesoftwiki.com/forum/t-242765/inserting-to-a-table#post-790161</link>
				<description></description>
				<pubDate>Fri, 21 May 2010 12:59:48 +0000</pubDate>
				<wikidot:authorName>Belinda</wikidot:authorName>								<content:encoded>
					<![CDATA[
						 <p>Sorry; what I should have said above is that we are using Informix in Prod and the statement works fine in the PostBuild event; now in Oracle I get the "can't do it in this event" error….</p> <br/>Forum category: <a href="http://www.peoplesoftwiki.com/forum/c-41750">Forum / Help</a><br/>Forum thread: <a href="http://www.peoplesoftwiki.com/forum/t-242765/inserting-to-a-table">Inserting to a table</a>
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://www.peoplesoftwiki.com/forum/t-242765#post-790149</guid>
				<title>Re: Inserting to a table</title>
				<link>http://www.peoplesoftwiki.com/forum/t-242765/inserting-to-a-table#post-790149</link>
				<description></description>
				<pubDate>Fri, 21 May 2010 12:45:07 +0000</pubDate>
				<wikidot:authorName>melban</wikidot:authorName>				<wikidot:authorUserId>332139</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>Are you using a different database in your production/pre-production compared to your development environment? I don't think that this should be an issue but you never know. I'd suggest clearing your app server cache after moving your project just to confirm there isn't some old code in there. I'm at a loss if the database makes a difference. The fact that it worked in your development environment means it should work. Also confirm your code looks the same in this new system where you are getting the error.</p> <br/>Forum category: <a href="http://www.peoplesoftwiki.com/forum/c-41750">Forum / Help</a><br/>Forum thread: <a href="http://www.peoplesoftwiki.com/forum/t-242765/inserting-to-a-table">Inserting to a table</a>
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://www.peoplesoftwiki.com/forum/t-242765#post-790137</guid>
				<title>Re: Inserting to a table</title>
				<link>http://www.peoplesoftwiki.com/forum/t-242765/inserting-to-a-table#post-790137</link>
				<description></description>
				<pubDate>Fri, 21 May 2010 12:31:47 +0000</pubDate>
				<wikidot:authorName>Belinda</wikidot:authorName>								<content:encoded>
					<![CDATA[
						 <p>We're attempting the insert with an SQLExec. In Production, the statement works fine in the PostBuild component event. Then we changed to Oracle in our Pre-prod environment and now I get the "can't do this in this event" error. I get the same error on the page Activate event. Argh.</p> <br/>Forum category: <a href="http://www.peoplesoftwiki.com/forum/c-41750">Forum / Help</a><br/>Forum thread: <a href="http://www.peoplesoftwiki.com/forum/t-242765/inserting-to-a-table">Inserting to a table</a>
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://www.peoplesoftwiki.com/forum/t-242765#post-789516</guid>
				<title>Re: Inserting to a table</title>
				<link>http://www.peoplesoftwiki.com/forum/t-242765/inserting-to-a-table#post-789516</link>
				<description></description>
				<pubDate>Thu, 20 May 2010 20:27:55 +0000</pubDate>
				<wikidot:authorName>melban</wikidot:authorName>				<wikidot:authorUserId>332139</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>How are you doing the insert? A couple potabilities come to mind.</p> <p>1. Component peoplecode: You can set to PreBuild or PostBuild and should only get fired once each time you load the component.<br /> 2. Page peoplecode: Fires every time the page is shown so if this is a tab on a component it could get fired often.</p> <br/>Forum category: <a href="http://www.peoplesoftwiki.com/forum/c-41750">Forum / Help</a><br/>Forum thread: <a href="http://www.peoplesoftwiki.com/forum/t-242765/inserting-to-a-table">Inserting to a table</a>
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://www.peoplesoftwiki.com/forum/t-242765#post-789498</guid>
				<title>Inserting to a table</title>
				<link>http://www.peoplesoftwiki.com/forum/t-242765/inserting-to-a-table#post-789498</link>
				<description></description>
				<pubDate>Thu, 20 May 2010 20:12:24 +0000</pubDate>
				<wikidot:authorName>Belinda</wikidot:authorName>								<content:encoded>
					<![CDATA[
						 <p>We need to insert a row into a custom table each time our customer views a view-only page. In which event should this occur? I've tried several and have gotten errors. We are running PeopleSoft 8.9, PeopleTools 8.49, Oracle DB.</p> <br/>Forum category: <a href="http://www.peoplesoftwiki.com/forum/c-41750">Forum / Help</a><br/>Forum thread: <a href="http://www.peoplesoftwiki.com/forum/t-242765/inserting-to-a-table">Inserting to a table</a>
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://www.peoplesoftwiki.com/forum/t-242722#post-789290</guid>
				<title>exporting hierarchical data using file layouts</title>
				<link>http://www.peoplesoftwiki.com/forum/t-242722/exporting-hierarchical-data-using-file-layouts#post-789290</link>
				<description></description>
				<pubDate>Thu, 20 May 2010 14:27:26 +0000</pubDate>
				<wikidot:authorName>DURGAVAJHULA</wikidot:authorName>				<wikidot:authorUserId>476507</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>i want to export the hierarchical data in tables to the flat file using filelayouts and people code.i want some idea, how to export hierarchical data to the flat file.</p> <br/>Forum category: <a href="http://www.peoplesoftwiki.com/forum/c-41750">Forum / Help</a><br/>Forum thread: <a href="http://www.peoplesoftwiki.com/forum/t-242722/exporting-hierarchical-data-using-file-layouts">exporting hierarchical data using file layouts</a>
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://www.peoplesoftwiki.com/forum/t-242403#post-787562</guid>
				<title>PeopleSoft Financials Default UserIDs and Permission Lists</title>
				<link>http://www.peoplesoftwiki.com/forum/t-242403/peoplesoft-financials-default-userids-and-permission-lists#post-787562</link>
				<description></description>
				<pubDate>Tue, 18 May 2010 20:25:44 +0000</pubDate>
				<wikidot:authorName>KapilM</wikidot:authorName>				<wikidot:authorUserId>484834</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>Is there a list available somewhere that lists the Default UserIds and Permission lists that come out of the box with the PeopleSoft Financial system? I was able to find the default listing of User IDs and Permissions for HRMS system but nothing for Financial.</p> <p>I would really appreciate if someone could point me in the right direction or help me find the list.</p> <p>Thank you,<br /> K</p> <br/>Forum category: <a href="http://www.peoplesoftwiki.com/forum/c-41750">Forum / Help</a><br/>Forum thread: <a href="http://www.peoplesoftwiki.com/forum/t-242403/peoplesoft-financials-default-userids-and-permission-lists">PeopleSoft Financials Default UserIDs and Permission Lists</a>
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://www.peoplesoftwiki.com/forum/t-242392#post-787511</guid>
				<title>express issue and distribution types</title>
				<link>http://www.peoplesoftwiki.com/forum/t-242392/express-issue-and-distribution-types#post-787511</link>
				<description></description>
				<pubDate>Tue, 18 May 2010 19:31:52 +0000</pubDate>
				<wikidot:authorName>Kathy Hurley</wikidot:authorName>								<content:encoded>
					<![CDATA[
						 <p>our company is new to peoplesoft. We are trying to setup RTVs. We have our Reason codes in the system. When we go into Inventory&gt;Fullfill stock orders&gt;Express Issue for a request of vendor type return, we arent sure of what to enter on the next page.Is the Distribution type required for this type of request? When we click on our drop down it is blank. I am wondering if we missed setting something up.</p> <br/>Forum category: <a href="http://www.peoplesoftwiki.com/forum/c-41750">Forum / Help</a><br/>Forum thread: <a href="http://www.peoplesoftwiki.com/forum/t-242392/express-issue-and-distribution-types">express issue and distribution types</a>
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://www.peoplesoftwiki.com/forum/t-241429#post-785158</guid>
				<title>Re: PS Query</title>
				<link>http://www.peoplesoftwiki.com/forum/t-241429/ps-query#post-785158</link>
				<description></description>
				<pubDate>Sun, 16 May 2010 05:02:16 +0000</pubDate>
				<wikidot:authorName>Praj</wikidot:authorName>				<wikidot:authorUserId>52320</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>Hi, you can't use sub-selects in PS Query so the easiest way to put this into PS Query would be to create a view and then reference that view.</p> <p>Alternatively, you could look at using <a href="http://www.peoplesoftwiki.com/embedded-sql-in-psquery">embedded SQL in your PSQuery</a> which involves passing SQL through the %SQL meta-sql construct to a query as explain in the article link.</p> <br/>Forum category: <a href="http://www.peoplesoftwiki.com/forum/c-41750">Forum / Help</a><br/>Forum thread: <a href="http://www.peoplesoftwiki.com/forum/t-241429/ps-query">PS QUery</a>
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://www.peoplesoftwiki.com/forum/t-204429#post-784343</guid>
				<title></title>
				<link>http://www.peoplesoftwiki.com/forum/t-204429/testing-web-services-with-soapui#post-784343</link>
				<description></description>
				<pubDate>Fri, 14 May 2010 23:37:10 +0000</pubDate>
				<wikidot:authorName>Praj</wikidot:authorName>				<wikidot:authorUserId>52320</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>That looks very promising. Thanks for post.</p> <br/>Forum category: <a href="http://www.peoplesoftwiki.com/forum/c-41062">Forum / Existing Content</a><br/>Forum thread: <a href="http://www.peoplesoftwiki.com/forum/t-204429/testing-web-services-with-soapui">Testing Web Services with soapUI</a>
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://www.peoplesoftwiki.com/forum/t-204429#post-784045</guid>
				<title>Repurposing soapUI tests as load tests and monitor</title>
				<link>http://www.peoplesoftwiki.com/forum/t-204429/testing-web-services-with-soapui#post-784045</link>
				<description></description>
				<pubDate>Fri, 14 May 2010 15:59:38 +0000</pubDate>
				<wikidot:authorName>Frank Cohen</wikidot:authorName>								<content:encoded>
					<![CDATA[
						 <p>Thanks for the post about soapUI. PushToTest TestMaker is an open source test platform that repurposes soapUI tests to be functional tests, load and performance tests, and business service production monitors. A tutorial on using soapUI in TestMaker is at <a href="http://www.pushtotest.com/tutorials/soapuitutorialfull">http://www.pushtotest.com/tutorials/soapuitutorialfull</a></p> <p>Thanks!</p> <p>-Frank</p> <br/>Forum category: <a href="http://www.peoplesoftwiki.com/forum/c-41062">Forum / Existing Content</a><br/>Forum thread: <a href="http://www.peoplesoftwiki.com/forum/t-204429/testing-web-services-with-soapui">Testing Web Services with soapUI</a>
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://www.peoplesoftwiki.com/forum/t-241429#post-783377</guid>
				<title>PS Query</title>
				<link>http://www.peoplesoftwiki.com/forum/t-241429/ps-query#post-783377</link>
				<description></description>
				<pubDate>Thu, 13 May 2010 22:41:40 +0000</pubDate>
				<wikidot:authorName>Kevin</wikidot:authorName>								<content:encoded>
					<![CDATA[
						 <p>How do I create a PeopleSoft Query to place a sub-query in the selected column?<br /> For example, how do I convert the followign SQL into PS Query?</p> <div class="code"> <div class="hl-main"> <pre> <span class="hl-reserved">select</span><span class="hl-code"> </span><span class="hl-identifier">a</span><span class="hl-code">.</span><span class="hl-identifier">business_unit</span><span class="hl-code">, </span><span class="hl-identifier">a</span><span class="hl-code">.</span><span class="hl-identifier">voucher_id</span><span class="hl-code">, </span><span class="hl-identifier">b</span><span class="hl-code">.</span><span class="hl-identifier">voucher_line_num</span><span class="hl-code">, </span><span class="hl-var">sum</span><span class="hl-brackets">(</span><span class="hl-identifier">a</span><span class="hl-code">.</span><span class="hl-identifier">saletx_amt</span><span class="hl-brackets">)</span><span class="hl-code">, </span><span class="hl-var">sum</span><span class="hl-brackets">(</span><span class="hl-identifier">b</span><span class="hl-code">.</span><span class="hl-identifier">saletx_calc_amt</span><span class="hl-brackets">)</span><span class="hl-code"> </span><span class="hl-brackets">(</span><span class="hl-reserved">select</span><span class="hl-code"> </span><span class="hl-var">sum</span><span class="hl-brackets">(</span><span class="hl-identifier">bb</span><span class="hl-code">.</span><span class="hl-identifier">saletx_calc_amt</span><span class="hl-brackets">)</span><span class="hl-code"> </span><span class="hl-reserved">from</span><span class="hl-code"> </span><span class="hl-identifier">ps_voucher_line</span><span class="hl-code"> </span><span class="hl-identifier">bb</span><span class="hl-code"> </span><span class="hl-reserved">where</span><span class="hl-code"> </span><span class="hl-identifier">bb</span><span class="hl-code">.</span><span class="hl-identifier">business_unit</span><span class="hl-code"> = </span><span class="hl-identifier">a</span><span class="hl-code">.</span><span class="hl-identifier">business_unit</span><span class="hl-code"> </span><span class="hl-reserved">and</span><span class="hl-code"> </span><span class="hl-identifier">bb</span><span class="hl-code">.</span><span class="hl-identifier">voucher_id</span><span class="hl-code"> = </span><span class="hl-identifier">a</span><span class="hl-code">.</span><span class="hl-identifier">voucher_id</span><span class="hl-brackets">)</span><span class="hl-code"> </span><span class="hl-identifier">Sum_Calc_Sales_Tax_AllLines</span><span class="hl-code">, </span><span class="hl-var">sum</span><span class="hl-brackets">(</span><span class="hl-identifier">a</span><span class="hl-code">.</span><span class="hl-identifier">saletx_amt</span><span class="hl-brackets">)</span><span class="hl-code"> - </span><span class="hl-brackets">(</span><span class="hl-reserved">select</span><span class="hl-code"> </span><span class="hl-var">sum</span><span class="hl-brackets">(</span><span class="hl-identifier">bbb</span><span class="hl-code">.</span><span class="hl-identifier">SALETX_CALC_AMT</span><span class="hl-brackets">)</span><span class="hl-code"> </span><span class="hl-reserved">from</span><span class="hl-code"> </span><span class="hl-identifier">ps_voucher_line</span><span class="hl-code"> </span><span class="hl-identifier">bbb</span><span class="hl-code"> </span><span class="hl-reserved">where</span><span class="hl-code"> </span><span class="hl-identifier">bbb</span><span class="hl-code">.</span><span class="hl-identifier">business_unit</span><span class="hl-code"> = </span><span class="hl-identifier">a</span><span class="hl-code">.</span><span class="hl-identifier">business_unit</span><span class="hl-code"> </span><span class="hl-reserved">and</span><span class="hl-code"> </span><span class="hl-identifier">bbb</span><span class="hl-code">.</span><span class="hl-identifier">voucher_id</span><span class="hl-code"> = </span><span class="hl-identifier">a</span><span class="hl-code">.</span><span class="hl-identifier">voucher_id</span><span class="hl-brackets">)</span><span class="hl-code"> </span><span class="hl-identifier">Over_Under_STX_PYMT</span><span class="hl-code">, </span><span class="hl-reserved">from</span><span class="hl-code"> </span><span class="hl-identifier">ps_voucher</span><span class="hl-code"> </span><span class="hl-identifier">a</span><span class="hl-code">, </span><span class="hl-identifier">ps_voucher_line</span><span class="hl-code"> </span><span class="hl-identifier">b</span><span class="hl-code"> </span><span class="hl-reserved">where</span><span class="hl-code"> </span><span class="hl-identifier">a</span><span class="hl-code">.</span><span class="hl-identifier">business_unit</span><span class="hl-code"> = </span><span class="hl-quotes">'</span><span class="hl-string">7012</span><span class="hl-quotes">'</span><span class="hl-code"> </span><span class="hl-reserved">and</span><span class="hl-code"> </span><span class="hl-identifier">a</span><span class="hl-code">.</span><span class="hl-identifier">voucher_id</span><span class="hl-code"> = </span><span class="hl-quotes">'</span><span class="hl-string">01677751</span><span class="hl-quotes">'</span><span class="hl-code"> </span><span class="hl-reserved">and</span><span class="hl-code"> </span><span class="hl-identifier">b</span><span class="hl-code">.</span><span class="hl-identifier">business_unit</span><span class="hl-code"> = </span><span class="hl-identifier">a</span><span class="hl-code">.</span><span class="hl-identifier">business_unit</span><span class="hl-code"> </span><span class="hl-reserved">and</span><span class="hl-code"> </span><span class="hl-identifier">b</span><span class="hl-code">.</span><span class="hl-identifier">voucher_id</span><span class="hl-code"> = </span><span class="hl-identifier">a</span><span class="hl-code">.</span><span class="hl-identifier">voucher_id</span><span class="hl-code"> </span><span class="hl-reserved">group</span><span class="hl-code"> </span><span class="hl-reserved">by</span><span class="hl-code"> </span><span class="hl-identifier">a</span><span class="hl-code">.</span><span class="hl-identifier">business_unit</span><span class="hl-code">,</span><span class="hl-identifier">a</span><span class="hl-code">.</span><span class="hl-identifier">voucher_id</span><span class="hl-code">,</span><span class="hl-identifier">b</span><span class="hl-code">.</span><span class="hl-identifier">voucher_line_num</span><span class="hl-code"> </span><span class="hl-reserved">having</span><span class="hl-code"> </span><span class="hl-var">sum</span><span class="hl-brackets">(</span><span class="hl-identifier">a</span><span class="hl-code">.</span><span class="hl-identifier">saletx_amt</span><span class="hl-brackets">)</span><span class="hl-code"> &lt;&gt; </span><span class="hl-brackets">(</span><span class="hl-reserved">select</span><span class="hl-code"> </span><span class="hl-var">sum</span><span class="hl-brackets">(</span><span class="hl-identifier">bbb</span><span class="hl-code">.</span><span class="hl-identifier">saletx_calc_amt</span><span class="hl-brackets">)</span><span class="hl-code"> </span><span class="hl-reserved">from</span><span class="hl-code"> </span><span class="hl-identifier">ps_voucher_line</span><span class="hl-code"> </span><span class="hl-identifier">bbb</span><span class="hl-code"> </span><span class="hl-reserved">where</span><span class="hl-code"> </span><span class="hl-identifier">bbb</span><span class="hl-code">.</span><span class="hl-identifier">business_unit</span><span class="hl-code"> = </span><span class="hl-identifier">a</span><span class="hl-code">.</span><span class="hl-identifier">business_unit</span><span class="hl-code"> </span><span class="hl-reserved">and</span><span class="hl-code"> </span><span class="hl-identifier">bbb</span><span class="hl-code">.</span><span class="hl-identifier">voucher_id</span><span class="hl-code"> = </span><span class="hl-identifier">a</span><span class="hl-code">.</span><span class="hl-identifier">voucher_id</span><span class="hl-brackets">)</span><span class="hl-code"> </span><span class="hl-reserved">order</span><span class="hl-code"> </span><span class="hl-reserved">by</span><span class="hl-code"> </span><span class="hl-number">1</span><span class="hl-code">,</span><span class="hl-number">2</span><span class="hl-code">,</span><span class="hl-number">3</span><span class="hl-code">;</span> </pre></div> </div> <br/>Forum category: <a href="http://www.peoplesoftwiki.com/forum/c-41750">Forum / Help</a><br/>Forum thread: <a href="http://www.peoplesoftwiki.com/forum/t-241429/ps-query">PS QUery</a>
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://www.peoplesoftwiki.com/forum/t-241256#post-782707</guid>
				<title>Unicode or Not?</title>
				<link>http://www.peoplesoftwiki.com/forum/t-241256/unicode-or-not#post-782707</link>
				<description></description>
				<pubDate>Thu, 13 May 2010 05:44:03 +0000</pubDate>
				<wikidot:authorName>Praj</wikidot:authorName>				<wikidot:authorUserId>52320</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>The following <a href="http://repettas.wordpress.com/2008/05/19/peopletools-846-847-848-and-849-how-do-you-find-out-if-oracle-database-has-been-installed-as-unicode/" >site</a> explains exactly how to tell if your database is unicode or not (on Oracle). You can still use the generic <tt>UNICODE_ENABLED</tt> flag (0 = non-unicode, 1 = unicode) in the <tt>PSSTATUS</tt> table tell which option is being used:</p> <div class="code"> <div class="hl-main"> <pre> <span class="hl-reserved">select</span><span class="hl-code"> </span><span class="hl-reserved">case</span><span class="hl-code"> </span><span class="hl-reserved">when</span><span class="hl-code"> </span><span class="hl-identifier">UNICODE_ENABLED</span><span class="hl-code"> = </span><span class="hl-number">0</span><span class="hl-code"> </span><span class="hl-reserved">then</span><span class="hl-code"> </span><span class="hl-quotes">'</span><span class="hl-string">Non-Unicode</span><span class="hl-quotes">'</span><span class="hl-code"> </span><span class="hl-reserved">else</span><span class="hl-code"> </span><span class="hl-quotes">'</span><span class="hl-string">Unicode</span><span class="hl-quotes">'</span><span class="hl-code"> </span><span class="hl-reserved">end</span><span class="hl-code"> </span><span class="hl-reserved">as</span><span class="hl-code"> </span><span class="hl-identifier">UNICODE_ENABLED</span><span class="hl-code"> </span><span class="hl-reserved">from</span><span class="hl-code"> </span><span class="hl-identifier">PSSTATUS</span><span class="hl-code">;</span> </pre></div> </div> <br/>Forum category: <a href="http://www.peoplesoftwiki.com/forum/c-63480">Forum / Hints, Tips &amp; Gotchas</a><br/>Forum thread: <a href="http://www.peoplesoftwiki.com/forum/t-241256/unicode-or-not">Unicode or Not?</a>
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://www.peoplesoftwiki.com/forum/t-239975#post-776875</guid>
				<title>Re: auditing user profiles</title>
				<link>http://www.peoplesoftwiki.com/forum/t-239975/auditing-user-profiles#post-776875</link>
				<description></description>
				<pubDate>Thu, 06 May 2010 21:30:05 +0000</pubDate>
				<wikidot:authorName>Praj</wikidot:authorName>				<wikidot:authorUserId>52320</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>Hi, the first place to have a look (if you haven't already) is under:</p> <ul> <li>PeopleTools &gt; Security &gt; User Profiles &gt; User Profiles &gt; User ID Queries (tab)</li> <li>PeopleTools &gt; Security &gt; Permission and Roles &gt; Permission Lists &gt; Permission List Queries (tab)</li> <li>PeopleTools &gt; Security &gt; Permission and Roles &gt; Roles &gt; Role Queires (tab)</li> </ul> <p>These are delivered PeopleSoft Query reports that will provide some basic information.</p> <p>In terms of auditing information (who made changes/when), there is an audit tab for user profiles/permission lists/roles that tells you the <strong>last</strong> person that updated that item. You could build a query to get this information. The relevant PeopleSoft database tables can be found in this article on <a href="http://www.peoplesoftwiki.com/peopletools-security">PeopleTools Security</a>.</p> <p>If you need to audit ALL changes made to user profiles/permission lists/roles, then this requires customization as it isn't something that is delivered by PeopleSoft. That's where something like the <a href="http://www.peoplesoftwiki.com/auditing-user-profiles">auditing user profiles</a> article comes into the picture. So that would need some development changes made. It all depends on your audit requirements.</p> <br/>Forum category: <a href="http://www.peoplesoftwiki.com/forum/c-41750">Forum / Help</a><br/>Forum thread: <a href="http://www.peoplesoftwiki.com/forum/t-239975/auditing-user-profiles">auditing user profiles</a>
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://www.peoplesoftwiki.com/forum/t-239975#post-776866</guid>
				<title>auditing user profiles</title>
				<link>http://www.peoplesoftwiki.com/forum/t-239975/auditing-user-profiles#post-776866</link>
				<description></description>
				<pubDate>Thu, 06 May 2010 21:15:33 +0000</pubDate>
				<wikidot:authorName>dhananjay70</wikidot:authorName>				<wikidot:authorUserId>479612</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>Dear friends,<br /> I"ma new bee to PeopleSoft and work as an HRIS analyst.<br /> We have a requirement for generating report on User Securoty Tasks such as password changes, added /modified Permission lists, Added/Modified Roles. I'M not sure if there is any Log or Table Or Query we can use to get this report via PeopleSoft Application Designer.<br /> WOuld be much obliged if someone can educate me the steps to me since I need to get this task at earliest please.</p> <p>Kind Regards<br /> Dhananjay</p> <br/>Forum category: <a href="http://www.peoplesoftwiki.com/forum/c-41750">Forum / Help</a><br/>Forum thread: <a href="http://www.peoplesoftwiki.com/forum/t-239975/auditing-user-profiles">auditing user profiles</a>
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://www.peoplesoftwiki.com/forum/t-204429#post-776282</guid>
				<title>Re: Excellent work, saved me from Oracle&#039;s JDeveloper</title>
				<link>http://www.peoplesoftwiki.com/forum/t-204429/testing-web-services-with-soapui#post-776282</link>
				<description></description>
				<pubDate>Thu, 06 May 2010 04:08:50 +0000</pubDate>
				<wikidot:authorName>Praj</wikidot:authorName>				<wikidot:authorUserId>52320</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>By the way you can also do this in the request properties in soapUI. Select the request then look at the bottom left - there should be a bunch of request properties available including Username and Password.</p> <br/>Forum category: <a href="http://www.peoplesoftwiki.com/forum/c-41062">Forum / Existing Content</a><br/>Forum thread: <a href="http://www.peoplesoftwiki.com/forum/t-204429/testing-web-services-with-soapui">Testing Web Services with soapUI</a>
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://www.peoplesoftwiki.com/forum/t-138751#post-776273</guid>
				<title>Re: Other Campus Solutions Student Financials Tables</title>
				<link>http://www.peoplesoftwiki.com/forum/t-138751/campus-solutions-tables#post-776273</link>
				<description></description>
				<pubDate>Thu, 06 May 2010 03:56:29 +0000</pubDate>
				<wikidot:authorName>Praj</wikidot:authorName>				<wikidot:authorUserId>52320</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>Thanks for your contribution, I've updated the article with this info.</p> <br/>Forum category: <a href="http://www.peoplesoftwiki.com/forum/c-41062">Forum / Existing Content</a><br/>Forum thread: <a href="http://www.peoplesoftwiki.com/forum/t-138751/campus-solutions-tables">Campus Solutions Tables</a>
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://www.peoplesoftwiki.com/forum/t-237564#post-776270</guid>
				<title>Re: OLE Automation in Peopletools 8.50</title>
				<link>http://www.peoplesoftwiki.com/forum/t-237564/ole-automation-in-peopletools-8-50#post-776270</link>
				<description></description>
				<pubDate>Thu, 06 May 2010 03:55:37 +0000</pubDate>
				<wikidot:authorName>Praj</wikidot:authorName>				<wikidot:authorUserId>52320</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>Hi, I have no idea how to make this invoke either but I tried the same thing on my PeopleSoft installation and received the same error …</p> <br/>Forum category: <a href="http://www.peoplesoftwiki.com/forum/c-41750">Forum / Help</a><br/>Forum thread: <a href="http://www.peoplesoftwiki.com/forum/t-237564/ole-automation-in-peopletools-8-50">OLE Automation in Peopletools 8.50</a>
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://www.peoplesoftwiki.com/forum/t-239727#post-776260</guid>
				<title>Re: temporary tables</title>
				<link>http://www.peoplesoftwiki.com/forum/t-239727/temporary-tables#post-776260</link>
				<description></description>
				<pubDate>Thu, 06 May 2010 03:43:35 +0000</pubDate>
				<wikidot:authorName>Praj</wikidot:authorName>				<wikidot:authorUserId>52320</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>I think this has to do with managing of database locks on the temporary table. That is, an app engine will manage database locks to a dedicated temporary table to ensure other processes cannot write to the temporary table while it is running. I suppose, an "undedicated" temporary table won't have this sort of database lock management in place.</p> <br/>Forum category: <a href="http://www.peoplesoftwiki.com/forum/c-41750">Forum / Help</a><br/>Forum thread: <a href="http://www.peoplesoftwiki.com/forum/t-239727/temporary-tables">temporary tables</a>
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://www.peoplesoftwiki.com/forum/t-239735#post-776093</guid>
				<title>Re: Sending mail using PT_MCF_MAIL</title>
				<link>http://www.peoplesoftwiki.com/forum/t-239735/sending-mail-using-pt-mcf-mail#post-776093</link>
				<description></description>
				<pubDate>Wed, 05 May 2010 23:47:12 +0000</pubDate>
				<wikidot:authorName>Praj</wikidot:authorName>				<wikidot:authorUserId>52320</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>Thanks for posting this.</p> <p>One option is to use the properties:</p> <ul> <li><tt>InvalidAddress</tt></li> <li><tt>ValidUnsentAddresses</tt></li> <li><tt>ValidSentAddresses</tt></li> </ul> <p>However this is not a complete solution for example, after send, the property <tt>&amp;email.InvalidAddress</tt> will probably be sent for the first example address: <em>test_mail</em>.</p> <p>However, the second example address: <em>srinivas @ 1234.com</em> won't be considered invalid as your SMTP server will still attempt delivery - it <em>could</em> be a valid email address. Its only the mail delivery failure you get that lets you know it isn't. The email sent result is more about the success of the delivery of the email to the SMTP server, not necessarily to the email address.</p> <p>I'm not sure when the <tt>ValidUnsentAddresses</tt> property applies, I'm yet to find a scenario where it is populated.</p> <br/>Forum category: <a href="http://www.peoplesoftwiki.com/forum/c-41750">Forum / Help</a><br/>Forum thread: <a href="http://www.peoplesoftwiki.com/forum/t-239735/sending-mail-using-pt-mcf-mail">Sending mail using PT_MCF_MAIL</a>
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://www.peoplesoftwiki.com/forum/t-138751#post-775981</guid>
				<title>Other Campus Solutions Student Financials Tables</title>
				<link>http://www.peoplesoftwiki.com/forum/t-138751/campus-solutions-tables#post-775981</link>
				<description></description>
				<pubDate>Wed, 05 May 2010 21:09:42 +0000</pubDate>
				<wikidot:authorName>CHARBIN</wikidot:authorName>								<content:encoded>
					<![CDATA[
						 <p>Credit History -<br /> CREDIT_HISTORY</p> <p>Tuition Calc -<br /> TUIT_CALC_TBL<br /> CALC_MESSAGES<br /> OPT_FEE_STDNT</p> <p>Group Post -<br /> GROUP_CONT_INFO<br /> GROUP_LINE</p> <p>Cashiering -<br /> CSH_BD_CSH_OPEN<br /> CSH_OFF_RECEIPT<br /> CSH_OFF_RCPT_L<br /> CSH_OFF_RCPT_T</p> <p>Third Party Contracts/Deferral Contracts/Payment Plans -<br /> TP_CONTRACT<br /> TP_STUDENT</p> <p>Refunds -<br /> REFUND_HDR<br /> REFUND_DTL<br /> REFUND_CHECK</p> <p>Collections -<br /> COLLECTION_SF</p> <p>1098-T Reporting -<br /> SF_1098_DTL_SF<br /> SF_1098_ITEM</p> <p>GL Interface -<br /> SF_ACCTG_LN</p> <p>Optional Fees -<br /> OPT_FEE_STDNT</p> <p>Tuition Group Setup -<br /> SEL_GROUP_TBL<br /> SEL_GROUP_CRITR<br /> GROUP_FEE_TBL</p> <p>Criteria Setup -<br /> SEL_CRITER_TBL<br /> SEL_CRITR_TBL<br /> SEL_VALUE_TBL</p> <p>Term Fee Setup -<br /> TERM_FEE_TBL<br /> TERM_FE_CD_TBL<br /> TERM_SF_CD_TBL<br /> TERM_SUBFEE_TBL</p> <p>Waiver Setup -<br /> WAIVER_CODE_TBL<br /> WAIVER_TBL</p> <p>Item Type Setup -<br /> ITEM_TYPE_TBL<br /> ITEM_ACCT_TYPE<br /> GL_INTERFACE</p> <p>Billing -<br /> BI_BILL_HEADER<br /> BI_BILLING_LINE<br /> BI_BILL_MESSAGE<br /> BI_STD_REQ_TBL</p> <br/>Forum category: <a href="http://www.peoplesoftwiki.com/forum/c-41062">Forum / Existing Content</a><br/>Forum thread: <a href="http://www.peoplesoftwiki.com/forum/t-138751/campus-solutions-tables">Campus Solutions Tables</a>
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://www.peoplesoftwiki.com/forum/t-204311#post-775962</guid>
				<title></title>
				<link>http://www.peoplesoftwiki.com/forum/t-204311/component-interface-based-web-services#post-775962</link>
				<description></description>
				<pubDate>Wed, 05 May 2010 20:46:12 +0000</pubDate>
				<wikidot:authorName>Praj</wikidot:authorName>				<wikidot:authorUserId>52320</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>If they are delete buttons, then one possibility might be to try setting their value to "Y" (yes) which is how you trigger a button through a component interface / web service. You will however need to find the appropriate row to set to delete.</p> <br/>Forum category: <a href="http://www.peoplesoftwiki.com/forum/c-41062">Forum / Existing Content</a><br/>Forum thread: <a href="http://www.peoplesoftwiki.com/forum/t-204311/component-interface-based-web-services">Component Interface based Web Services</a>
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://www.peoplesoftwiki.com/forum/t-204429#post-775795</guid>
				<title>Re: Excellent work, saved me from Oracle&#039;s JDeveloper</title>
				<link>http://www.peoplesoftwiki.com/forum/t-204429/testing-web-services-with-soapui#post-775795</link>
				<description></description>
				<pubDate>Wed, 05 May 2010 18:15:31 +0000</pubDate>
				<wikidot:authorName>inba</wikidot:authorName>				<wikidot:authorUserId>479148</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>We are trying to integrate PS with Sharepoint. I have created the CI-Based web services and generated WSDL. The ASP.net team is able to consume the WSDL and can invoke Get/Add/Update methods. Could you please let know how to access the Delete method. I find it difficult to get any reference on this Delete. Im talking in particular about the Delete buttons we have on the PS ESS page - Phone/Email. Thanks</p> <br/>Forum category: <a href="http://www.peoplesoftwiki.com/forum/c-41062">Forum / Existing Content</a><br/>Forum thread: <a href="http://www.peoplesoftwiki.com/forum/t-204429/testing-web-services-with-soapui">Testing Web Services with soapUI</a>
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://www.peoplesoftwiki.com/forum/t-204311#post-775785</guid>
				<title></title>
				<link>http://www.peoplesoftwiki.com/forum/t-204311/component-interface-based-web-services#post-775785</link>
				<description></description>
				<pubDate>Wed, 05 May 2010 18:07:10 +0000</pubDate>
				<wikidot:authorName>inba</wikidot:authorName>				<wikidot:authorUserId>479148</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>We are trying to integrate PS with Sharepoint. I have created the CI-Based web services as shown above and generated WSDL. The ASP.net team is able to consume the WSDL and can invoke Get/Add/Update methods. Could you please let know how to access the Delete method. I find it difficult to get any reference on this Delete. Im talking in particular about the Delete buttons we have on the PS ESS page - Phone/Email. Thanks</p> <br/>Forum category: <a href="http://www.peoplesoftwiki.com/forum/c-41062">Forum / Existing Content</a><br/>Forum thread: <a href="http://www.peoplesoftwiki.com/forum/t-204311/component-interface-based-web-services">Component Interface based Web Services</a>
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://www.peoplesoftwiki.com/forum/t-239735#post-775712</guid>
				<title>Sending mail using PT_MCF_MAIL</title>
				<link>http://www.peoplesoftwiki.com/forum/t-239735/sending-mail-using-pt-mcf-mail#post-775712</link>
				<description></description>
				<pubDate>Wed, 05 May 2010 16:18:44 +0000</pubDate>
				<wikidot:authorName>Srinivasa</wikidot:authorName>								<content:encoded>
					<![CDATA[
						 <p>We are using the following code to send a mail<br /> import PT_MCF_MAIL:*;</p> <p>Local PT_MCF_MAIL:MCFOutboundEmail &amp;email = create PT_MCF_MAIL:MCFOutboundEmail();</p> <hr /> <p>&amp;email.Recipients = "test_mail"; /*incorrect mail id*/<br /> or</p> <p>&amp;email.Recipients = "<span class="wiki-email">moc.4321|savinirs#moc.4321|savinirs</span>"; /*incorrect domain id*/</p> <hr /> <p>&amp;email.From = "";<br /> &amp;email.BCC = "";<br /> &amp;email.Subject = "Test mail";<br /> &amp;email.ReplyTo = "";<br /> &amp;email.ContentType = "text/html";<br /> &amp;res = &amp;email.Send();<br /> WinMessage("Mail Sent " | &amp;res | "-" | %ObEmail_Delivered, 0);</p> <p>I am passing wrong Recipients mail id. when we run this still its &amp;email.Send(); returning 1 (success)..<br /> is there any workaround in PS to validate the mailid against SMTP server.</p> <p>any idea?</p> <br/>Forum category: <a href="http://www.peoplesoftwiki.com/forum/c-41750">Forum / Help</a><br/>Forum thread: <a href="http://www.peoplesoftwiki.com/forum/t-239735/sending-mail-using-pt-mcf-mail">Sending mail using PT_MCF_MAIL</a>
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://www.peoplesoftwiki.com/forum/t-239727#post-775668</guid>
				<title>temporary tables</title>
				<link>http://www.peoplesoftwiki.com/forum/t-239727/temporary-tables#post-775668</link>
				<description></description>
				<pubDate>Wed, 05 May 2010 15:00:40 +0000</pubDate>
				<wikidot:authorName>DURGAVAJHULA</wikidot:authorName>				<wikidot:authorUserId>476507</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>what is the difference between dedicated temporary tables and undedicated temporary tables in AE?</p> <br/>Forum category: <a href="http://www.peoplesoftwiki.com/forum/c-41750">Forum / Help</a><br/>Forum thread: <a href="http://www.peoplesoftwiki.com/forum/t-239727/temporary-tables">temporary tables</a>
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://www.peoplesoftwiki.com/forum/t-204429#post-775364</guid>
				<title>Re: Excellent work, saved me from Oracle&#039;s JDeveloper</title>
				<link>http://www.peoplesoftwiki.com/forum/t-204429/testing-web-services-with-soapui#post-775364</link>
				<description></description>
				<pubDate>Wed, 05 May 2010 05:50:56 +0000</pubDate>
				<wikidot:authorName>Praj</wikidot:authorName>				<wikidot:authorUserId>52320</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>Glad this helped you out.</p> <p>You should be able to pass the (simple) authentication information through the SOAP request header, something like:</p> <div class="code"> <div class="hl-main"> <pre> <span class="hl-brackets">&lt;</span><span class="hl-reserved">wsse:Security</span><span class="hl-code"> </span><span class="hl-var">soap:mustUnderstand</span><span class="hl-code">=</span><span class="hl-quotes">"</span><span class="hl-string">1</span><span class="hl-quotes">"</span><span class="hl-code"> </span><span class="hl-var">xmlns:soap</span><span class="hl-code">=</span><span class="hl-quotes">"</span><span class="hl-string">http://schemas.xmlsoap.org/wsdl/soap/</span><span class="hl-quotes">"</span><span class="hl-code"> </span><span class="hl-var">xmlns:wsse</span><span class="hl-code">=</span><span class="hl-quotes">"</span><span class="hl-string">http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd</span><span class="hl-quotes">"</span><span class="hl-brackets">&gt;</span><span class="hl-code"> </span><span class="hl-brackets">&lt;</span><span class="hl-reserved">wsse:UsernameToken</span><span class="hl-brackets">&gt;</span><span class="hl-code"> </span><span class="hl-brackets">&lt;</span><span class="hl-reserved">wsse:Username</span><span class="hl-brackets">&gt;</span><span class="hl-code">PS</span><span class="hl-brackets">&lt;/</span><span class="hl-reserved">wsse:Username</span><span class="hl-brackets">&gt;</span><span class="hl-code"> </span><span class="hl-brackets">&lt;</span><span class="hl-reserved">wsse:Password</span><span class="hl-brackets">&gt;</span><span class="hl-code">PS</span><span class="hl-brackets">&lt;/</span><span class="hl-reserved">wsse:Password</span><span class="hl-brackets">&gt;</span><span class="hl-code"> </span><span class="hl-brackets">&lt;/</span><span class="hl-reserved">wsse:UsernameToken</span><span class="hl-brackets">&gt;</span><span class="hl-code"> </span><span class="hl-brackets">&lt;/</span><span class="hl-reserved">wsse:Security</span><span class="hl-brackets">&gt;</span> </pre></div> </div> <p>You can generate the request message with the correct security settings using the generate SOAP template functionality:<br /> PeopleTools &gt; Integration Broker &gt; Service Utilities &gt; Generate SOAP Template</p> <br/>Forum category: <a href="http://www.peoplesoftwiki.com/forum/c-41062">Forum / Existing Content</a><br/>Forum thread: <a href="http://www.peoplesoftwiki.com/forum/t-204429/testing-web-services-with-soapui">Testing Web Services with soapUI</a>
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://www.peoplesoftwiki.com/forum/t-238633#post-775189</guid>
				<title>Re: sqr</title>
				<link>http://www.peoplesoftwiki.com/forum/t-238633/sqr#post-775189</link>
				<description></description>
				<pubDate>Wed, 05 May 2010 01:35:32 +0000</pubDate>
				<wikidot:authorName>Praj</wikidot:authorName>				<wikidot:authorUserId>52320</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>I agree, this would work, but it can be overridden. Another option is to build something into the SQR to stop it running outside the process monitor, e.g. process instance != 0, but again, that is cumbersome and can be overridden by a developer.</p> <br/>Forum category: <a href="http://www.peoplesoftwiki.com/forum/c-41750">Forum / Help</a><br/>Forum thread: <a href="http://www.peoplesoftwiki.com/forum/t-238633/sqr">sqr</a>
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://www.peoplesoftwiki.com/forum/t-238633#post-775176</guid>
				<title>Re: sqr</title>
				<link>http://www.peoplesoftwiki.com/forum/t-238633/sqr#post-775176</link>
				<description></description>
				<pubDate>Wed, 05 May 2010 01:22:17 +0000</pubDate>
				<wikidot:authorName>melban</wikidot:authorName>				<wikidot:authorUserId>332139</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>if there is any way to look up the host IP or hostname then you could code something. That said if they have access to run the SQR they have access to change it so you might have a solution just not a fool proof one.</p> <br/>Forum category: <a href="http://www.peoplesoftwiki.com/forum/c-41750">Forum / Help</a><br/>Forum thread: <a href="http://www.peoplesoftwiki.com/forum/t-238633/sqr">sqr</a>
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://www.peoplesoftwiki.com/forum/t-239036#post-774272</guid>
				<title>Re: SEND E-MAIL</title>
				<link>http://www.peoplesoftwiki.com/forum/t-239036/send-e-mail#post-774272</link>
				<description></description>
				<pubDate>Tue, 04 May 2010 08:06:13 +0000</pubDate>
				<wikidot:authorName>Praj</wikidot:authorName>				<wikidot:authorUserId>52320</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>This <a href="http://www.sparkpath.com/techtalk-20070502.php" >article</a> by SparkPath might be some help.</p> <br/>Forum category: <a href="http://www.peoplesoftwiki.com/forum/c-41750">Forum / Help</a><br/>Forum thread: <a href="http://www.peoplesoftwiki.com/forum/t-239036/send-e-mail">SEND E-MAIL</a>
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://www.peoplesoftwiki.com/forum/t-238633#post-774266</guid>
				<title>Re: sqr</title>
				<link>http://www.peoplesoftwiki.com/forum/t-238633/sqr#post-774266</link>
				<description></description>
				<pubDate>Tue, 04 May 2010 07:54:18 +0000</pubDate>
				<wikidot:authorName>Praj</wikidot:authorName>				<wikidot:authorUserId>52320</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>Ok, there's isn't much you can do about that unless you restrict database access to users. The SQR is running directly on the database using the username &amp; password configured through the SQR dialog box.</p> <br/>Forum category: <a href="http://www.peoplesoftwiki.com/forum/c-41750">Forum / Help</a><br/>Forum thread: <a href="http://www.peoplesoftwiki.com/forum/t-238633/sqr">sqr</a>
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://www.peoplesoftwiki.com/forum/t-239036#post-774262</guid>
				<title>SEND E-MAIL</title>
				<link>http://www.peoplesoftwiki.com/forum/t-239036/send-e-mail#post-774262</link>
				<description></description>
				<pubDate>Tue, 04 May 2010 07:42:51 +0000</pubDate>
				<wikidot:authorName>DURGAVAJHULA</wikidot:authorName>				<wikidot:authorUserId>476507</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>HOW TO SEND EMAILS USING SQR</p> <br/>Forum category: <a href="http://www.peoplesoftwiki.com/forum/c-41750">Forum / Help</a><br/>Forum thread: <a href="http://www.peoplesoftwiki.com/forum/t-239036/send-e-mail">SEND E-MAIL</a>
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://www.peoplesoftwiki.com/forum/t-238633#post-774260</guid>
				<title>Re: sqr</title>
				<link>http://www.peoplesoftwiki.com/forum/t-238633/sqr#post-774260</link>
				<description></description>
				<pubDate>Tue, 04 May 2010 07:36:49 +0000</pubDate>
				<wikidot:authorName>DURGAVAJHULA</wikidot:authorName>				<wikidot:authorUserId>476507</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>MY QUESTION IS THAT , THE SQR PROGRAM SHOULD RUN ONLY ONLINE, IT SHOULD NOT RUN BY USING SQR DIALOG BOX AND COMMANDLINE IN WINDOWS</p> <br/>Forum category: <a href="http://www.peoplesoftwiki.com/forum/c-41750">Forum / Help</a><br/>Forum thread: <a href="http://www.peoplesoftwiki.com/forum/t-238633/sqr">sqr</a>
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://www.peoplesoftwiki.com/forum/t-238633#post-773705</guid>
				<title>Re: sqr</title>
				<link>http://www.peoplesoftwiki.com/forum/t-238633/sqr#post-773705</link>
				<description></description>
				<pubDate>Mon, 03 May 2010 20:39:12 +0000</pubDate>
				<wikidot:authorName>Praj</wikidot:authorName>				<wikidot:authorUserId>52320</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>I'm not sure what you mean by this? Are people running the SQR locally on their machines or on the server outside of PeopleSoft? Can you provide more details.</p> <br/>Forum category: <a href="http://www.peoplesoftwiki.com/forum/c-41750">Forum / Help</a><br/>Forum thread: <a href="http://www.peoplesoftwiki.com/forum/t-238633/sqr">sqr</a>
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://www.peoplesoftwiki.com/forum/t-238083#post-773480</guid>
				<title>Re: nedd ps_person table data</title>
				<link>http://www.peoplesoftwiki.com/forum/t-238083/nedd-ps-person-table-data#post-773480</link>
				<description></description>
				<pubDate>Mon, 03 May 2010 16:20:38 +0000</pubDate>
				<wikidot:authorName>anand gorur</wikidot:authorName>								<content:encoded>
					<![CDATA[
						 <p>give ashout to your DBA they will be able to get it from archive logs, it is the only option.. anything else will only be an evidence</p> <br/>Forum category: <a href="http://www.peoplesoftwiki.com/forum/c-41750">Forum / Help</a><br/>Forum thread: <a href="http://www.peoplesoftwiki.com/forum/t-238083/nedd-ps-person-table-data">nedd ps_person table data</a>
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://www.peoplesoftwiki.com/forum/t-238633#post-772252</guid>
				<title>sqr</title>
				<link>http://www.peoplesoftwiki.com/forum/t-238633/sqr#post-772252</link>
				<description></description>
				<pubDate>Sun, 02 May 2010 07:30:30 +0000</pubDate>
				<wikidot:authorName>DURGAVAJHULA</wikidot:authorName>				<wikidot:authorUserId>476507</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>how to restrict sqr program executing other than in process scheduler</p> <br/>Forum category: <a href="http://www.peoplesoftwiki.com/forum/c-41750">Forum / Help</a><br/>Forum thread: <a href="http://www.peoplesoftwiki.com/forum/t-238633/sqr">sqr</a>
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://www.peoplesoftwiki.com/forum/t-204429#post-770362</guid>
				<title>Excellent work, saved me from Oracle&#039;s JDeveloper</title>
				<link>http://www.peoplesoftwiki.com/forum/t-204429/testing-web-services-with-soapui#post-770362</link>
				<description></description>
				<pubDate>Fri, 30 Apr 2010 02:31:29 +0000</pubDate>
				<wikidot:authorName>Jeff Buehrle</wikidot:authorName>								<content:encoded>
					<![CDATA[
						 <p>Just wanted to say "Thanks" for posting this. I was looking for a good way to test a Web Service before just dumping on the third-party for testing and the only thing I could find was Oracle's JDeveloper. Then I found this. It was quick and easy to get setup and running. I am still having trouble figuring out the security, where I want the connection to go through as a specific user, not the "default" App Server user or XMLLINK user.</p> <br/>Forum category: <a href="http://www.peoplesoftwiki.com/forum/c-41062">Forum / Existing Content</a><br/>Forum thread: <a href="http://www.peoplesoftwiki.com/forum/t-204429/testing-web-services-with-soapui">Testing Web Services with soapUI</a>
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://www.peoplesoftwiki.com/forum/t-238083#post-769700</guid>
				<title>Re: nedd ps_person table data</title>
				<link>http://www.peoplesoftwiki.com/forum/t-238083/nedd-ps-person-table-data#post-769700</link>
				<description></description>
				<pubDate>Thu, 29 Apr 2010 11:50:33 +0000</pubDate>
				<wikidot:authorName>Praj</wikidot:authorName>				<wikidot:authorUserId>52320</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>I'm guessing you can't get the data back from a database backup or another database? Is this a production database or just a demo?</p> <p>The <tt>PS_PERSON</tt> table is fundamental the system. You may have some luck looking at the snapshot view <tt>PS_PERSONAL_DATA</tt> to get some of the data back. A table like <tt>PS_PERS_DATA_EFFDT</tt> will give you an idea of the number of rows you should have in <tt>PS_PERSON</tt>. At the very least, every <tt>EMPLID</tt> in <tt>PS_PERS_DATA_EFFDT</tt> needs to exist in <tt>PS_PERSON</tt>.</p> <p>Good luck!</p> <br/>Forum category: <a href="http://www.peoplesoftwiki.com/forum/c-41750">Forum / Help</a><br/>Forum thread: <a href="http://www.peoplesoftwiki.com/forum/t-238083/nedd-ps-person-table-data">nedd ps_person table data</a>
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://www.peoplesoftwiki.com/forum/t-238083#post-769662</guid>
				<title>nedd ps_person table data</title>
				<link>http://www.peoplesoftwiki.com/forum/t-238083/nedd-ps-person-table-data#post-769662</link>
				<description></description>
				<pubDate>Thu, 29 Apr 2010 10:30:52 +0000</pubDate>
				<wikidot:authorName>SRIKANTH</wikidot:authorName>								<content:encoded>
					<![CDATA[
						 <p>hi, i accidentally deleted ps_person table data in data base.i dont know how to get that data back, can any helps me, otherwise i just need excel/csv file for the ps_person please send to me.</p> <br/>Forum category: <a href="http://www.peoplesoftwiki.com/forum/c-41750">Forum / Help</a><br/>Forum thread: <a href="http://www.peoplesoftwiki.com/forum/t-238083/nedd-ps-person-table-data">nedd ps_person table data</a>
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://www.peoplesoftwiki.com/forum/t-237564#post-767409</guid>
				<title>OLE Automation in Peopletools 8.50</title>
				<link>http://www.peoplesoftwiki.com/forum/t-237564/ole-automation-in-peopletools-8-50#post-767409</link>
				<description></description>
				<pubDate>Tue, 27 Apr 2010 06:20:17 +0000</pubDate>
				<wikidot:authorName>Nitin</wikidot:authorName>								<content:encoded>
					<![CDATA[
						 <p>Hell All,</p> <p>Any information regarding OLE Automation will be appreciated.</p> <p>I found a piece of delivered code on XREF_WRK.XREF_OLE1.FieldChange</p> <p>Local object &amp;IDE;</p> <p>&amp;IDE = CreateObject("PEOPLESOFT.IDE");<br /> /*ObjectSetProperty(&amp;IDE, "Visible", True);*/<br /> ObjectDoMethod(&amp;IDE, "ViewObject", "Record.XREF_VIEW");</p> <p>This record is attached to the Page XREF_PANEL_01</p> <p>The Navigation is Peopletools-&gt;Administratrion-&gt;Audit-&gt;Record Cross Reference</p> <p>I went ahead and added the field as a push button this page. On Clicking the push button i get the following error</p> <p>Class PEOPLESOFT.IDE was not found. (180,74) XREF_WRK.XREF_OLE1.FieldChange PCPC:63 Statement:1</p> <p>The given class could not be found in the database, or had problems when we tried to load it.</p> <p>Does anyone have any information on how to get this class to invoke PSIDE automatically from the Web to show the record.</p> <p>Thanks</p> <p>Nitin</p> <br/>Forum category: <a href="http://www.peoplesoftwiki.com/forum/c-41750">Forum / Help</a><br/>Forum thread: <a href="http://www.peoplesoftwiki.com/forum/t-237564/ole-automation-in-peopletools-8-50">OLE Automation in Peopletools 8.50</a>
				 	]]>
				</content:encoded>							</item>
				</channel>
</rss>