<?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>Help (new threads)</title>
		<link>http://www.peoplesoftwiki.com/forum/c-41750/help</link>
		<description>Threads in the forum category &quot;Help&quot; - Ask for Help</description>
				<copyright></copyright>
		<lastBuildDate>Fri, 30 Jul 2010 05:05:40 +0000</lastBuildDate>
		
					<item>
				<guid>http://www.peoplesoftwiki.com/forum/t-256066</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</link>
				<description>Difference between component buffer and data buffer</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> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://www.peoplesoftwiki.com/forum/t-254405</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</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> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://www.peoplesoftwiki.com/forum/t-248449</guid>
				<title>Field Is Required while calling DoSaveNow()</title>
				<link>http://www.peoplesoftwiki.com/forum/t-248449/field-is-required-while-calling-dosavenow</link>
				<description>Field Is Required while calling DoSaveNow()

Why OT_ESS.DATE is stated empty while calling DoSaveNow() althought it already has a value?</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> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://www.peoplesoftwiki.com/forum/t-247983</guid>
				<title>HRMS TABLES</title>
				<link>http://www.peoplesoftwiki.com/forum/t-247983/hrms-tables</link>
				<description>Can i find all the list of hrms tables in one table</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> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://www.peoplesoftwiki.com/forum/t-246000</guid>
				<title>Need to find field in peoplesoft</title>
				<link>http://www.peoplesoftwiki.com/forum/t-246000/need-to-find-field-in-peoplesoft</link>
				<description>Does anyone know what record/field would denote in peoplesoft if a purchase order is a regular order or a repair?</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> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://www.peoplesoftwiki.com/forum/t-242765</guid>
				<title>Inserting to a table</title>
				<link>http://www.peoplesoftwiki.com/forum/t-242765/inserting-to-a-table</link>
				<description>Need to insert information to a logging table when customer views a view-only page.</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> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://www.peoplesoftwiki.com/forum/t-242722</guid>
				<title>exporting hierarchical data using file layouts</title>
				<link>http://www.peoplesoftwiki.com/forum/t-242722/exporting-hierarchical-data-using-file-layouts</link>
				<description>exporting hierarchical data using file layouts using people code</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> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://www.peoplesoftwiki.com/forum/t-242403</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</link>
				<description>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?</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> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://www.peoplesoftwiki.com/forum/t-242392</guid>
				<title>express issue and distribution types</title>
				<link>http://www.peoplesoftwiki.com/forum/t-242392/express-issue-and-distribution-types</link>
				<description>Question on RTVs an express issues for vendor returns.</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> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://www.peoplesoftwiki.com/forum/t-241429</guid>
				<title>PS QUery</title>
				<link>http://www.peoplesoftwiki.com/forum/t-241429/ps-query</link>
				<description>How do I use sub-query in the selected column in PS Query</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> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://www.peoplesoftwiki.com/forum/t-239975</guid>
				<title>auditing user profiles</title>
				<link>http://www.peoplesoftwiki.com/forum/t-239975/auditing-user-profiles</link>
				<description>Captruring Security Activity Report in Peoplesoft 9.0</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> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://www.peoplesoftwiki.com/forum/t-239735</guid>
				<title>Sending mail using PT_MCF_MAIL</title>
				<link>http://www.peoplesoftwiki.com/forum/t-239735/sending-mail-using-pt-mcf-mail</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> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://www.peoplesoftwiki.com/forum/t-239727</guid>
				<title>temporary tables</title>
				<link>http://www.peoplesoftwiki.com/forum/t-239727/temporary-tables</link>
				<description>difference between temporary table types</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> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://www.peoplesoftwiki.com/forum/t-239036</guid>
				<title>SEND E-MAIL</title>
				<link>http://www.peoplesoftwiki.com/forum/t-239036/send-e-mail</link>
				<description>SEND MAILS</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> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://www.peoplesoftwiki.com/forum/t-238633</guid>
				<title>sqr</title>
				<link>http://www.peoplesoftwiki.com/forum/t-238633/sqr</link>
				<description>prevent execution of sqr program</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> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://www.peoplesoftwiki.com/forum/t-238083</guid>
				<title>nedd ps_person table data</title>
				<link>http://www.peoplesoftwiki.com/forum/t-238083/nedd-ps-person-table-data</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> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://www.peoplesoftwiki.com/forum/t-237564</guid>
				<title>OLE Automation in Peopletools 8.50</title>
				<link>http://www.peoplesoftwiki.com/forum/t-237564/ole-automation-in-peopletools-8-50</link>
				<description>OLE Automation in Peopletools 8.50</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> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://www.peoplesoftwiki.com/forum/t-236523</guid>
				<title>PSQUERY App Engine email query results</title>
				<link>http://www.peoplesoftwiki.com/forum/t-236523/psquery-app-engine-email-query-results</link>
				<description>I want to have the PSQUERY app engine email the XLS or CSV file when the process completes</description>
				<pubDate>Thu, 22 Apr 2010 14:18:38 +0000</pubDate>
				<wikidot:authorName>melban</wikidot:authorName>				<wikidot:authorUserId>332139</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>I want to have the PSQUERY app engine email the XLS or CSV file when the process completes. Right now you have to go out and download the files from the process monitor logs page. You can setup the be notified of the process completion but not receive the files created since this is an App Engine and not an SQL or Crystal. Any ideas?</p> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://www.peoplesoftwiki.com/forum/t-236073</guid>
				<title>cc-ing and bcc-ing emails out of Comm Gen</title>
				<link>http://www.peoplesoftwiki.com/forum/t-236073/cc-ing-and-bcc-ing-emails-out-of-comm-gen</link>
				<description></description>
				<pubDate>Tue, 20 Apr 2010 21:40:01 +0000</pubDate>
				<wikidot:authorName>Kevin Williams</wikidot:authorName>								<content:encoded>
					<![CDATA[
						 <p>Hi</p> <p>It isn't obvious to me how this might be achieved but I imagine it is a fairly common requirement. I have cases where I want to email a student and cc their agent (and vice versa) or possibly even bcc a communication to a central mailbox within our organisation.</p> <p>Has anyone done this and how are they doing it?</p> <p>Regards</p> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://www.peoplesoftwiki.com/forum/t-233059</guid>
				<title>AP Trial Balance</title>
				<link>http://www.peoplesoftwiki.com/forum/t-233059/ap-trial-balance</link>
				<description>What porcess is used to Reconcile AP to GL</description>
				<pubDate>Fri, 09 Apr 2010 13:20:38 +0000</pubDate>
				<wikidot:authorName>Steve</wikidot:authorName>								<content:encoded>
					<![CDATA[
						 <p>Is there an AP Trial Balance delivered in PeopleSoft 8.9 that could be used to reconcile AP to GL?</p> 
				 	]]>
				</content:encoded>							</item>
				</channel>
</rss>