Skip to content

Commit 73fc6a2

Browse files
Updated PSFT views (#2964)
* fixed permission matching logic * fixed permission matching logic * fixed permission matching logic * fixed permission matching logic * updated PAR URL * Added to support handling of stuck podman container * fixed lint * Update agentAutoUpdate.sh * Update agentAutoUpdate.sh * Update agentAutoUpdate.sh * Fixed handling of force removal of stuck podman containers in stopping state * Fixed handling of force removal of stuck podman containers in stopping state * Added Peoplesoft views definitions * Added Peoplesoft views definitions, updated readme and created versions * Added Peoplesoft views definitions, updated readme and created versions * Added fix to remove the child processed before terminating the parent process * Added fix to remove the child processed before terminating the parent process * updated PSFT views
1 parent 4d3c42e commit 73fc6a2

File tree

2 files changed

+32
-6
lines changed

2 files changed

+32
-6
lines changed

OracleIdentityGovernance/samples/scripts/PEOPLESOFT/1.0/Job_data_view.sql

Lines changed: 21 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -30,14 +30,22 @@ full_part_time,
3030
action,
3131
action_reason,
3232
locationCode,
33-
locationDetails,
33+
postalAddress,
34+
street,
35+
address2,
36+
city,
37+
county,
38+
state,
39+
postalCode,
3440
job_type,
3541
setid_jobcode,
3642
job_title,
3743
end_date,
3844
termination_dt,
3945
reports_to,
40-
dept_code_hierarchy,
46+
manager_department_codes,
47+
manager_department_levels,
48+
manager_department_titles,
4149
Description,
4250
lastupddttm ) AS
4351
SELECT
@@ -62,7 +70,13 @@ SELECT
6270
pj.action,
6371
pj.action_reason,
6472
pj.location,
65-
null,
73+
pl.descr,
74+
pl.address1,
75+
pl.address2,
76+
pl.city,
77+
pl.county,
78+
pl.state,
79+
pl.postal,
6680
pj.JOB_INDICATOR,
6781
setid_jobcode,
6882
pjc.descr,
@@ -71,7 +85,10 @@ SELECT
7185
pj.reports_to,
7286
null,
7387
null,
88+
null,
89+
null,
7490
pj.lastupddttm
7591
FROM
7692
ps_job pj
77-
left join PS_JOBCODE_TBL pjc on pj.SETID_JOBCODE=pjc.setid and pj.jobcode = pjc.jobcode and pj.effdt = pjc.effdt;
93+
left join PS_JOBCODE_TBL pjc on pj.SETID_JOBCODE=pjc.setid and pj.jobcode = pjc.jobcode and pj.effdt = pjc.effdt
94+
left join PS_LOCATION_TBL pl on pj.location=pl.location;

OracleIdentityGovernance/samples/scripts/PEOPLESOFT/1.0/Personal_data_view.sql

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,12 @@ address3,
2424
city,
2525
state,
2626
postal,
27-
lastupddttm) AS
27+
lastupddttm,
28+
description,
29+
employeeType,
30+
employmentStatus,
31+
hrStatus
32+
) AS
2833
SELECT
2934
pd.emplid,
3035
pd.first_name,
@@ -42,7 +47,11 @@ SELECT
4247
pd.city,
4348
pd.state,
4449
pd.postal,
45-
pd.lastupddttm
50+
pd.lastupddttm,
51+
null,
52+
null,
53+
null,
54+
null
4655
FROM
4756
ps_personal_data pd
4857
LEFT JOIN ps_email_addresses pe ON pd.emplid = pe.emplid and pe.pref_email_flag='Y';

0 commit comments

Comments
 (0)