File tree Expand file tree Collapse file tree
OracleIdentityGovernance/samples/scripts/PEOPLESOFT/1.0 Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -30,14 +30,22 @@ full_part_time,
3030action,
3131action_reason,
3232locationCode,
33- locationDetails,
33+ postalAddress,
34+ street,
35+ address2,
36+ city,
37+ county,
38+ state,
39+ postalCode,
3440job_type,
3541setid_jobcode,
3642job_title,
3743end_date,
3844termination_dt,
3945reports_to,
40- dept_code_hierarchy,
46+ manager_department_codes,
47+ manager_department_levels,
48+ manager_department_titles,
4149Description,
4250lastupddttm ) AS
4351SELECT
@@ -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
7591FROM
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 ;
Original file line number Diff line number Diff line change @@ -24,7 +24,12 @@ address3,
2424city,
2525state,
2626postal,
27- lastupddttm) AS
27+ lastupddttm,
28+ description,
29+ employeeType,
30+ employmentStatus,
31+ hrStatus
32+ ) AS
2833SELECT
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
4655FROM
4756 ps_personal_data pd
4857 LEFT JOIN ps_email_addresses pe ON pd .emplid = pe .emplid and pe .pref_email_flag = ' Y' ;
You can’t perform that action at this time.
0 commit comments