Skip to content

Updated PSFT views #2964

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 25 commits into from
Apr 23, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
25 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
e1bf4fc
Merge branch 'oracle:main' into main
tanmaygarg-oracle Apr 22, 2025
907affe
Added fix to remove the child processed before terminating the parent…
tanmaygarg-oracle Apr 22, 2025
482748f
Added fix to remove the child processed before terminating the parent…
tanmaygarg-oracle Apr 22, 2025
d7b7cbb
Merge branch 'oracle:main' into main
tanmaygarg-oracle Apr 23, 2025
1d8d9dd
updated PSFT views
tanmaygarg-oracle Apr 23, 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
Expand Up @@ -30,14 +30,22 @@ full_part_time,
action,
action_reason,
locationCode,
locationDetails,
postalAddress,
street,
address2,
city,
county,
state,
postalCode,
job_type,
setid_jobcode,
job_title,
end_date,
termination_dt,
reports_to,
dept_code_hierarchy,
manager_department_codes,
manager_department_levels,
manager_department_titles,
Description,
lastupddttm ) AS
SELECT
Expand All @@ -62,7 +70,13 @@ SELECT
pj.action,
pj.action_reason,
pj.location,
null,
pl.descr,
pl.address1,
pl.address2,
pl.city,
pl.county,
pl.state,
pl.postal,
pj.JOB_INDICATOR,
setid_jobcode,
pjc.descr,
Expand All @@ -71,7 +85,10 @@ SELECT
pj.reports_to,
null,
null,
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;
left join PS_JOBCODE_TBL pjc on pj.SETID_JOBCODE=pjc.setid and pj.jobcode = pjc.jobcode and pj.effdt = pjc.effdt
left join PS_LOCATION_TBL pl on pj.location=pl.location;
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,12 @@ address3,
city,
state,
postal,
lastupddttm) AS
lastupddttm,
description,
employeeType,
employmentStatus,
hrStatus
) AS
SELECT
pd.emplid,
pd.first_name,
Expand All @@ -42,7 +47,11 @@ SELECT
pd.city,
pd.state,
pd.postal,
pd.lastupddttm
pd.lastupddttm,
null,
null,
null,
null
FROM
ps_personal_data pd
LEFT JOIN ps_email_addresses pe ON pd.emplid = pe.emplid and pe.pref_email_flag='Y';