<?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 posts)</title>
		<link>http://www.peoplesoftwiki.com/forum/c-41750/help</link>
		<description>Posts in the forum category &quot;Help&quot; - Ask for Help</description>
				<copyright></copyright>
		<lastBuildDate>Fri, 30 Jul 2010 05:15:18 +0000</lastBuildDate>
		
					<item>
				<guid>http://www.peoplesoftwiki.com/forum/t-256066#post-838912</guid>
				<title>Difference Between Data Buffer and Component Buffer: 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> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://www.peoplesoftwiki.com/forum/t-254405#post-837096</guid>
				<title>Data Being Added Conflicts error on Save.: 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> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://www.peoplesoftwiki.com/forum/t-236523#post-834343</guid>
				<title>PSQUERY App Engine email query results: 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> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://www.peoplesoftwiki.com/forum/t-254405#post-832657</guid>
				<title>Data Being Added Conflicts error on Save.: 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> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://www.peoplesoftwiki.com/forum/t-236523#post-822408</guid>
				<title>PSQUERY App Engine email query results: 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> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://www.peoplesoftwiki.com/forum/t-236523#post-818222</guid>
				<title>PSQUERY App Engine email query results: 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> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://www.peoplesoftwiki.com/forum/t-248449#post-817028</guid>
				<title>Field Is Required while calling DoSaveNow(): 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> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://www.peoplesoftwiki.com/forum/t-248449#post-810589</guid>
				<title>Field Is Required while calling DoSaveNow(): 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> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://www.peoplesoftwiki.com/forum/t-247983#post-810398</guid>
				<title>HRMS TABLES: 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> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://www.peoplesoftwiki.com/forum/t-247983#post-808879</guid>
				<title>HRMS TABLES: 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> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://www.peoplesoftwiki.com/forum/t-246000#post-800753</guid>
				<title>Need to find field in peoplesoft: 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> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://www.peoplesoftwiki.com/forum/t-239735#post-799515</guid>
				<title>Sending mail using PT_MCF_MAIL: 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> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://www.peoplesoftwiki.com/forum/t-242765#post-790161</guid>
				<title>Inserting to a table: 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> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://www.peoplesoftwiki.com/forum/t-242765#post-790149</guid>
				<title>Inserting to a table: 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> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://www.peoplesoftwiki.com/forum/t-242765#post-790137</guid>
				<title>Inserting to a table: 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> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://www.peoplesoftwiki.com/forum/t-242765#post-789516</guid>
				<title>Inserting to a table: 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> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://www.peoplesoftwiki.com/forum/t-242765#post-789498</guid>
				<title>Inserting to a table: 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> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://www.peoplesoftwiki.com/forum/t-242722#post-789290</guid>
				<title>exporting hierarchical data using file layouts: 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> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://www.peoplesoftwiki.com/forum/t-242403#post-787562</guid>
				<title>PeopleSoft Financials Default UserIDs and Permission Lists: 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> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://www.peoplesoftwiki.com/forum/t-242392#post-787511</guid>
				<title>express issue and distribution types: 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> 
				 	]]>
				</content:encoded>							</item>
				</channel>
</rss>