peoplesoft

SQL query for extracting year from a date

柔情痞子 提交于 2020-06-24 07:40:22
问题 I am trying to create a query that gets only the year from selected dates. I.e. select ASOFDATE from PSASOFDATE; returns 11/15/2012 , but I want only 2012 . How can I get only the year? I know the YEAR function can be used, but I'm not sure how. 回答1: SELECT YEAR(ASOFDATE) FROM PASOFDATE Editted: In anycase if your date is a String, let's convert it into a proper date format. And select the year out of it. SELECT YEAR(STR_TO_DATE(ASOFDATE, '%d-%b-%Y')) FROM PSASOFDATE Since you are trying Toad

PS Table that stores information about User Roles

南笙酒味 提交于 2020-01-15 12:09:51
问题 For history, I just recently wrote this question: This has led to a follow up question. In the User Profile, "Roles" Tab (which I'm assuming is a table somewhere), is there a table I can report on that will get me what was changed and possibly by which user account (and maybe even the IP address of the user account)? The path is: Main Menu->PeopleTools->Security->User Profiles (and then the 'Roles' Tab). Ultimately I need to figure out what change was made (when a role name was added) and by

PeopleSoft Query - finding people without leave type

夙愿已清 提交于 2019-12-24 18:50:18
问题 I'm working with PeopleSoft's query manager and I'm having trouble creating a report that will find all active employees who do not have a certain leave type. I have the two tables (Employees - Non terminated Employees and Leave_Accrual-EE). They are left outer joined. The field in question is PLAN_TYPE. Now, I've tried creating a filter to pull in all employees who do not have plan type 54. The criteria is B.PLAN_TYPE not equal to 54, but that still brings up everyone, it just doesn't bring

Standard web services API available in PeopleSoft?

折月煮酒 提交于 2019-12-21 07:55:43
问题 I'm investigating integrating a 3rd party web application with PeopleSoft via web services. I'm not that familiar with PeopleSoft. After some initial investigation, it appears that in order to expose any PeopleSoft functionality as web services, you have to do some considerable configuration in the Integration Broker component of the PeopleTools module. It seems that you can either define internal PeopleSoft services with "service operations" and related "handlers" or you can create a

Tracing IP addresses in PeopleSoft

一曲冷凌霜 提交于 2019-12-13 18:00:23
问题 We have a generic username in PeopleSoft and I was wondering if it was possible to track who was using it through the IP address. Basically I would like to know the IP address of the person who used the generic username to make a few changes in the system. 回答1: PeopleSoft records this information in the PSACCESSLOG table with the fields OPRID and LOGIPADDRESS. If your users are in the same network as the PeopelSoft system, you'll see the IP-username combination and you'll have what you want.

How to find the child project of a parent project which is passed in the 'WHERE' clause and also, to find the duplicate objects

你。 提交于 2019-12-13 04:56:44
问题 I am finding this a bit weird, though I do know SQL, but i have never written such queries in my career. My requirement is like this: I have a table named PSPROJECTITEM, which have these columns: PROJECTNAME OBJECTTYPE OBJECTID1 OBJECTVALUE1 OBJECTID2 OBJECTVALUE2 OBJECTID3 OBJECTVALUE3 OBJECTID4 OBJECTVALUE4 I need to write a query which has to fetch the child rows or the child PROJECTNAME of a PARENT PROJECTNAME, which i will pass in the query. SELECT PROJECTNAME AS PARENTPROJECT, COUNT(*)

How to disable the delivered Hyperlink in PeopleSoft org chart page?

删除回忆录丶 提交于 2019-12-11 15:14:24
问题 Can anybody suggest a method to disable the hyperlinks associated with the names on the PeopleSoft delivered org chart page? Peoplesoft HR module, Company Directory Org Chart page ( HRCD_ORG_CHART_FL ) 来源: https://stackoverflow.com/questions/51974284/how-to-disable-the-delivered-hyperlink-in-peoplesoft-org-chart-page

PeopleSoft Subquery not picking up correct leave plans

梦想与她 提交于 2019-12-11 14:39:40
问题 I'm attempting to build a report in PeopleSoft's Query Manager that has future and current employees on it. I want to be able to find the employees who do not have leave plans, specifically 50 and 52. I thought I was on the right track with the following BUT after auditing my report it is bringing in people who HAVE 50 and 52. I think it has to do with the subquery (SQL below). Here are some pictures of query manager: SELECT DISTINCT B.COMPANY, A.EMPLID, A.NAME, B.FULL_PART_TIME, B.REG_TEMP,

More efficient way to find employees with coverage between two dates

不问归期 提交于 2019-12-10 16:52:24
问题 I have a requirement to retrieve a list of employees, and for each employee a list of months they were actively on benefits coverage in a given year. There is a table with job data, and a table with benefits information. There is also a delivered dates table that lists out every date from 2007-2018 and for each date it shows the day of month, month of year, and calendar year. The way I have written the query now is to say: find all the dates on the dates table that are 1) between 01/01 and 12

Peoplesoft screens in an iFrame

那年仲夏 提交于 2019-12-08 06:26:23
问题 Has anyone successfully integrated Peoplesoft screens or navigation via an iFrame in a third party app like Liferay or uPortal? We are trying to integrate Liferay Portal as a web front end and consume some of the PeopleSoft screens in an iFrame portlet. Both the Liferay Portal and Peoplsoft systems are on different top level domains. We are using Oracle Single Sign On on bot the applications. We have a couple of issues with this. The screens display in the iFrame - however, the JavaScript on