<?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></lastBuildDate>
		
					<item>
				<guid>http://www.peoplesoftwiki.com/forum/t-201897#post-648572</guid>
				<title>Re: Can you select another query in a query?</title>
				<link>http://www.peoplesoftwiki.com/forum/t-201897/can-you-select-another-query-in-a-query#post-648572</link>
				<description></description>
				<pubDate>Sat, 05 Dec 2009 00:05:32 +0000</pubDate>
				<wikidot:authorName>Praj</wikidot:authorName>				<wikidot:authorUserId>52320</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>Hi, unfortunately I don't think this is possible in PeopleSoft Query. There's no way to reference a query in a select statement (you can of course use sub-queries in your criteria), and you can't have an expression with a <tt>FROM</tt> clause in it as it gives you an error (139,106). So that means you can't write <tt>(SELECT B.FIELDB FROM TABLE2&nbsp;B)</tt> as an expression and use it as a field.</p> <p>I think this is a pretty serious limitation. One way around this is to create a view that performs this sub-select and then to use that view in your query.</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-201897/can-you-select-another-query-in-a-query">Can you select another query in a query?</a>
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://www.peoplesoftwiki.com/forum/t-201897#post-648352</guid>
				<title>Can you select another query in a query?</title>
				<link>http://www.peoplesoftwiki.com/forum/t-201897/can-you-select-another-query-in-a-query#post-648352</link>
				<description></description>
				<pubDate>Fri, 04 Dec 2009 17:41:39 +0000</pubDate>
				<wikidot:authorName>Mike B.</wikidot:authorName>								<content:encoded>
					<![CDATA[
						 <p>I'm trying to select the results of a select, e.g.<br /> SELECT A.FIELD1, (SELECT B.FIELDB FROM TABLE2&nbsp;B) FROM TABLE1&nbsp;A<br /> and it was suggested that I might be able to do this by making the embedded SELECT a separate query and then referencing it. Is this possible? If not, is there another way to do this?</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-201897/can-you-select-another-query-in-a-query">Can you select another query in a query?</a>
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://www.peoplesoftwiki.com/forum/t-201391#post-647857</guid>
				<title>Re: IDs having more than 1 ORG</title>
				<link>http://www.peoplesoftwiki.com/forum/t-201391/ids-having-more-than-1-org#post-647857</link>
				<description></description>
				<pubDate>Fri, 04 Dec 2009 00:31:06 +0000</pubDate>
				<wikidot:authorName>Praj</wikidot:authorName>				<wikidot:authorUserId>52320</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>There's generally two ways to approach this depending on your background:</p> <ol> <li>Think about the scenario in PSQuery and build it in PSQuery</li> <li>Think about the scenario in SQL, write and test in SQL and then <em>replicate</em> the logic in PSQuery</li> </ol> <p>I prefer the second approach, as I think it lets you be more expressive and utilise the full power of SQL. Then the challange isn't how do you write the query, it becomes how to do you make PSQuery generate the SQL…</p> <p>Since I don't have the table/view names, I figure the SQL might look something like this?</p> <div class="code"> <pre> <code>select A.ID, A.SUBJECT, A.CRSE_NUMBER, A.SECTION, count(distinct B.ORG) from TABLE1 A inner join TABLE2 B on A.SUBJECT = B.SUBJECT group by A.ID, A.SUBJECT, A.CRSE_NUMBER, A.SECTION having count(distinct B.ORG) &gt; 1</code> </pre></div> <p>This joins the two tables together on subject, groups by the fields in TABLE1 and then counts the number distinct ORGs in TABLE2 and only returns cases where there is more than 1 distinct ORG.</p> <p>To do this PSQuery:</p> <ul> <li>Add your two tables in the query, standard join on the common fields (e.g. INSTITUTION, SUBJECT)</li> </ul> <ul> <li>Select the appropriate fields you need from TABLE1</li> </ul> <ul> <li>Click on Having, and add the having criteria. You will need to add an expression which is count(distinct B.ACAD_ORG) as an aggregate function so that it generates the correct having SQL. I don't think you can get around this without using an expression. Make it greater than or equal to a constant value of 1.</li> </ul> <ul> <li>Go to expressions and add your expression as a field as well (to list the distinct ORGs)</li> </ul> <p>Here's a screenshot of the expression I think you would need:</p> <table class="wiki-content-table"> <tr> <td><img src="http://www.peoplesoftwiki.com/local--files/forum:thread/ids-more-than-1-org-expression.png" alt="ids-more-than-1-org-expression.png" class="image" /></td> </tr> </table> <p>Here's a screenshot of the having crteria properties you would then use:</p> <table class="wiki-content-table"> <tr> <td><img src="http://www.peoplesoftwiki.com/local--files/forum:thread/ids-more-than-1-org-having-criteria.png" alt="ids-more-than-1-org-having-criteria.png" class="image" /></td> </tr> </table> <p>Note this took a bit of fiddling to get right in PSQuery, hopefully I have the steps right, please reply if you have any problems.</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-201391/ids-having-more-than-1-org">IDs having more than 1 ORG</a>
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://www.peoplesoftwiki.com/forum/t-201391#post-646729</guid>
				<title>IDs having more than 1 ORG</title>
				<link>http://www.peoplesoftwiki.com/forum/t-201391/ids-having-more-than-1-org#post-646729</link>
				<description></description>
				<pubDate>Wed, 02 Dec 2009 18:39:44 +0000</pubDate>
				<wikidot:authorName>mkjj</wikidot:authorName>				<wikidot:authorUserId>410730</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>I'm using the Peoplesoft Query reporting tool (version 8.9) and I can't just type a sql statement. I hope I'm giving you all the information needed:</p> <p>2 Tables:</p> <p>table 1</p> <p>ID SUBJECT CRSE_NUMBER SECTION<br /> 1 TEST 500 1<br /> 1 PRP 600 3</p> <p>2 TEST 100 1<br /> 2 TE 100 1</p> <p>3 PRP 200 4<br /> 3 BT 500 1<br /> 3 SD 200 5</p> <p>Joined with table 2 on subject</p> <p>SUBJECT ORG</p> <p>TEST TEST<br /> TE TEST<br /> PRP PRP<br /> BT BTL<br /> SD SDY</p> <p>I need to find all IDs that have more then 1 ORG so it would only retrieve:</p> <p>ID SUBJECT CRSE_NUMBER SECTION<br /> 1 TEST 500 1<br /> 1 PRP 600 3</p> <p>3 PRP 3200 4<br /> 3 BT 4500 1<br /> 3 SD 4200 5</p> <p>Help is appreciated.</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-201391/ids-having-more-than-1-org">IDs having more than 1 ORG</a>
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://www.peoplesoftwiki.com/forum/t-144176#post-643813</guid>
				<title>Very Nice work</title>
				<link>http://www.peoplesoftwiki.com/forum/t-144176/auditing-user-profiles#post-643813</link>
				<description></description>
				<pubDate>Sat, 28 Nov 2009 11:58:02 +0000</pubDate>
				<wikidot:authorName>Venkat</wikidot:authorName>								<content:encoded>
					<![CDATA[
						 <p>I have not tried this out yet but the topic and content was very intriguing</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-198367#post-640316</guid>
				<title>Re: Cobol directory</title>
				<link>http://www.peoplesoftwiki.com/forum/t-198367/cobol-directory#post-640316</link>
				<description></description>
				<pubDate>Mon, 23 Nov 2009 14:17:26 +0000</pubDate>
				<wikidot:authorName>christian</wikidot:authorName>								<content:encoded>
					<![CDATA[
						 <p>Thanks for your answer, what I was looking for was the Unix path %PS_HOME%\cblbin.<br /> Thx for your 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-198367/cobol-directory">Cobol directory</a>
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://www.peoplesoftwiki.com/forum/t-194211#post-640285</guid>
				<title>Re: PeopleSoft and Active Directory</title>
				<link>http://www.peoplesoftwiki.com/forum/t-194211/peoplesoft-and-active-directory#post-640285</link>
				<description></description>
				<pubDate>Mon, 23 Nov 2009 13:39:45 +0000</pubDate>
				<wikidot:authorName>melban</wikidot:authorName>				<wikidot:authorUserId>332139</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>We are not currently using this but would love to start. Make sure and post your findings.</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-194211/peoplesoft-and-active-directory">PeopleSoft and Active Directory</a>
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://www.peoplesoftwiki.com/forum/t-198367#post-638593</guid>
				<title>Re: Cobol directory</title>
				<link>http://www.peoplesoftwiki.com/forum/t-198367/cobol-directory#post-638593</link>
				<description></description>
				<pubDate>Fri, 20 Nov 2009 22:31:25 +0000</pubDate>
				<wikidot:authorName>Praj</wikidot:authorName>				<wikidot:authorUserId>52320</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>Hi Christian,</p> <p>Could you provide some more information about what you mean by <em>the place where is managed the link to our cobol</em>? COBOLs are generally run through the PeopleSoft application through the process scheduler or through Remote Call via PeopleCode.</p> <p>Remote call settings are configured in the application server configuration file (<tt>psappsrv.cfg</tt>) and by default it wil look for compiled COBOL files in:</p> <ul> <li>Windows: %PS_HOME%\cblbin[A/E/U] (A = non-unicode, E = EBDIC or U = unicode)</li> <li>Unix: %PS_HOME%\cblbin</li> </ul> <p>These settings can be overridden.</p> <p>Within the application, all you can really do in relation to COBOLs is to confirm that remote call is working through:</p> <ul> <li>PeopleTools &gt; Utilities &gt; Debug &gt; PeopleTools Test Utilities</li> </ul> <p>For COBOLs run through the process scheduler, you can check the configuration of the COBOL process types related to your process scheduler OS and database through:</p> <ul> <li>PeopleTools &gt; Process Scheduler &gt; Process Types</li> </ul> <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-198367/cobol-directory">Cobol directory</a>
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://www.peoplesoftwiki.com/forum/t-198623#post-638579</guid>
				<title>Re: moderator e-mail</title>
				<link>http://www.peoplesoftwiki.com/forum/t-198623/moderator-e-mail#post-638579</link>
				<description></description>
				<pubDate>Fri, 20 Nov 2009 22:18:16 +0000</pubDate>
				<wikidot:authorName>Praj</wikidot:authorName>				<wikidot:authorUserId>52320</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>Please see the new page with <a href="http://www.peoplesoftwiki.com/contact">contact</a> options.</p> <br/>Forum category: <a href="http://www.peoplesoftwiki.com/forum/c-41751">Forum / Comments</a><br/>Forum thread: <a href="http://www.peoplesoftwiki.com/forum/t-198623/moderator-e-mail">moderator e-mail</a>
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://www.peoplesoftwiki.com/forum/t-198643#post-638497</guid>
				<title>Re: Troubleshooting Process Scheduler Recurrences</title>
				<link>http://www.peoplesoftwiki.com/forum/t-198643/troubleshooting-process-scheduler-recurrences#post-638497</link>
				<description></description>
				<pubDate>Fri, 20 Nov 2009 19:53:34 +0000</pubDate>
				<wikidot:authorName>melban</wikidot:authorName>				<wikidot:authorUserId>332139</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>What happens if you select the first date to be Nov 28? I wonder if it is looking at the date you select and finding the next date that isn't 1 day before the end of the month thus making it skip over November.</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-198643/troubleshooting-process-scheduler-recurrences">Troubleshooting Process Scheduler Recurrences</a>
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://www.peoplesoftwiki.com/forum/t-198643#post-638437</guid>
				<title>Troubleshooting Process Scheduler Recurrences</title>
				<link>http://www.peoplesoftwiki.com/forum/t-198643/troubleshooting-process-scheduler-recurrences#post-638437</link>
				<description></description>
				<pubDate>Fri, 20 Nov 2009 18:46:48 +0000</pubDate>
				<wikidot:authorName>Anne</wikidot:authorName>								<content:encoded>
					<![CDATA[
						 <p>Hi,</p> <p>Thanks in advance for your help. I have a recurrence set up with custom dates of the last day of each month -1. For 2009 I have only two dates left for this year, November 29 and December 30. When I try to schedule reports using this recurrence the instance is scheduled for December 30 and it skips November 29.</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-198643/troubleshooting-process-scheduler-recurrences">Troubleshooting Process Scheduler Recurrences</a>
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://www.peoplesoftwiki.com/forum/t-198623#post-638348</guid>
				<title>moderator e-mail</title>
				<link>http://www.peoplesoftwiki.com/forum/t-198623/moderator-e-mail#post-638348</link>
				<description></description>
				<pubDate>Fri, 20 Nov 2009 16:26:01 +0000</pubDate>
				<wikidot:authorName>christian</wikidot:authorName>								<content:encoded>
					<![CDATA[
						 <p>Hi,<br /> someone could give me the administrator's email ?<br /> please</p> <br/>Forum category: <a href="http://www.peoplesoftwiki.com/forum/c-41751">Forum / Comments</a><br/>Forum thread: <a href="http://www.peoplesoftwiki.com/forum/t-198623/moderator-e-mail">moderator e-mail</a>
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://www.peoplesoftwiki.com/forum/t-198367#post-637512</guid>
				<title>Cobol directory</title>
				<link>http://www.peoplesoftwiki.com/forum/t-198367/cobol-directory#post-637512</link>
				<description></description>
				<pubDate>Thu, 19 Nov 2009 16:23:20 +0000</pubDate>
				<wikidot:authorName>Christian</wikidot:authorName>								<content:encoded>
					<![CDATA[
						 <p>Hi,<br /> I work on PeopleSoft HRMS, and particularly with cobol.<br /> I have found the directory where cobol are stored opt/peoplesoft/pthr/src/cbl<br /> but what I'm looking for is the place where is managed the link to our cobol.<br /> Is it a configuration file on application server which manage those links or<br /> is it in PeopleSoft 4tier in a specific page like people tools ? I dont' know…<br /> If someone can help me please…<br /> Regards</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-198367/cobol-directory">Cobol directory</a>
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://www.peoplesoftwiki.com/forum/t-194211#post-625746</guid>
				<title>PeopleSoft and Active Directory</title>
				<link>http://www.peoplesoftwiki.com/forum/t-194211/peoplesoft-and-active-directory#post-625746</link>
				<description></description>
				<pubDate>Thu, 05 Nov 2009 15:31:26 +0000</pubDate>
				<wikidot:authorName>AOlson</wikidot:authorName>								<content:encoded>
					<![CDATA[
						 <p>Hello,<br /> I have a question for those users out there using PeopleSoft with Active Directory. We are in the early stages of getting a common Active Directory setup for all of our locations. We want PeopleSoft to be the instigator for User Creation as 95% of all users are first created in peoplesoft. We would like this to all be real time if possible.</p> <p>My questions are.<br /> How are users out there currently using Active Directory with Peoplesoft?</p> <p>Does PeopleSoft have the ability to query or write directly to Active Directory? If so how?</p> <p>My initial thoughts were to have PeopleSoft instigate the creation of the user and then pass needed information to a web service or something to have the Active Directory account portion created. is this an ok method?</p> <p>Looking for any assitance or direction one could provide.</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-194211/peoplesoft-and-active-directory">PeopleSoft and Active Directory</a>
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://www.peoplesoftwiki.com/forum/t-192567#post-620349</guid>
				<title>Debugging / Tracing XML Publisher</title>
				<link>http://www.peoplesoftwiki.com/forum/t-192567/debugging-tracing-xml-publisher#post-620349</link>
				<description></description>
				<pubDate>Thu, 29 Oct 2009 21:58:33 +0000</pubDate>
				<wikidot:authorName>Praj</wikidot:authorName>				<wikidot:authorUserId>52320</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>Didn't realise XML publisher had a debugging / tracing option, but this great <a href="http://jmcmahon33.blogspot.com/2009/10/steps-to-turn-on-logging-for-xmlp.html" >post</a> by PeopleSoft / Oracle tips goes through how to turn it on.</p> <p>I tested this on a unix system, and set the log path to a folder I created: <tt>$PS_HOME/log/XMLP</tt>. Note that the <tt>LogDir</tt> doesn't like environment variables, e.g. I had to hard code the path to <tt>$PS_HOME</tt> and it will throw an error if you specify a location it can't write to.</p> <br/>Forum category: <a href="http://www.peoplesoftwiki.com/forum/c-84391">Forum / General Discussion</a><br/>Forum thread: <a href="http://www.peoplesoftwiki.com/forum/t-192567/debugging-tracing-xml-publisher">Debugging / Tracing XML Publisher</a>
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://www.peoplesoftwiki.com/forum/t-192344#post-619617</guid>
				<title>Using Oracle Database Links</title>
				<link>http://www.peoplesoftwiki.com/forum/t-192344/using-oracle-database-links#post-619617</link>
				<description></description>
				<pubDate>Wed, 28 Oct 2009 22:14:53 +0000</pubDate>
				<wikidot:authorName>Praj</wikidot:authorName>				<wikidot:authorUserId>52320</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>The PeopleSoft DBA Blog has a great <a href="http://blog.psftdba.com/2009/10/database-links-and-peoplesoft.html" >article</a> that explains good and bad uses of Oracle database links. Definitely worth a read if you use them at your organisation. As pointed out, potential alternatives include using application messaging or <a href="http://www.dba-oracle.com/art_9i_mv.htm" >materialized views</a>. Like most things, they can work very well if used in the right way.</p> <br/>Forum category: <a href="http://www.peoplesoftwiki.com/forum/c-84391">Forum / General Discussion</a><br/>Forum thread: <a href="http://www.peoplesoftwiki.com/forum/t-192344/using-oracle-database-links">Using Oracle Database Links</a>
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://www.peoplesoftwiki.com/forum/t-191710#post-617981</guid>
				<title>Re: How to Communicate with Peoplesoft Application</title>
				<link>http://www.peoplesoftwiki.com/forum/t-191710/how-to-communicate-with-peoplesoft-application#post-617981</link>
				<description></description>
				<pubDate>Mon, 26 Oct 2009 23:34:44 +0000</pubDate>
				<wikidot:authorName>Ducatiss</wikidot:authorName>								<content:encoded>
					<![CDATA[
						 <p>Hi MMP<br /> Sometimes it is more useful for you to take the time to explain yourself if indeed you want assistance. Your explanation is lacking in detail to say the least.</p> <p>Meow!!</p> <p>You may be referring to Guest access which is set up via your web profile under the Security tab of the web profile.</p> <p>PeopleTools &gt; Web Profile &gt; Web Profile Configuration » Security</p> <p>Look for the Publis Users section and you will see a UserId and a password.</p> <p>This says what user will be automatically logged in when a direct link is served. Obviously the user (normally a GUEST user) will need access to the direct link. You could then publish your defaulter list generation process under the Guest user (via a role and permission of course) and then directly serve the link to this menu/component.</p> <p>Let us know if this helps…</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-191710/how-to-communicate-with-peoplesoft-application">How to Communicate with Peoplesoft Application</a>
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://www.peoplesoftwiki.com/forum/t-191710#post-617386</guid>
				<title>How to Communicate with Peoplesoft Application</title>
				<link>http://www.peoplesoftwiki.com/forum/t-191710/how-to-communicate-with-peoplesoft-application#post-617386</link>
				<description></description>
				<pubDate>Mon, 26 Oct 2009 07:14:16 +0000</pubDate>
				<wikidot:authorName>mmp</wikidot:authorName>								<content:encoded>
					<![CDATA[
						 <p>Hi,<br /> We are developing an application that will help manager’s generate defaulters of timesheet easily at the click of button. We will try to automate and remove the traversal steps that are between the login and the defaulter list generation process currently in Peoplesoft. Can anyone please help us for starting this 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-191710/how-to-communicate-with-peoplesoft-application">How to Communicate with Peoplesoft Application</a>
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://www.peoplesoftwiki.com/forum/t-73750#post-615565</guid>
				<title>Re: Overriding a Component&#039;s Search Record for a Component Interface</title>
				<link>http://www.peoplesoftwiki.com/forum/t-73750/overriding-a-component-s-search-record-for-a-component-interface#post-615565</link>
				<description></description>
				<pubDate>Fri, 23 Oct 2009 13:05:01 +0000</pubDate>
				<wikidot:authorName>Gavin</wikidot:authorName>								<content:encoded>
					<![CDATA[
						 <p>You could change the search record on the component to one that allows access to all employees/customers/persons/students etc. i.e. No Security at all.</p> <p>Then on each menu where the componet is accessed use the search view override to override this search view with the search view you wish to use online i.e. The one with the security in it.</p> <p>If you are using the CI within an Application Engine or other batch process then you most likely dont need security on the search view thus increasing performance.</p> <p>Hope this helps for those using 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-73750/overriding-a-component-s-search-record-for-a-component-interface">Overriding a Component's Search Record for a Component Interface</a>
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://www.peoplesoftwiki.com/forum/t-190404#post-615143</guid>
				<title>Re: sqr reports</title>
				<link>http://www.peoplesoftwiki.com/forum/t-190404/sqr-reports#post-615143</link>
				<description></description>
				<pubDate>Thu, 22 Oct 2009 22:06:58 +0000</pubDate>
				<wikidot:authorName>Praj</wikidot:authorName>				<wikidot:authorUserId>52320</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>Hi, what's the full path to the SQRW application you are using?</p> <p>There are two different SQR binary paths, one with <tt>ORA</tt> for Oracle and one with <tt>MSS</tt> for Microsoft SQL Server.<br /> The path to the SQRW tool is something like this: <tt>%PS_HOME%\bin\sqr\ORA\BINW</tt> or <tt>%PS_HOME%\bin\sqr\MSS\BINW</tt>.</p> <p>Not sure if this makes a difference ?</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-190404/sqr-reports">sqr reports</a>
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://www.peoplesoftwiki.com/forum/t-190404#post-612886</guid>
				<title>sqr reports</title>
				<link>http://www.peoplesoftwiki.com/forum/t-190404/sqr-reports#post-612886</link>
				<description></description>
				<pubDate>Tue, 20 Oct 2009 16:19:30 +0000</pubDate>
				<wikidot:authorName>shyam</wikidot:authorName>								<content:encoded>
					<![CDATA[
						 <p>Using SQRW tool I can run sqr reports when database is Oracle and HRMS,but when I want to run the sqr report using Finance and SQL Server I am getting error.</p> <p>Showing error in Command prompt as</p> <p>Oracle OCIServerAttach error<br /> Cannot logon to the database.</p> <p>When running Microsoft SQL Server as databse.why i am getting Oracle error.</p> <p>IN SQRW i gave<br /> Username = sa<br /> Password = sa<br /> Database = FSCM89</p> <p>Username and Password are same as of Microsoft SQL Server database.</p> <p>I think there may be settings to change my database from Oracle to Sql server.Can any one help me in resolving 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-190404/sqr-reports">sqr reports</a>
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://www.peoplesoftwiki.com/forum/t-188292#post-612812</guid>
				<title>Re: Glad I found your site!</title>
				<link>http://www.peoplesoftwiki.com/forum/t-188292/glad-i-found-your-site#post-612812</link>
				<description></description>
				<pubDate>Tue, 20 Oct 2009 14:37:51 +0000</pubDate>
				<wikidot:authorName>Nan</wikidot:authorName>								<content:encoded>
					<![CDATA[
						 <p>My keys were mismatched between my Level 1 and Level 2 on my page.<br /> The level 2's view keys were out of order and did not follow the order of the Level 1's table's keys.<br /> That is what really caused my No Matching Buffer error.</p> <p>Level 1 table: setid (key), recnbr (key), effdt (key), effseq (key),…<br /> Level 2 view: setid (key), descr (key), recnbr (key), effdt (key), effseq(key),…</p> <p>However when I fixed it, I put the 'descr (key)' after the last Level 1 key and it then did not give me the No Matching Buffer error.<br /> I was confused when I got the error because I didn't even realize that I had changed the order of the keys in the Level 2 view.<br /> thanks for your site!</p> <br/>Forum category: <a href="http://www.peoplesoftwiki.com/forum/c-41751">Forum / Comments</a><br/>Forum thread: <a href="http://www.peoplesoftwiki.com/forum/t-188292/glad-i-found-your-site">Glad I found your site!</a>
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://www.peoplesoftwiki.com/forum/t-133136#post-611859</guid>
				<title>Re: Feedback on the readability of the site</title>
				<link>http://www.peoplesoftwiki.com/forum/t-133136/feedback-on-the-readability-of-the-site#post-611859</link>
				<description></description>
				<pubDate>Mon, 19 Oct 2009 12:58:34 +0000</pubDate>
				<wikidot:authorName>melban</wikidot:authorName>				<wikidot:authorUserId>332139</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>Looks good for me. I'm at 1440x900 and using Chrome.</p> <br/>Forum category: <a href="http://www.peoplesoftwiki.com/forum/c-41751">Forum / Comments</a><br/>Forum thread: <a href="http://www.peoplesoftwiki.com/forum/t-133136/feedback-on-the-readability-of-the-site">Feedback on the readability of the site</a>
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://www.peoplesoftwiki.com/forum/t-188671#post-609054</guid>
				<title>Re: Component Interface PeopleCode</title>
				<link>http://www.peoplesoftwiki.com/forum/t-188671/component-interface-peoplecode#post-609054</link>
				<description></description>
				<pubDate>Thu, 15 Oct 2009 02:23:29 +0000</pubDate>
				<wikidot:authorName>Praj</wikidot:authorName>				<wikidot:authorUserId>52320</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>Hi,</p> <p>This might be possible using Component Interface PeopleCode.</p> <p>I believe you would need to:</p> <ol> <li>Create the appropriate method in your CI method PeopleCode</li> <li>Call the method as part of the code you use to access the CI</li> </ol> <p>Some delivered examples are the <tt>USER_PROFILE</tt> component interface which includes additional methods (functions) like <tt>ResetPassword</tt> and <tt>SetPassword</tt>. Another example is the <tt>PROCESSREQUEST</tt> component interface.</p> <p>Step 2 is really the trick. If you are using a CI for the inbound data conversion then it <em>should</em> simply be a matter of calling the "pre-edit" method before you insert/update/delete and save data using the CI. However, I'm not sure if that's what you are actually doing?</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-188671/component-interface-peoplecode">Component Interface PeopleCode</a>
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://www.peoplesoftwiki.com/forum/t-188724#post-608947</guid>
				<title>Print Project Alternative for PeopleCode</title>
				<link>http://www.peoplesoftwiki.com/forum/t-188724/print-project-alternative-for-peoplecode#post-608947</link>
				<description></description>
				<pubDate>Wed, 14 Oct 2009 23:38:07 +0000</pubDate>
				<wikidot:authorName>Praj</wikidot:authorName>				<wikidot:authorUserId>52320</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>A work colleague put me onto this <a href="http://it.toolbox.com/wiki/index.php/Print_Project_Alternative_for_PeopleCode" >great tip</a> for modifying the XML in your exported project definition so that you can view PeopleCode in a better format.</p> <p>A couple of catches:</p> <ul> <li>Once you format the project XML it is no longer valid for re-import. So make a copy of it when doing this.</li> <li>You need an additional file <tt>PeopleCodeViewer.xsl</tt> to exist in the same directory as your edited project XML. The source for this file is on the site, but doesn't work with a straight copy and paste so, here's a formatted version of it (note all credit goes to the original site for this code)</li> <li>Simply open your edited project XML file in a browser to see the formatted results.</li> </ul> <div class="code"> <div class="hl-main"> <pre> <span class="hl-brackets">&lt;</span><span class="hl-reserved">xsl:stylesheet</span><span class="hl-code"> </span><span class="hl-var">version</span><span class="hl-code">=</span><span class="hl-quotes">"</span><span class="hl-string">1.0</span><span class="hl-quotes">"</span><span class="hl-code"> </span><span class="hl-var">xmlns:xsl</span><span class="hl-code">=</span><span class="hl-quotes">"</span><span class="hl-string">http://www.w3.org/1999/XSL/Transform</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">xsl:template</span><span class="hl-code"> </span><span class="hl-var">match</span><span class="hl-code">=</span><span class="hl-quotes">"</span><span class="hl-string">/root</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">html</span><span class="hl-brackets">&gt;</span><span class="hl-code"> </span><span class="hl-brackets">&lt;</span><span class="hl-reserved">header</span><span class="hl-brackets">&gt;</span><span class="hl-code"> </span><span class="hl-brackets">&lt;</span><span class="hl-reserved">xsl:variable</span><span class="hl-code"> </span><span class="hl-var">name</span><span class="hl-code">=</span><span class="hl-quotes">"</span><span class="hl-string">project</span><span class="hl-quotes">"</span><span class="hl-code"> </span><span class="hl-var">select</span><span class="hl-code">=</span><span class="hl-quotes">"</span><span class="hl-string">instance[@class='PJM']</span><span class="hl-quotes">"</span><span class="hl-code"> </span><span class="hl-brackets">/&gt;</span><span class="hl-code"> </span><span class="hl-brackets">&lt;</span><span class="hl-reserved">h1</span><span class="hl-brackets">&gt;</span><span class="hl-code"> Project: </span><span class="hl-brackets">&lt;</span><span class="hl-reserved">xsl:value-of</span><span class="hl-code"> </span><span class="hl-var">select</span><span class="hl-code">=</span><span class="hl-quotes">"</span><span class="hl-string">$project/rowset/row/szProjectName</span><span class="hl-quotes">"</span><span class="hl-code"> </span><span class="hl-brackets">/&gt;</span><span class="hl-code"> </span><span class="hl-brackets">&lt;/</span><span class="hl-reserved">h1</span><span class="hl-brackets">&gt;</span><span class="hl-code"> </span><span class="hl-brackets">&lt;</span><span class="hl-reserved">h3</span><span class="hl-brackets">&gt;</span><span class="hl-code"> Description: </span><span class="hl-brackets">&lt;</span><span class="hl-reserved">xsl:value-of</span><span class="hl-code"> </span><span class="hl-var">select</span><span class="hl-code">=</span><span class="hl-quotes">"</span><span class="hl-string">$project/rowset/row/szProjectDescr</span><span class="hl-quotes">"</span><span class="hl-code"> </span><span class="hl-brackets">/&gt;</span><span class="hl-code"> </span><span class="hl-brackets">&lt;/</span><span class="hl-reserved">h3</span><span class="hl-brackets">&gt;</span><span class="hl-code"> </span><span class="hl-brackets">&lt;/</span><span class="hl-reserved">header</span><span class="hl-brackets">&gt;</span><span class="hl-code"> </span><span class="hl-brackets">&lt;</span><span class="hl-reserved">body</span><span class="hl-brackets">&gt;</span><span class="hl-code"> </span><span class="hl-brackets">&lt;</span><span class="hl-reserved">xsl:for-each</span><span class="hl-code"> </span><span class="hl-var">select</span><span class="hl-code">=</span><span class="hl-quotes">"</span><span class="hl-string">instance[@class='PCM']</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">table</span><span class="hl-brackets">&gt;</span><span class="hl-code"> </span><span class="hl-brackets">&lt;</span><span class="hl-reserved">tr</span><span class="hl-brackets">&gt;</span><span class="hl-code"> </span><span class="hl-brackets">&lt;</span><span class="hl-reserved">td</span><span class="hl-brackets">&gt;</span><span class="hl-code"> </span><span class="hl-brackets">&lt;</span><span class="hl-reserved">h5</span><span class="hl-brackets">&gt;</span><span class="hl-code"> </span><span class="hl-brackets">&lt;</span><span class="hl-reserved">xsl:value-of</span><span class="hl-code"> </span><span class="hl-var">select</span><span class="hl-code">=</span><span class="hl-quotes">"</span><span class="hl-string">rowset/row/szObjectValue_0</span><span class="hl-quotes">"</span><span class="hl-code"> </span><span class="hl-brackets">/&gt;</span><span class="hl-code">: </span><span class="hl-brackets">&lt;</span><span class="hl-reserved">xsl:value-of</span><span class="hl-code"> </span><span class="hl-var">select</span><span class="hl-code">=</span><span class="hl-quotes">"</span><span class="hl-string">rowset/row/szObjectValue_1</span><span class="hl-quotes">"</span><span class="hl-code"> </span><span class="hl-brackets">/&gt;</span><span class="hl-code">: </span><span class="hl-brackets">&lt;</span><span class="hl-reserved">xsl:value-of</span><span class="hl-code"> </span><span class="hl-var">select</span><span class="hl-code">=</span><span class="hl-quotes">"</span><span class="hl-string">rowset/row/szObjectValue_2</span><span class="hl-quotes">"</span><span class="hl-code"> </span><span class="hl-brackets">/&gt;</span><span class="hl-code">: </span><span class="hl-brackets">&lt;</span><span class="hl-reserved">xsl:value-of</span><span class="hl-code"> </span><span class="hl-var">select</span><span class="hl-code">=</span><span class="hl-quotes">"</span><span class="hl-string">rowset/row/szObjectValue_3</span><span class="hl-quotes">"</span><span class="hl-code"> </span><span class="hl-brackets">/&gt;</span><span class="hl-code">: </span><span class="hl-brackets">&lt;</span><span class="hl-reserved">xsl:value-of</span><span class="hl-code"> </span><span class="hl-var">select</span><span class="hl-code">=</span><span class="hl-quotes">"</span><span class="hl-string">rowset/row/szObjectValue_4</span><span class="hl-quotes">"</span><span class="hl-code"> </span><span class="hl-brackets">/&gt;</span><span class="hl-code"> </span><span class="hl-brackets">&lt;/</span><span class="hl-reserved">h5</span><span class="hl-brackets">&gt;</span><span class="hl-code"> </span><span class="hl-brackets">&lt;/</span><span class="hl-reserved">td</span><span class="hl-brackets">&gt;</span><span class="hl-code"> </span><span class="hl-brackets">&lt;/</span><span class="hl-reserved">tr</span><span class="hl-brackets">&gt;</span><span class="hl-code"> </span><span class="hl-brackets">&lt;</span><span class="hl-reserved">tr</span><span class="hl-brackets">&gt;</span><span class="hl-code"> </span><span class="hl-brackets">&lt;</span><span class="hl-reserved">td</span><span class="hl-brackets">&gt;</span><span class="hl-code"> </span><span class="hl-brackets">&lt;</span><span class="hl-reserved">pre</span><span class="hl-brackets">&gt;</span><span class="hl-code"> </span><span class="hl-brackets">&lt;</span><span class="hl-reserved">xsl:value-of</span><span class="hl-code"> </span><span class="hl-var">select</span><span class="hl-code">=</span><span class="hl-quotes">"</span><span class="hl-string">peoplecode_text</span><span class="hl-quotes">"</span><span class="hl-code"> </span><span class="hl-brackets">/&gt;</span><span class="hl-code"> </span><span class="hl-brackets">&lt;/</span><span class="hl-reserved">pre</span><span class="hl-brackets">&gt;</span><span class="hl-code"> </span><span class="hl-brackets">&lt;/</span><span class="hl-reserved">td</span><span class="hl-brackets">&gt;</span><span class="hl-code"> </span><span class="hl-brackets">&lt;/</span><span class="hl-reserved">tr</span><span class="hl-brackets">&gt;</span><span class="hl-code"> </span><span class="hl-brackets">&lt;/</span><span class="hl-reserved">table</span><span class="hl-brackets">&gt;</span><span class="hl-code"> </span><span class="hl-brackets">&lt;/</span><span class="hl-reserved">xsl:for-each</span><span class="hl-brackets">&gt;</span><span class="hl-code"> </span><span class="hl-brackets">&lt;/</span><span class="hl-reserved">body</span><span class="hl-brackets">&gt;</span><span class="hl-code"> </span><span class="hl-brackets">&lt;/</span><span class="hl-reserved">html</span><span class="hl-brackets">&gt;</span><span class="hl-code"> </span><span class="hl-brackets">&lt;/</span><span class="hl-reserved">xsl:template</span><span class="hl-brackets">&gt;</span><span class="hl-code"> </span><span class="hl-brackets">&lt;/</span><span class="hl-reserved">xsl:stylesheet</span><span class="hl-brackets">&gt;</span> </pre></div> </div> <br/>Forum category: <a href="http://www.peoplesoftwiki.com/forum/c-84391">Forum / General Discussion</a><br/>Forum thread: <a href="http://www.peoplesoftwiki.com/forum/t-188724/print-project-alternative-for-peoplecode">Print Project Alternative for PeopleCode</a>
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://www.peoplesoftwiki.com/forum/t-188671#post-608738</guid>
				<title>Component Interface PeopleCode</title>
				<link>http://www.peoplesoftwiki.com/forum/t-188671/component-interface-peoplecode#post-608738</link>
				<description></description>
				<pubDate>Wed, 14 Oct 2009 18:00:44 +0000</pubDate>
				<wikidot:authorName>David Vandiver</wikidot:authorName>								<content:encoded>
					<![CDATA[
						 <p>I am looking for a way to "pre-edit" and possibly cross reference data in the component interface. Here's an example:</p> <p>I have inbound conversion data using a business unit from legacy. I need to change this field to be the new PeopleSoft business unit. I have a PeopleSoft record where I can access this cross reference, and would like to write the code in the Component Interface. My goal is to not touch delivered components/pages/record peoplecode, but to somehow use the component interface's peoplecode. Is this possible?</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-188671/component-interface-peoplecode">Component Interface PeopleCode</a>
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://www.peoplesoftwiki.com/forum/t-187088#post-607676</guid>
				<title>Re: Web Service Help</title>
				<link>http://www.peoplesoftwiki.com/forum/t-187088/web-service-help#post-607676</link>
				<description></description>
				<pubDate>Tue, 13 Oct 2009 11:17:02 +0000</pubDate>
				<wikidot:authorName>Praj</wikidot:authorName>				<wikidot:authorUserId>52320</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>With the error you are getting:</p> <p><tt>… content type text/html of the response message does not match the content type of the binding (text/xml; charset=utf-8). If using a custom encoder, be sure that the IsContentTypeSupported method is implemented properly …</tt></p> <p>Just wondering if the line where you pass data to the web service object, you should be passing the actual EmplID rather than the object?</p> <p>So change the line to:</p> <div class="code"> <pre> <code>emplResponse = MyWebService.EmpCreate(emplRqst.EMPLID)</code> </pre></div> <p>It would seem like this is a type mismatch error. Not sure if I'm reading your code right so apologies if that's what you are in fact doing.</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-187088/web-service-help">Web Service Help</a>
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://www.peoplesoftwiki.com/forum/t-187088#post-607665</guid>
				<title>Re: Web Service Help</title>
				<link>http://www.peoplesoftwiki.com/forum/t-187088/web-service-help#post-607665</link>
				<description></description>
				<pubDate>Tue, 13 Oct 2009 11:02:03 +0000</pubDate>
				<wikidot:authorName>Praj</wikidot:authorName>				<wikidot:authorUserId>52320</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>Sounds like you're making some good progress. I'll try to post individual answers to each of your questions so bear with me :)</p> <p>The service operations security link is <em>supposed</em> to bring up a pop-up window. So if you are using IE you may need to tweak your security settings (Tools &gt; Internet Options &gt; Security) to allow pop ups etc. I've generally found the easiest solution is to make the entire PeopleSoft site (or even the entire domain e.g. *.peoplesoftwiki.com) a trusted site. If that doesn't work then, yes there may be something quite wrong, but hopefully that's all it is.</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-187088/web-service-help">Web Service Help</a>
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://www.peoplesoftwiki.com/forum/t-188292#post-607662</guid>
				<title>Re: Glad I found your site!</title>
				<link>http://www.peoplesoftwiki.com/forum/t-188292/glad-i-found-your-site#post-607662</link>
				<description></description>
				<pubDate>Tue, 13 Oct 2009 10:54:54 +0000</pubDate>
				<wikidot:authorName>Praj</wikidot:authorName>				<wikidot:authorUserId>52320</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>Great to hear you find the site useful.</p> <p>Thanks for the no matching buffer error tip too. I've added it to the article.</p> <br/>Forum category: <a href="http://www.peoplesoftwiki.com/forum/c-41751">Forum / Comments</a><br/>Forum thread: <a href="http://www.peoplesoftwiki.com/forum/t-188292/glad-i-found-your-site">Glad I found your site!</a>
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://www.peoplesoftwiki.com/forum/t-188292#post-607064</guid>
				<title>Glad I found your site!</title>
				<link>http://www.peoplesoftwiki.com/forum/t-188292/glad-i-found-your-site#post-607064</link>
				<description></description>
				<pubDate>Mon, 12 Oct 2009 18:44:09 +0000</pubDate>
				<wikidot:authorName>Nan</wikidot:authorName>								<content:encoded>
					<![CDATA[
						 <p>Thanks for all your help! I was wondering why I got that strange Excel error STYK file… And I was wondering if you wanted to add to your 'No matching buffer found for level' error help that it doesn't matter what you pick from the list if your data is bad (mismatched) the error will show. I was concentrating on the particular record I selected. There were other keys mismatched not that one. And still the error shows up. I'm bookmarking your site. Very easy to use. Thanks a bunch!!!</p> <br/>Forum category: <a href="http://www.peoplesoftwiki.com/forum/c-41751">Forum / Comments</a><br/>Forum thread: <a href="http://www.peoplesoftwiki.com/forum/t-188292/glad-i-found-your-site">Glad I found your site!</a>
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://www.peoplesoftwiki.com/forum/t-187088#post-606947</guid>
				<title>Re: Web Service Help</title>
				<link>http://www.peoplesoftwiki.com/forum/t-187088/web-service-help#post-606947</link>
				<description></description>
				<pubDate>Mon, 12 Oct 2009 16:25:56 +0000</pubDate>
				<wikidot:authorName>AOlson</wikidot:authorName>								<content:encoded>
					<![CDATA[
						 <p>Sorry, I did something to have it post before I was done. Also making sure the External Alias is GetWSDL is not set either. It looks like it used the alias name that I was setting up for the create event with the version number? Can I change this or do i need to republish?</p> <p>Thanks again for the help and sorry for the multiple posts here.</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-187088/web-service-help">Web Service Help</a>
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://www.peoplesoftwiki.com/forum/t-187088#post-606946</guid>
				<title>Re: Web Service Help</title>
				<link>http://www.peoplesoftwiki.com/forum/t-187088/web-service-help#post-606946</link>
				<description></description>
				<pubDate>Mon, 12 Oct 2009 16:22:04 +0000</pubDate>
				<wikidot:authorName>AOlson</wikidot:authorName>								<content:encoded>
					<![CDATA[
						 <p>I should make a note as I was curious about the steps you posted and started going through them.</p> <p>I got up to: Click on the Service Operation Security link, confirm the delivered permission list PTPT1200 is there and that access is set to Full Access</p> <p>When I click the Service Operations Security Link it doesn't go any place. No error or anything. It is like it refreshes the Service Operations page is all. I tried a couple of other services with the same result. Maybe this is why these are not working?</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-187088/web-service-help">Web Service Help</a>
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://www.peoplesoftwiki.com/forum/t-187088#post-606856</guid>
				<title>Re: Web Service Help</title>
				<link>http://www.peoplesoftwiki.com/forum/t-187088/web-service-help#post-606856</link>
				<description></description>
				<pubDate>Mon, 12 Oct 2009 14:34:32 +0000</pubDate>
				<wikidot:authorName>AOlson</wikidot:authorName>								<content:encoded>
					<![CDATA[
						 <p>Thanks again.<br /> I haven't checked everything you mentioned, but shortly before your reply i got it to connect to some degree. I am using VB and a test form to simply test this out.<br /> Here is what I had to do. I had to use the IP address URL and add to the URL your mention of the specific node i was on.</p> <p>However, I am still having an issue with making it work and maybe one of the things you mention above will solve this too and if so please let me know and I will try them out.</p> <p>My form has 3 boxes, am emlid, last name, first name and a button. This code is part of the click event on the button:</p> <p>Dim MyWebService As New MyEmployeeWebService.CI_NDU_AO_EMP2_T_PortTypeClient<br /> Dim emplRqst As New MyEmployeeWebService.Create<span style="text-decoration: underline;">CompIntfc</span>NDU_AO_EMP2_TTypeShape</p> <p>Dim EmplID As New MyEmployeeWebService.EMPLIDTypeShape<br /> Dim LastName As New MyEmployeeWebService.LAST_NAMETypeShape<br /> Dim FirstName As New MyEmployeeWebService.FIRST_NAMETypeShape</p> <p>EmplID.Value = txtEmplID.Text<br /> LastName.Value = txtLastName.Text<br /> FirstName.Value = txtFirstName.Text</p> <p>emplRqst.EMPLID = EmplID<br /> emplRqst.LAST_NAME = LastName<br /> emplRqst.FIRST_NAME = FirstName</p> <p>Dim emplResponse As New MyEmployeeWebService.Create<span style="text-decoration: underline;">CompIntfc</span>NDU_AO_EMP2_TResponseTypeShape</p> <p>emplResponse = MyWebService.EmpCreate(emplRqst)</p> <p>I get to the the last line (emplResponse = MyWebService.empCreate(emplRqst) and an error is thrown below:</p> <p>The content type text/html of the response message does not match the content type of the binding (text/xml; charset=utf-8). If using a custom encoder, be sure that the IsContentTypeSupported method is implemented properly. The first 572 bytes of the response were: '&lt;?xml version="1.0" ?&gt;&lt;SOAP-ENV:Envelope xmlns:SOAP-ENV="<a href="http://schemas.xmlsoap.org/soap/envelope/">http://schemas.xmlsoap.org/soap/envelope/</a>"&gt;&lt;SOAP-ENV:Body&gt;&lt;SOAP-ENV:Fault&gt;&lt;faultcode&gt;SOAP-ENV:Server&lt;/faultcode&gt;&lt;faultstring&gt;null&lt;/faultstring&gt;&lt;detail&gt;&lt;IBResponse type="error"&gt;&lt;DefaultTitle&gt;Integration Broker Response&lt;/DefaultTitle&gt;&lt;StatusCode&gt;20&lt;/StatusCode&gt;&lt;MessageID&gt;505&lt;/MessageID&gt;&lt;DefaultMessage&gt;&lt;![CDATA[Unable to find a Routing corresponding to the incoming request message.]]&gt;&lt;/DefaultMessage&gt;&lt;MessageParameters&gt;&lt;/MessageParameters&gt;&lt;/IBResponse&gt;&lt;/detail&gt;&lt;/SOAP-ENV:Fault&gt;&lt;/SOAP-ENV:Body&gt;&lt;/SOAP-ENV:Envelope&gt;'.</p> <p>Any ideas?</p> <p>Also, is there a spot where you can check what the statuscodes or MessageID's mean?</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-187088/web-service-help">Web Service Help</a>
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://www.peoplesoftwiki.com/forum/t-187088#post-604526</guid>
				<title>Re: Web Service Help</title>
				<link>http://www.peoplesoftwiki.com/forum/t-187088/web-service-help#post-604526</link>
				<description></description>
				<pubDate>Thu, 08 Oct 2009 22:33:42 +0000</pubDate>
				<wikidot:authorName>Praj</wikidot:authorName>				<wikidot:authorUserId>52320</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>Thanks for the extra information.</p> <p>The second error message you are getting when using the IP address of the gateway is slightly more helpful. It may suggest an issue with some of the internal integration broker settings.</p> <p>Can you check the following:</p> <ul> <li>Navigate to <tt>PeopleTools &gt; Integration Broker &gt; Integration Setup &gt; Service Operations</tt></li> <li>Open up the service operation <tt>GETWSDL</tt> (its part of the <tt>IB_UTILITY</tt> service)</li> <li>Confirm that on the General tab, the routing status of Any-To-Local is <em>exists</em> (Local-to-Local can be set to <em>does not exists</em>)</li> <li>Click on the <em>Service Operation Security</em> link, confirm the delivered permission list <tt>PTPT1200</tt> is there and that access is set to <em>Full Access</em></li> <li>In the Handlers tab, the handler is <tt>REQUSTHDLR</tt>, <tt>OnRequest</tt>, <tt>AppClass</tt> and <tt>Active</tt>.</li> <li>In the Routings tab you should have an auto generated routing with the sender node as <tt>~~ANY~~</tt> and receiver node as your default local node (depends on your configuration). Make sure this routing is active.</li> <li>Click on the routing hyperlink to view its properties.</li> <li>In the parameters tab, check the external alias it should just be <tt>GetWSDL</tt>. If not, then you will have a problem.</li> </ul> <p>It appears that something in this area may be incorrect which is why you are getting these errors. I had a look at the code in the <tt>PT_INTEGRATION.GetWSDL</tt> application class, and the statement the error is referring to is:</p> <div class="code"> <pre> <code>&amp;wsdlstring = %IntBroker.GetWSDL(&amp;wsdlname | "." | &amp;vername);</code> </pre></div> <p>So it may be having problems calling the internal GetWSDL service operation.</p> <p>It might also be security related. Can you check the default user ID set for the <tt>ANONYMOUS</tt> node under:</p> <ul> <li><tt>PeopleTools &gt; Integration Broker &gt; Integration Setup &gt; Nodes</tt></li> </ul> <p>This user should have the permission list <tt>PTPT1200</tt> which is the default set under service operation security for the <tt>GETWSDL</tt> service operation. To check, run the following SQL in your database, changing the <tt>OPRID</tt> to the default user ID set on the <tt>ANONYMOUS</tt> node.</p> <div class="code"> <div class="hl-main"> <pre> <span class="hl-reserved">select</span><span class="hl-code"> </span><span class="hl-identifier">OPRCLASS</span><span class="hl-code"> </span><span class="hl-reserved">from</span><span class="hl-code"> </span><span class="hl-identifier">PSOPRCLS</span><span class="hl-code"> </span><span class="hl-reserved">where</span><span class="hl-code"> </span><span class="hl-identifier">OPRID</span><span class="hl-code"> = </span><span class="hl-quotes">'</span><span class="hl-string">ANONYMOUS_NODE_DEFAULT_ID</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">OPRCLASS</span><span class="hl-code">;</span> </pre></div> </div> <p>In terms of which error log is which, the URL that uses the gateway URL should be the correct one. Although, it seems strange that you would have two, unless there is something wrong with the web server/IB configuration? Basically the gateway URL <em>should be</em> the URL of your web server.</p> <p>Good luck, hopefully its one of these things :)</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-187088/web-service-help">Web Service Help</a>
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://www.peoplesoftwiki.com/forum/t-187481#post-604483</guid>
				<title>Cube Manager</title>
				<link>http://www.peoplesoftwiki.com/forum/t-187481/cube-manager#post-604483</link>
				<description></description>
				<pubDate>Thu, 08 Oct 2009 21:15:48 +0000</pubDate>
				<wikidot:authorName>pdelfeld</wikidot:authorName>				<wikidot:authorUserId>387483</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>If anyone has an example of the SQL (PS Query) that they created as the Cube Source Query, I would greatly appreciate it. I come from a BI background but don't quite understand how to create the actual cube source query in order to link the fields of the query to the dimension. Also please provide the cube definition so that I can relate the query to the cube input.</p> <p>Thank you!</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-187481/cube-manager">Cube Manager</a>
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://www.peoplesoftwiki.com/forum/t-187088#post-604280</guid>
				<title>Re: Web Service Help</title>
				<link>http://www.peoplesoftwiki.com/forum/t-187088/web-service-help#post-604280</link>
				<description></description>
				<pubDate>Thu, 08 Oct 2009 16:59:29 +0000</pubDate>
				<wikidot:authorName>AOlson</wikidot:authorName>								<content:encoded>
					<![CDATA[
						 <p>Wow, that was quick. Thanks for the reply.</p> <p>I followed the directions on your link below and when I get to the end othe publishing of the web service it comes up with a confirm results and a Generated WSDL URL: of the following:</p> <p><a href="http://wsdl.OurAddress.com/PSIGW/PeopleSoftServiceListeningConnector/CI_MESSAGE_CATALOG1.4.wsdl">http://wsdl.OurAddress.com/PSIGW/PeopleSoftServiceListeningConnector/CI_MESSAGE_CATALOG1.4.wsdl</a>.<br /> I then go into IE to see if is available to get the following error:</p> <p>&lt;?xml version="1.0" ?&gt;<br /> - &lt;SOAP-ENV:Envelope xmlns:SOAP-ENV="<a href="http://schemas.xmlsoap.org/soap/envelope/">http://schemas.xmlsoap.org/soap/envelope/</a>"&gt;<br /> - &lt;SOAP-ENV:Body&gt;<br /> - &lt;SOAP-ENV:Fault&gt;<br /> &lt;faultcode&gt;SOAP-ENV:Server&lt;/faultcode&gt;<br /> &lt;faultstring&gt;null&lt;/faultstring&gt;<br /> - &lt;detail&gt;<br /> - &lt;IBResponse type="error"&gt;<br /> &lt;DefaultTitle&gt;Integration Broker Response&lt;/DefaultTitle&gt;<br /> &lt;StatusCode&gt;20&lt;/StatusCode&gt;<br /> &lt;MessageID&gt;887&lt;/MessageID&gt;<br /> - &lt;DefaultMessage&gt;<br /> - &lt;![CDATA[ Retrieval of WSDL failed for wsdl name: CI_MESSAGE_CATALOG1.4. (2,887) PT_INTEGRATION.GetWSDL.OnExecute Name:OnRequest PCPC:1627 Statement:33<br /> ]]&gt;<br /> &lt;/DefaultMessage&gt;<br /> &lt;MessageParameters /&gt;<br /> &lt;/IBResponse&gt;<br /> &lt;/detail&gt;<br /> &lt;/SOAP-ENV:Fault&gt;<br /> &lt;/SOAP-ENV:Body&gt;<br /> &lt;/SOAP-ENV:Envelope&gt;</p> <p>However, when I go into our gateway information there is an IP address specified. if i change the above to use our IP address as below:<br /> <a href="http://123.123.123.111/PSIGW/PeopleSoftServiceListeningConnector/CI_MESSAGE_CATALOG1.4.wsdl">http://123.123.123.111/PSIGW/PeopleSoftServiceListeningConnector/CI_MESSAGE_CATALOG1.4.wsdl</a>.</p> <p>I get the following error:<br /> &lt;?xml version="1.0" ?&gt;<br /> - &lt;SOAP-ENV:Envelope xmlns:SOAP-ENV="<a href="http://schemas.xmlsoap.org/soap/envelope/">http://schemas.xmlsoap.org/soap/envelope/</a>"&gt;<br /> - &lt;SOAP-ENV:Body&gt;<br /> - &lt;SOAP-ENV:Fault&gt;<br /> &lt;faultcode&gt;SOAP-ENV:Server&lt;/faultcode&gt;<br /> &lt;faultstring&gt;null&lt;/faultstring&gt;<br /> - &lt;detail&gt;<br /> - &lt;IBResponse type="error"&gt;<br /> &lt;DefaultTitle&gt;Integration Broker Response&lt;/DefaultTitle&gt;<br /> &lt;StatusCode&gt;20&lt;/StatusCode&gt;<br /> &lt;MessageID&gt;505&lt;/MessageID&gt;<br /> - &lt;DefaultMessage&gt;<br /> - &lt;![CDATA[ Unable to find a Routing corresponding to the incoming request message.<br /> ]]&gt;<br /> &lt;/DefaultMessage&gt;<br /> &lt;MessageParameters /&gt;<br /> &lt;/IBResponse&gt;<br /> &lt;/detail&gt;<br /> &lt;/SOAP-ENV:Fault&gt;<br /> &lt;/SOAP-ENV:Body&gt;<br /> &lt;/SOAP-ENV:Envelope&gt;</p> <p>it seems this might be an issue with all the environments we have setup? I dont' know if that IP address goes to the machine I am publishing this service on or not.</p> <p>Concerning the error log. I get two different ones when i use each of the above addresses. any idea how i determine which one i should use?</p> <p>My ultimate goal here is, I want to consume this web service in some of our VB.NET apps that we have. When I get this working I will then build my own web services to consume the data i require, but wanted to make sure this functioned first.</p> <p>Thanks again for the assistance.</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-187088/web-service-help">Web Service Help</a>
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://www.peoplesoftwiki.com/forum/t-187088#post-603824</guid>
				<title>Re: Web Service Help</title>
				<link>http://www.peoplesoftwiki.com/forum/t-187088/web-service-help#post-603824</link>
				<description></description>
				<pubDate>Thu, 08 Oct 2009 00:19:01 +0000</pubDate>
				<wikidot:authorName>Praj</wikidot:authorName>				<wikidot:authorUserId>52320</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>Hi,</p> <p>Thanks for the feedback on the Wiki. I'm glad you've found it useful.</p> <p>Could you check your integration broker logs and post the error you receive there for further information? This article goes through <a href="http://www.peoplesoftwiki.com/integration-broker-logging">Integration Broker Logging</a> but basically, first try navigating to:</p> <p><tt><a href="http://server:port/PSIGW/errorLog.html">http://server:port/PSIGW/errorLog.html</a></tt></p> <p>Note the above is basically the first part of your web server gateway URL which you can get from:</p> <ul> <li>PeopleTools &gt; Integration Broker &gt; Configuration &gt; Quick Configuration</li> </ul> <p>Scroll to bottom of the logs for the latest error messages.</p> <p>Note I've also updated the CI based web services <a href="http://www.peoplesoftwiki.com/component-interface-based-web-services">article</a> with some extra troubleshooting information which may be useful.</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-187088/web-service-help">Web Service Help</a>
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://www.peoplesoftwiki.com/forum/t-187088#post-603542</guid>
				<title>Web Service Help</title>
				<link>http://www.peoplesoftwiki.com/forum/t-187088/web-service-help#post-603542</link>
				<description></description>
				<pubDate>Wed, 07 Oct 2009 17:13:51 +0000</pubDate>
				<wikidot:authorName>AOlson</wikidot:authorName>								<content:encoded>
					<![CDATA[
						 <p>I am new to PeopleSoft Development and have been following this post to try and get an exposed web service up and running to consume by a third party application.<br /> <a href="http://peoplesoft.wikidot.com/component-interface-based-web-services">http://peoplesoft.wikidot.com/component-interface-based-web-services</a><br /> I get through the whole tutorial but when I test the Web Service (WSDL) i get an error saying:</p> <p>Retrieval of WSDL failed for wsdl name: NDFT.CI_MESSAGE_CATALOG1.1. (2,887) PT_INTEGRATION.GetWSDL.OnExecute Name:OnRequest PCPC:1627 Statement:33</p> <p>I am not sure what this means? Also, we have multiple environments here so the environment where I created this Web Serive I preceeded the CI with the environment name and a dot.CI_MESSAGE_CATALOG1.1.wsdl</p> <p>Any help would be great. Thanks for the wiki too. I have been searching for some good sites on PeopleSoft dev and they seem to be few and far between so am happy to see this.<br /> 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-187088/web-service-help">Web Service Help</a>
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://www.peoplesoftwiki.com/forum/t-183793#post-589681</guid>
				<title>Integration</title>
				<link>http://www.peoplesoftwiki.com/forum/t-183793/integration#post-589681</link>
				<description></description>
				<pubDate>Mon, 21 Sep 2009 14:34:26 +0000</pubDate>
				<wikidot:authorName>PSF</wikidot:authorName>								<content:encoded>
					<![CDATA[
						 <p>Is this something that could prove to be a difficult task? We have been asked to look into the viability of integrating an outside<br /> product that manages inventory with PS Financials 7.5. The integration will involve the automation of the Requisitioning portion of what we currently do manually for the most part. It seems like a rather large undertaking to take on this late in the lifecycle of<br /> PS as it is being utilized in this corporation. I'm not sure whether naming the solution would be appropriate but if anyone has any<br /> input, I'll be glad to provide you with further details.</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-183793/integration">Integration</a>
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://www.peoplesoftwiki.com/forum/t-129686#post-569824</guid>
				<title>Re: Writing a Date expression in PS Query</title>
				<link>http://www.peoplesoftwiki.com/forum/t-129686/writing-a-date-expression-in-ps-query#post-569824</link>
				<description></description>
				<pubDate>Wed, 26 Aug 2009 05:20:04 +0000</pubDate>
				<wikidot:authorName>Praj</wikidot:authorName>				<wikidot:authorUserId>52320</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>Here's an example that's similar to yours that may help.</p> <p>Find all user profiles that were updated in the last year.</p> <p>To do this in SQL:</p> <div class="code"> <div class="hl-main"> <pre> <span class="hl-reserved">select</span><span class="hl-code"> </span><span class="hl-identifier">OPRID</span><span class="hl-code">, </span><span class="hl-identifier">LASTUPDDTTM</span><span class="hl-code"> </span><span class="hl-reserved">from</span><span class="hl-code"> </span><span class="hl-identifier">PSOPRDEFN</span><span class="hl-code"> </span><span class="hl-reserved">where</span><span class="hl-code"> </span><span class="hl-identifier">LASTUPDDTTM</span><span class="hl-code"> </span><span class="hl-var">between</span><span class="hl-code"> </span><span class="hl-brackets">(</span><span class="hl-identifier">sysdate</span><span class="hl-code"> - </span><span class="hl-number">365</span><span class="hl-brackets">)</span><span class="hl-code"> </span><span class="hl-reserved">and</span><span class="hl-code"> </span><span class="hl-identifier">sysdate</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">LASTUPDDTTM</span><span class="hl-code"> </span><span class="hl-reserved">desc</span><span class="hl-code">;</span> </pre></div> </div> <p>So find any user where the last update date/time <tt>LASTUPDDTTM</tt> is greater than or equal to 365 days (1 year) back from the current date, up until the current date.</p> <p>Here's how you would create this expression in PS Query.</p> <table class="wiki-content-table"> <tr> <td><img src="http://peoplesoft.wikidot.com/local--files/images/date-between-one-year-period.png" alt="date-between-one-year-period.png" class="image" /></td> </tr> </table> <p>Note that I've replaced <tt>sysdate</tt> with meta-SQL - <tt>%CurrentDateTimeIn</tt> and <tt>%AddDate(%CurrentDateTimeIn, -365)</tt> to go back 365 days.</p> <p>For the second part, you might want count all user profiles that were updated in the last year, grouped by each month. Here's the SQL you would write to do this:</p> <div class="code"> <div class="hl-main"> <pre> <span class="hl-reserved">select</span><span class="hl-code"> </span><span class="hl-identifier">to_char</span><span class="hl-brackets">(</span><span class="hl-identifier">LASTUPDDTTM</span><span class="hl-code">, </span><span class="hl-quotes">'</span><span class="hl-string">Month</span><span class="hl-quotes">'</span><span class="hl-brackets">)</span><span class="hl-code"> </span><span class="hl-reserved">as</span><span class="hl-code"> </span><span class="hl-reserved">MONTH</span><span class="hl-code">, </span><span class="hl-var">count</span><span class="hl-brackets">(</span><span class="hl-reserved">distinct</span><span class="hl-code"> </span><span class="hl-identifier">OPRID</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">PSOPRDEFN</span><span class="hl-code"> </span><span class="hl-reserved">where</span><span class="hl-code"> </span><span class="hl-identifier">LASTUPDDTTM</span><span class="hl-code"> &gt;= </span><span class="hl-brackets">(</span><span class="hl-identifier">sysdate</span><span class="hl-code"> - </span><span class="hl-number">365</span><span class="hl-brackets">)</span><span class="hl-code"> </span><span class="hl-reserved">and</span><span class="hl-code"> </span><span class="hl-identifier">LASTUPDDTTM</span><span class="hl-code"> &lt;= </span><span class="hl-identifier">sysdate</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">to_char</span><span class="hl-brackets">(</span><span class="hl-identifier">LASTUPDDTTM</span><span class="hl-code">, </span><span class="hl-quotes">'</span><span class="hl-string">Month</span><span class="hl-quotes">'</span><span class="hl-brackets">)</span><span class="hl-code">;</span> </pre></div> </div> <p>The key here is the use of to_char to convert the month part of the <tt>LASTUPDDTTM</tt> field to a month. Here's how you would create the expression:</p> <table class="wiki-content-table"> <tr> <td><img src="http://peoplesoft.wikidot.com/local--files/images/to-month-expression.png" alt="to-month-expression.png" class="image" /></td> </tr> </table> <p>Add this as a field, and perform a count on the <tt>OPRID</tt> field.</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-129686/writing-a-date-expression-in-ps-query">Writing a Date expression in PS Query</a>
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://www.peoplesoftwiki.com/forum/t-129686#post-565869</guid>
				<title>Re: Writing a Date expression in PS Query</title>
				<link>http://www.peoplesoftwiki.com/forum/t-129686/writing-a-date-expression-in-ps-query#post-565869</link>
				<description></description>
				<pubDate>Fri, 21 Aug 2009 09:15:01 +0000</pubDate>
				<wikidot:authorName>john</wikidot:authorName>								<content:encoded>
					<![CDATA[
						 <p>I am using PSquery to calculate the number of people who have send their resume to the company within a year period. How could I do that using date format in PSQuery?</p> <p>also the number of resume received at the 31 of each month….</p> <p>Thanks for your 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-129686/writing-a-date-expression-in-ps-query">Writing a Date expression in PS Query</a>
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://www.peoplesoftwiki.com/forum/t-177095#post-564727</guid>
				<title>Re: Application Server affinity</title>
				<link>http://www.peoplesoftwiki.com/forum/t-177095/application-server-affinity#post-564727</link>
				<description></description>
				<pubDate>Wed, 19 Aug 2009 17:20:13 +0000</pubDate>
				<wikidot:authorName>melban</wikidot:authorName>				<wikidot:authorUserId>332139</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>I've never heard of any options to do that. All I could guess is to run a specific web server on a specific app server and make that user use that web server.</p> <p>If you are trying to determine what server the logs are being logged to you can do a CTRL-J and see which app server.</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-177095/application-server-affinity">Application Server affinity</a>
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://www.peoplesoftwiki.com/forum/t-177095#post-564724</guid>
				<title>Application Server affinity</title>
				<link>http://www.peoplesoftwiki.com/forum/t-177095/application-server-affinity#post-564724</link>
				<description></description>
				<pubDate>Wed, 19 Aug 2009 17:13:31 +0000</pubDate>
				<wikidot:authorName>Cyril</wikidot:authorName>								<content:encoded>
					<![CDATA[
						 <p>Hi</p> <p>Is there a way in peoplesoft to define/restrict certain users to run certain programs only on a particular application server (in a multi-node setup)</p> <p>I would appreciate any pointers in that direction</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-177095/application-server-affinity">Application Server affinity</a>
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://www.peoplesoftwiki.com/forum/t-172406#post-549771</guid>
				<title>Re: Instantiating an Excel Object from Peoplesoft page</title>
				<link>http://www.peoplesoftwiki.com/forum/t-172406/instantiating-an-excel-object-from-peoplesoft-page#post-549771</link>
				<description></description>
				<pubDate>Fri, 31 Jul 2009 18:33:59 +0000</pubDate>
				<wikidot:authorName>Valkyrie</wikidot:authorName>								<content:encoded>
					<![CDATA[
						 <p>Yes its should be declare as Object when instantiating workbook, worksheet, range or cell objects in Excel heres my declaration and it works fine;</p> <p>Local object &amp;oWorkApp, &amp;oWorkSheet, &amp;oWorkBook, &amp;oRange, &amp;oCells;</p> <p>Valkyrie</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-172406/instantiating-an-excel-object-from-peoplesoft-page">Instantiating an Excel Object from Peoplesoft page</a>
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://www.peoplesoftwiki.com/forum/t-172406#post-549768</guid>
				<title>Re: Instantiating an Excel Object from Peoplesoft page</title>
				<link>http://www.peoplesoftwiki.com/forum/t-172406/instantiating-an-excel-object-from-peoplesoft-page#post-549768</link>
				<description></description>
				<pubDate>Fri, 31 Jul 2009 18:29:37 +0000</pubDate>
				<wikidot:authorName>Valkyrie</wikidot:authorName>								<content:encoded>
					<![CDATA[
						 <p>Hi Susan, I use the same code and it works fine. Only thing I notice in your code is that you have space between createObject and the parenthesis</p> <p>Heres our code compare side by side<br /> &amp;WorkApp = CreateObject ("COM", "Excel.Application"); your code<br /> &amp;oWorkApp = CreateObject("COM", "Excel.Application"); my code</p> <p>&amp;oWorkBook = ObjectGetProperty(&amp;oWorkApp, "Workbooks"); my coode<br /> &amp;WorkBook = ObjectGetProperty(&amp;WorkApp, "Workbooks"); your code</p> <p>I hope it helps..</p> <p>Valkyrie</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-172406/instantiating-an-excel-object-from-peoplesoft-page">Instantiating an Excel Object from Peoplesoft page</a>
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://www.peoplesoftwiki.com/forum/t-172406#post-549765</guid>
				<title>Manipulating Excel Object in PeopleCode</title>
				<link>http://www.peoplesoftwiki.com/forum/t-172406/instantiating-an-excel-object-from-peoplesoft-page#post-549765</link>
				<description></description>
				<pubDate>Fri, 31 Jul 2009 18:23:13 +0000</pubDate>
				<wikidot:authorName>Valkyrie</wikidot:authorName>								<content:encoded>
					<![CDATA[
						 <p>Hi,</p> <p>I have instantiated Excel Object in AE Peoplecode and have been successfully manipulating data cells in each worksheet tab of my workbook.<br /> Now I want to copy a range of cells from one worksheet to another and paste its values on the other worksheet, though I dont encounter error but the<br /> action does not execute. Also when I try to save the excel file it takes forever to save. Heres some part of my code<br /> Appreciate your input.</p> <p>get <strong>a cell range then;</strong></p> <p>&amp;RangeSelected = &amp;oCells.Copy;<br /> &amp;oWorkSheet1 = &amp;oWorkApp.Worksheets("Sheet2");<br /> &amp;oCell = ObjectGetProperty(&amp;oWorkSheet1, "Range", "A1");<br /> &amp;SheetSelected = &amp;oWorkSheet1.Activate;<br /> &amp;oCell = ObjectGetProperty(&amp;oCell, "PasteSpecial");</p> <p>ObjectDoMethod(&amp;WORKAPP, "Save", "C:\TEMP\TEST1.XLS");</p> <p>Thanks a lot</p> <p>Valkyrie</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-172406/instantiating-an-excel-object-from-peoplesoft-page">Instantiating an Excel Object from Peoplesoft page</a>
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://www.peoplesoftwiki.com/forum/t-168385#post-548996</guid>
				<title>Re: Expense Report  error</title>
				<link>http://www.peoplesoftwiki.com/forum/t-168385/expense-report-error#post-548996</link>
				<description></description>
				<pubDate>Thu, 30 Jul 2009 21:46:55 +0000</pubDate>
				<wikidot:authorName>Rahul</wikidot:authorName>								<content:encoded>
					<![CDATA[
						 <p>Hi,</p> <p>I found out the error. Actually, an old customization made at the Expense Report level was barring the PeopleCode Validation trigger.</p> <p>Thanks for reading, hope to stay in touch for discussing PS!</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-168385/expense-report-error">Expense Report error</a>
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://www.peoplesoftwiki.com/forum/t-57401#post-548976</guid>
				<title>Re: This wiki could be good</title>
				<link>http://www.peoplesoftwiki.com/forum/t-57401/this-wiki-could-be-good#post-548976</link>
				<description></description>
				<pubDate>Thu, 30 Jul 2009 21:20:51 +0000</pubDate>
				<wikidot:authorName>Praj</wikidot:authorName>				<wikidot:authorUserId>52320</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>Please see the article on <a href="http://www.peoplesoftwiki.com/contributing-to-the-wiki">contributing</a> to the PeopleSoft Wiki for details.</p> <br/>Forum category: <a href="http://www.peoplesoftwiki.com/forum/c-41063">Forum / New Content</a><br/>Forum thread: <a href="http://www.peoplesoftwiki.com/forum/t-57401/this-wiki-could-be-good">This wiki could be good</a>
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://www.peoplesoftwiki.com/forum/t-57401#post-548926</guid>
				<title>Re: This wiki could be good</title>
				<link>http://www.peoplesoftwiki.com/forum/t-57401/this-wiki-could-be-good#post-548926</link>
				<description></description>
				<pubDate>Thu, 30 Jul 2009 20:20:46 +0000</pubDate>
				<wikidot:authorName>melban</wikidot:authorName>				<wikidot:authorUserId>332139</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>How do we get access to add content. I've got a useful tip on adding a pause to PeopleCode that I have searched for multiple times on the web and just found a solution I'd like to add here.</p> <br/>Forum category: <a href="http://www.peoplesoftwiki.com/forum/c-41063">Forum / New Content</a><br/>Forum thread: <a href="http://www.peoplesoftwiki.com/forum/t-57401/this-wiki-could-be-good">This wiki could be good</a>
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://www.peoplesoftwiki.com/forum/t-168385#post-547561</guid>
				<title>Re: Expense Report  error</title>
				<link>http://www.peoplesoftwiki.com/forum/t-168385/expense-report-error#post-547561</link>
				<description></description>
				<pubDate>Wed, 29 Jul 2009 11:35:10 +0000</pubDate>
				<wikidot:authorName>Praj</wikidot:authorName>				<wikidot:authorUserId>52320</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>Have you tried tracing to see what PeopleCode runs in the two different scenarios? Sounds like it may be a delivered bug that may have been logged in Metalink?</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-168385/expense-report-error">Expense Report error</a>
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://www.peoplesoftwiki.com/forum/t-172406#post-547554</guid>
				<title>Re: Instantiating an Excel Object from Peoplesoft page</title>
				<link>http://www.peoplesoftwiki.com/forum/t-172406/instantiating-an-excel-object-from-peoplesoft-page#post-547554</link>
				<description></description>
				<pubDate>Wed, 29 Jul 2009 11:24:59 +0000</pubDate>
				<wikidot:authorName>Praj</wikidot:authorName>				<wikidot:authorUserId>52320</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>Should the variable <tt>&amp;WorkBook</tt> be delcared as an object? If you change the delcaration line to:</p> <div class="code"> <pre> <code>Local object &amp;WorkApp;</code> </pre></div> <p>And remove, <tt>&amp;WorkBook</tt>, does that make any difference?</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-172406/instantiating-an-excel-object-from-peoplesoft-page">Instantiating an Excel Object from Peoplesoft page</a>
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://www.peoplesoftwiki.com/forum/t-172249#post-547543</guid>
				<title>Re: Message on Portal</title>
				<link>http://www.peoplesoftwiki.com/forum/t-172249/message-on-portal#post-547543</link>
				<description></description>
				<pubDate>Wed, 29 Jul 2009 11:13:39 +0000</pubDate>
				<wikidot:authorName>Praj</wikidot:authorName>				<wikidot:authorUserId>52320</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>Could you use <a href="http://download.oracle.com/docs/cd/E13292_01/pt849pbr0/eng/psbooks/tsec/book.htm?File=tsec/htm/tsec08.htm#d0e13487" >Signon PeopleCode</a> to display your message?</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-172249/message-on-portal">Message on Portal</a>
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://www.peoplesoftwiki.com/forum/t-172406#post-547001</guid>
				<title>Instantiating an Excel Object from Peoplesoft page</title>
				<link>http://www.peoplesoftwiki.com/forum/t-172406/instantiating-an-excel-object-from-peoplesoft-page#post-547001</link>
				<description></description>
				<pubDate>Tue, 28 Jul 2009 23:53:27 +0000</pubDate>
				<wikidot:authorName>Susan</wikidot:authorName>								<content:encoded>
					<![CDATA[
						 <p>Using the example from PeopleBooks returns an error on the ObjectGetProperty statement and I don't know what is wrong with it.<br /> The code used is as follows:</p> <p>Local object &amp;WorkApp, &amp;WorkBook;</p> <p>&amp;WorkApp = CreateObject ("COM", "Excel.Application");<br /> &amp;WorkBook = ObjectGetProperty(&amp;WorkApp, "Workbooks");</p> <p>etc<br /> The message returned for the ObjectGetProperty statement says "Invalid parameter: CreateObject Excel.Application invalid class string for function ObjectGetProperty. The specified parameter is not correct for the function. It may be the wrong type of parameter (string, number, record, field etc) or an invalid value in this context.</p> <p>Can anyone 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-172406/instantiating-an-excel-object-from-peoplesoft-page">Instantiating an Excel Object from Peoplesoft page</a>
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://www.peoplesoftwiki.com/forum/t-172249#post-546386</guid>
				<title>Message on Portal</title>
				<link>http://www.peoplesoftwiki.com/forum/t-172249/message-on-portal#post-546386</link>
				<description></description>
				<pubDate>Tue, 28 Jul 2009 10:37:36 +0000</pubDate>
				<wikidot:authorName>Dhiraj Soni</wikidot:authorName>								<content:encoded>
					<![CDATA[
						 <p>Hi,</p> <p>I have a requirement that the moment a person logs on to the Peoplesoft portal He/She Should get a Message depending on the Data Present in the Application Table even a MessageBox would do</p> <p>I think using iScript in the Sigon Peopleocde this could be done but not sure about any other possible solution.</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-172249/message-on-portal">Message on Portal</a>
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://www.peoplesoftwiki.com/forum/t-168385#post-531391</guid>
				<title>Expense Report  error</title>
				<link>http://www.peoplesoftwiki.com/forum/t-168385/expense-report-error#post-531391</link>
				<description></description>
				<pubDate>Sat, 11 Jul 2009 16:52:16 +0000</pubDate>
				<wikidot:authorName>Rahul</wikidot:authorName>								<content:encoded>
					<![CDATA[
						 <p>FYI -<br /> An Expense Report (meant for claiming expenses) is created by an Employee through 'Employee Self-service' option under the main menu, while a manager may approve the same report by navigating to 'Travel and Expenses'. An expense report may have multiple expense lines corresponding to each expense type incurred.<br /> Per-diem overage is the scenario when the daily expenses claimed for a particular location exceed the allowed limit for that location. At submission, in case of overage, a delivered error throws up<br /> asking the user to enter a description in the location comment field on the expense line and then submit the report.<br /> 'My Wallet' (delivered functionality) is a place to store the favorite or frequent expense transactions which may be imported into an expense report while claiming expenses.<br /> Question:<br /> When the user submits the expense report with expense type lodging per diem or meals per diems, PeopleSoft is NOT calculating the PerDiem Overage when populated from My Wallet. However, when the manager opens the expense report for approval, the PerDiem Overage is calculated and they can?t approve the report until they add a description in the location amount comment field.</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-168385/expense-report-error">Expense Report error</a>
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://www.peoplesoftwiki.com/forum/t-167972#post-530203</guid>
				<title>Re: Script to Delete a Country Code</title>
				<link>http://www.peoplesoftwiki.com/forum/t-167972/script-to-delete-a-country-code#post-530203</link>
				<description></description>
				<pubDate>Fri, 10 Jul 2009 02:47:22 +0000</pubDate>
				<wikidot:authorName>Praj</wikidot:authorName>				<wikidot:authorUserId>52320</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>Hi,</p> <p>One of the best ways I have found for writing such a script is to use the following query to identify the tables in the component and then to go through and remove the rows from the relevant tables:</p> <div class="code"> <div class="hl-main"> <pre> <span class="hl-reserved">select</span><span class="hl-code"> </span><span class="hl-reserved">distinct</span><span class="hl-code"> </span><span class="hl-identifier">P</span><span class="hl-code">.</span><span class="hl-identifier">OCCURSLEVEL</span><span class="hl-code">, </span><span class="hl-identifier">R</span><span class="hl-code">.</span><span class="hl-identifier">RECNAME</span><span class="hl-code"> </span><span class="hl-reserved">from</span><span class="hl-code"> </span><span class="hl-identifier">PSPNLGROUP</span><span class="hl-code"> </span><span class="hl-var">C</span><span class="hl-code"> </span><span class="hl-reserved">inner</span><span class="hl-code"> </span><span class="hl-reserved">join</span><span class="hl-code"> </span><span class="hl-identifier">PSPNLFIELD</span><span class="hl-code"> </span><span class="hl-identifier">P</span><span class="hl-code"> </span><span class="hl-reserved">on</span><span class="hl-code"> </span><span class="hl-var">C</span><span class="hl-code">.</span><span class="hl-identifier">PNLNAME</span><span class="hl-code"> = </span><span class="hl-identifier">P</span><span class="hl-code">.</span><span class="hl-identifier">PNLNAME</span><span class="hl-code"> </span><span class="hl-reserved">inner</span><span class="hl-code"> </span><span class="hl-reserved">join</span><span class="hl-code"> </span><span class="hl-identifier">PSRECDEFN</span><span class="hl-code"> </span><span class="hl-identifier">R</span><span class="hl-code"> </span><span class="hl-reserved">on</span><span class="hl-code"> </span><span class="hl-identifier">R</span><span class="hl-code">.</span><span class="hl-identifier">RECNAME</span><span class="hl-code"> = </span><span class="hl-identifier">P</span><span class="hl-code">.</span><span class="hl-identifier">RECNAME</span><span class="hl-code"> </span><span class="hl-reserved">where</span><span class="hl-code"> </span><span class="hl-var">C</span><span class="hl-code">.</span><span class="hl-identifier">PNLGRPNAME</span><span class="hl-code"> = </span><span class="hl-quotes">'</span><span class="hl-string">COUNTRY_TABLE</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">R</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">order</span><span class="hl-code"> </span><span class="hl-reserved">by</span><span class="hl-code"> </span><span class="hl-identifier">P</span><span class="hl-code">.</span><span class="hl-identifier">OCCURSLEVEL</span><span class="hl-code">, </span><span class="hl-identifier">R</span><span class="hl-code">.</span><span class="hl-identifier">RECNAME</span><span class="hl-code"> </span><span class="hl-reserved">asc</span><span class="hl-code">;</span> </pre></div> </div> <p>Yes, this is a manual process and isn't always 100% correct, but at least you get an idea of which tables are involved and minimise the chances of creating a <a href="http://www.peoplesoftwiki.com/no-matching-buffer-errors">no matching buffer error</a>.</p> <p>Note that I assume the component for country table is <tt>COUNTRY_TABLE</tt> and that <tt>RECTYPE = 0</tt> means only return tables (not views, dynamic views, derived records etc).</p> <p>This will only remove the set up data. Not sure if you need to do a global search for tables with the field <tt>COUNTRY</tt> that have already used the incorrect country code?</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-167972/script-to-delete-a-country-code">Script to Delete a Country Code</a>
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://www.peoplesoftwiki.com/forum/t-167972#post-529596</guid>
				<title>Script to Delete a Country Code</title>
				<link>http://www.peoplesoftwiki.com/forum/t-167972/script-to-delete-a-country-code#post-529596</link>
				<description></description>
				<pubDate>Thu, 09 Jul 2009 14:18:34 +0000</pubDate>
				<wikidot:authorName>Duane</wikidot:authorName>								<content:encoded>
					<![CDATA[
						 <p>A user has created a country code in error and wants to delete it. Does anyone have a suggestion on a script for deleting it?</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-167972/script-to-delete-a-country-code">Script to Delete a Country Code</a>
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://www.peoplesoftwiki.com/forum/t-167656#post-528297</guid>
				<title>Opening CSV File gives &quot;SLYK&quot; error</title>
				<link>http://www.peoplesoftwiki.com/forum/t-167656/opening-csv-file-gives-slyk-error#post-528297</link>
				<description></description>
				<pubDate>Wed, 08 Jul 2009 01:49:44 +0000</pubDate>
				<wikidot:authorName>Praj</wikidot:authorName>				<wikidot:authorUserId>52320</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>A CSV file created by an SQR using the information in <a href="http://www.peoplesoftwiki.com/generating-a-csv-file-from-sqr">generating a CSV file form SQR</a> was giving me the following error:</p> <div class="code"> <pre> <code>SYLK: File format is not valid</code> </pre></div> <p>Turns out that this is a known issue with Excel as reported in this <a href="http://support.microsoft.com/kb/323626" >Microsoft KB article (323626)</a>.</p> <p>If the first two characters in your CSV file are a capital I followed by a capital D (<tt>ID</tt>) the error occurs. Change this and the error goes away. You can either change the name of the header field or use lowercase <tt>id</tt>.</p> <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-167656/opening-csv-file-gives-slyk-error">Opening CSV File gives &quot;SLYK&quot; error</a>
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://www.peoplesoftwiki.com/forum/t-167120#post-526121</guid>
				<title>Field does not display a zero (0) value</title>
				<link>http://www.peoplesoftwiki.com/forum/t-167120/field-does-not-display-a-zero-0-value#post-526121</link>
				<description></description>
				<pubDate>Sat, 04 Jul 2009 23:49:56 +0000</pubDate>
				<wikidot:authorName>Praj</wikidot:authorName>				<wikidot:authorUserId>52320</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>If you have a field that has a zero value, but doesn't show anything on the page, make sure you have the <em>Display Zero Value</em> option selected in the page field properties:</p> <table class="wiki-content-table"> <tr> <td><img src="http://peoplesoft.wikidot.com/local--files/images/page-field-display-zero.png" alt="page-field-display-zero.png" class="image" /></td> </tr> </table> <p>An obvious one, but easy to forget.</p> <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-167120/field-does-not-display-a-zero-0-value">Field does not display a zero (0) value</a>
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://www.peoplesoftwiki.com/forum/t-164735#post-516772</guid>
				<title>Auto Find Text in App Designer</title>
				<link>http://www.peoplesoftwiki.com/forum/t-164735/auto-find-highlighted-text-in-app-designer#post-516772</link>
				<description></description>
				<pubDate>Tue, 23 Jun 2009 22:33:47 +0000</pubDate>
				<wikidot:authorName>Praj</wikidot:authorName>				<wikidot:authorUserId>52320</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>If you put your cursor in the text you want to perform a find on and press CTRL + F, Application designer will open the find dialog box with the text field already populated, ready for you to perform the search. A nice little time saver. This works in both the PeopleCode and SQL editors.</p> <table class="wiki-content-table"> <tr> <td><img src="http://peoplesoft.wikidot.com/local--files/images/auto-find-text.png" alt="auto-find-text.png" class="image" /></td> </tr> </table> <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-164735/auto-find-highlighted-text-in-app-designer">Auto Find Highlighted Text in App Designer</a>
				 	]]>
				</content:encoded>							</item>
				</channel>
</rss>