Skip to main content

Do you know how to fetch Oracle Cloud HCM Department changes using SQL

In this session, we are going to see how to fetch Oracle Cloud HCM Department changes using SQL

SQL Text:
with people_tbl_vw as ( select papf.person_id ,papf.person_number ,ppnf.display_name from per_all_people_f papf ,per_person_names_f ppnf where 1 = 1 and ppnf.person_id = papf.person_id and ppnf.name_type = 'GLOBAL' and sysdate between papf.effective_start_date and papf.effective_end_date and sysdate between ppnf.effective_start_date and ppnf.effective_end_date and (coalesce(null,:p_pers_num) is null or papf.person_id in (:p_pers_num)) ) ,dep_chng_tbl_vw as ( select papf.person_number ,papf.display_name ,bus.name business_unit ,paam.effective_start_date ,to_char(paam.effective_start_date,'dd/Mon/yyyy','nls_date_language=english') effective_date ,dep.name new_value ,dep_prev.name old_value from people_tbl_vw papf ,per_all_assignments_m paam ,per_all_assignments_m paam_prev ,hr_organization_v dep ,hr_organization_v dep_prev ,hr_organization_v bus where 1 = 1 and paam.person_id = papf.person_id and paam.assignment_type = 'E' and paam.effective_latest_change = 'Y' and paam_prev.assignment_type = 'E' and paam_prev.effective_latest_change = 'Y' and paam_prev.assignment_id = paam.assignment_id and paam_prev.effective_end_date + 1 = paam.effective_start_date and paam_prev.organization_id <> paam.organization_id and dep_prev.name <> dep.name and dep.organization_id = paam.organization_id and dep.classification_code = 'DEPARTMENT' and dep.status = 'A' and dep_prev.organization_id = paam_prev.organization_id and dep_prev.classification_code = 'DEPARTMENT' and dep_prev.status = 'A' and bus.organization_id = paam.business_unit_id and bus.classification_code = 'FUN_BUSINESS_UNIT' and bus.status = 'A' and paam.effective_start_date between dep.effective_start_date and dep.effective_end_date and paam_prev.effective_start_date between dep_prev.effective_start_date and dep_prev.effective_end_date and (coalesce(null,:p_bu) is null or paam.business_unit_id in (:p_bu)) ) select * from dep_chng_tbl_vw where 1 = 1 and effective_start_date between :p_st_dt and :p_ed_dt order by person_number,to_number(to_char(effective_start_date,'yyyymmdd'))

Comments

Popular posts from this blog

Oracle Cloud HCM - Custom SQL

WITH SAWITH0 AS (   select          /*+ inline */     T5889157.C442017697 as c3,     T5889157.C435128591 as c4,     T5889157.C262853249 as c5,     T5889157.C475696698 as c6,     T5889157.C171798894 as c7,     T5889157.C350832392 as c8,     T5889157.C180745024 as c9,     T5889157.C171898426 as c10,     T5889157.C43504333 as c11,     T5889157.C3583004 as c12,     T5889157.C458818009 as c13   from     (       SELECT         V184978139.USER_CATEGORY_NAME AS C442017697,         V148402464.DIMENSION_NAME AS C435128591,         V187766949.BALANCE_NAME AS C262853249,         V294690684.NAME AS C475696698,  ...

Do you know how to fetch Oracle Cloud Time Card Status using SQL

In this session we are going to see how to fetch Oracle Cloud Time Card Status using SQL   select papf . person_number , ppnf . full_name , per_extract_utility . get_decoded_lookup ( 'HWM_UI_STATUS' , hts . status_value ) status , to_char ( thdr . start_time_trunc , 'fmmm/dd/yyyy' ) || ' - ' || to_char ( thdr . stop_time_trunc , 'fmmm/dd/yyyy' ) week ,( select sum ( trec . measure ) from hwm_tm_rec trec where 1 = 1 and trec . delete_flag is null and trec . latest_version = 'Y' and (( trec . orig_tm_rec_id is null ) or ( trec . orig_tm_rec_id = trec . tm_rec_id )) and (( trec . orig_tm_rec_version is null ) or ( trec . orig_tm_rec_version = trec . tm_rec_version )) and trec . resource_id = papf . person_id and trunc ( trec . actual_date ) between thdr . start_time_trunc...

Do you know how to fetch Notes from the Oracle Cloud WFC Compensation Worksheet?

In this session we are going to see how to fetch Notes from the Oracle Cloud WFC Compensation Worksheet Note: The "Notes" from Compensation Worksheet is stored as a CLOB and you need to use appropriate Replace statements based on your requirements. Also use htm2fo RTF function to convert html tags to text. (<?html2fo:NOTE_TXT?>) SQL Text: with people_tbl_vw as ( select person_id , person_number from per_all_people_f papf where 1 = 1 and sysdate between papf . effective_start_date and papf . effective_end_date and ( coalesce ( null ,: p_pers_num ) is null or papf . person_id in (: p_pers_num )) ) , cmp_plan_prd_tbl_vw as ( select cpp . plan_id , cpp . period_id from cmp_plan_periods cpp where 1 = 1 and ( coalesce ( null ,: p_plan ) is null or cpp . period_id in (: p_plan )) ) , cmp_cwb_person_info_tbl_vw as ( select ccpi . person_number , cpv . plan_name , cpp . period_name ...