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

	<channel>
		<title>Help (new posts)</title>
		<link>http://www.peoplesoftwiki.com/forum/c-41750/help</link>
		<description>Posts in the forum category &quot;Help&quot; - Ask for Help</description>
				<copyright></copyright>
		<lastBuildDate></lastBuildDate>
		
					<item>
				<guid>http://www.peoplesoftwiki.com/forum/t-201897#post-648572</guid>
				<title>Can you select another query in a query?: 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> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://www.peoplesoftwiki.com/forum/t-201897#post-648352</guid>
				<title>Can you select another query in a query?: 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> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://www.peoplesoftwiki.com/forum/t-201391#post-647857</guid>
				<title>IDs having more than 1 ORG: 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> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://www.peoplesoftwiki.com/forum/t-201391#post-646729</guid>
				<title>IDs having more than 1 ORG: 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> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://www.peoplesoftwiki.com/forum/t-198367#post-640316</guid>
				<title>Cobol directory: 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> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://www.peoplesoftwiki.com/forum/t-194211#post-640285</guid>
				<title>PeopleSoft and Active Directory: 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> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://www.peoplesoftwiki.com/forum/t-198367#post-638593</guid>
				<title>Cobol directory: 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> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://www.peoplesoftwiki.com/forum/t-198643#post-638497</guid>
				<title>Troubleshooting Process Scheduler Recurrences: 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> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://www.peoplesoftwiki.com/forum/t-198643#post-638437</guid>
				<title>Troubleshooting Process Scheduler Recurrences: 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> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://www.peoplesoftwiki.com/forum/t-198367#post-637512</guid>
				<title>Cobol directory: 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> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://www.peoplesoftwiki.com/forum/t-194211#post-625746</guid>
				<title>PeopleSoft and Active Directory: 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> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://www.peoplesoftwiki.com/forum/t-191710#post-617981</guid>
				<title>How to Communicate with Peoplesoft Application: 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> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://www.peoplesoftwiki.com/forum/t-191710#post-617386</guid>
				<title>How to Communicate with Peoplesoft Application: 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> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://www.peoplesoftwiki.com/forum/t-73750#post-615565</guid>
				<title>Overriding a Component&#039;s Search Record for a Component Interface: 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> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://www.peoplesoftwiki.com/forum/t-190404#post-615143</guid>
				<title>sqr reports: 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> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://www.peoplesoftwiki.com/forum/t-190404#post-612886</guid>
				<title>sqr reports: 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> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://www.peoplesoftwiki.com/forum/t-188671#post-609054</guid>
				<title>Component Interface PeopleCode: 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> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://www.peoplesoftwiki.com/forum/t-188671#post-608738</guid>
				<title>Component Interface PeopleCode: 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> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://www.peoplesoftwiki.com/forum/t-187088#post-607676</guid>
				<title>Web Service Help: 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> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://www.peoplesoftwiki.com/forum/t-187088#post-607665</guid>
				<title>Web Service Help: 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> 
				 	]]>
				</content:encoded>							</item>
				</channel>
</rss>