Skip to content

Added Peoplesoft views definitions #2950

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 20 commits into from
Mar 25, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
20 commits
Select commit Hold shift + click to select a range
eb9f265
fixed permission matching logic
tanmaygarg-oracle Aug 6, 2024
b133fae
fixed permission matching logic
tanmaygarg-oracle Aug 6, 2024
0923673
fixed permission matching logic
tanmaygarg-oracle Aug 6, 2024
f10d008
fixed permission matching logic
tanmaygarg-oracle Aug 6, 2024
5877e33
updated PAR URL
tanmaygarg-oracle Aug 20, 2024
b003232
Merge branch 'oracle:main' into main
tanmaygarg-oracle Aug 20, 2024
e9259a9
Merge branch 'oracle:main' into main
tanmaygarg-oracle Dec 12, 2024
7c1d714
Added to support handling of stuck podman container
tanmaygarg-oracle Dec 12, 2024
8408297
fixed lint
tanmaygarg-oracle Dec 12, 2024
3f2050c
Update agentAutoUpdate.sh
tanmaygarg-oracle Feb 6, 2025
b5a920d
Merge branch 'oracle:main' into main
tanmaygarg-oracle Feb 6, 2025
74ecf33
Update agentAutoUpdate.sh
tanmaygarg-oracle Feb 6, 2025
15b56ca
Update agentAutoUpdate.sh
tanmaygarg-oracle Feb 6, 2025
efd87b4
Merge branch 'oracle:main' into main
tanmaygarg-oracle Feb 25, 2025
2dabbe0
Fixed handling of force removal of stuck podman containers in stoppin…
tanmaygarg-oracle Feb 25, 2025
d9140ad
Fixed handling of force removal of stuck podman containers in stoppin…
tanmaygarg-oracle Feb 25, 2025
2f59450
Merge branch 'oracle:main' into main
tanmaygarg-oracle Mar 24, 2025
99216da
Added Peoplesoft views definitions
tanmaygarg-oracle Mar 24, 2025
c919d27
Added Peoplesoft views definitions, updated readme and created versions
tanmaygarg-oracle Mar 25, 2025
3ab23f4
Added Peoplesoft views definitions, updated readme and created versions
tanmaygarg-oracle Mar 25, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,77 @@
-- Copyright (c) 2025 Oracle and/or its affiliates.
--
-- Licensed under the Universal Permissive License v 1.0 as shown at https://oss.oracle.com/licenses/upl.
--
-- Author: OAG Development
--
-- Description: Script file to create JOB_DATA_VIEW in the AG Service Account User Schema of the PSFT DB, required for OAG integration
--
-- DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.

CREATE OR REPLACE VIEW job_Data_View (
empl_id,
empl_rcd,
eff_dt,
EFF_SEQ,
business_unit,
empl_type,
empl_class,
officer_Code,
company,
per_org,
POSITION_NBR,
poi_type,
deptid,
jobcode,
supervisor_id,
hr_status,
empl_status,
full_part_time,
action,
action_reason,
locationCode,
locationDetails,
job_type,
setid_jobcode,
job_title,
end_date,
termination_dt,
reports_to,
dept_code_hierarchy,
Description,
lastupddttm ) AS
SELECT
pj.emplid,
pj.empl_rcd,
pj.effdt,
pj.EFFSEQ,
pj.business_unit,
pj.empl_type,
pj.empl_class,
pj.officer_cd,
pj.company,
pj.per_org,
pj.POSITION_NBR,
pj.poi_type,
pj.deptid,
pj.jobcode,
pj.supervisor_id,
pj.hr_status,
pj.empl_status,
pj.full_part_time,
pj.action,
pj.action_reason,
pj.location,
null,
pj.JOB_INDICATOR,
setid_jobcode,
pjc.descr,
To_Date(NULL, 'YYYYMMDD'),
pj.termination_dt,
pj.reports_to,
null,
null,
pj.lastupddttm
FROM
ps_job pj
left join PS_JOBCODE_TBL pjc on pj.SETID_JOBCODE=pjc.setid and pj.jobcode = pjc.jobcode and pj.effdt = pjc.effdt;
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
-- Copyright (c) 2025 Oracle and/or its affiliates.
--
-- Licensed under the Universal Permissive License v 1.0 as shown at https://oss.oracle.com/licenses/upl.
--
-- Author: OAG Development
--
-- Description: Script file to create PERSONAL_DATA_VIEW in the AG Service Account User Schema of the PSFT DB, required for OAG integration
--
-- DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.

CREATE OR REPLACE VIEW personal_data_view ( empl_id,
first_name,
last_name,
middle_name,
pref_first_name,
name_title,
phone,
email,
organization_name,
country,
address1,
address2,
address3,
city,
state,
postal,
lastupddttm) AS
SELECT
pd.emplid,
pd.first_name,
pd.last_name,
pd.middle_name,
pd.pref_first_name,
pd.name_title,
pd.phone,
pe.email_addr,
'',
pd.country,
pd.address1,
pd.address2,
pd.address3,
pd.city,
pd.state,
pd.postal,
pd.lastupddttm
FROM
ps_personal_data pd
LEFT JOIN ps_email_addresses pe ON pd.emplid = pe.emplid and pe.pref_email_flag='Y';
6 changes: 5 additions & 1 deletion OracleIdentityGovernance/samples/scripts/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,8 @@ Directory Oracle_EBS_HRMS contains script files for creating a service account i

Directory Oracle_EBS_UM contains script files for creating a service account in EBS target For UM

Copyright (c) 2019, 2023 Oracle and/or its affiliates.
## PEOPLESOFT

Directory PEOPLESOFT contains views definitions for peoplesoft target

Copyright (c) 2025 Oracle and/or its affiliates.