SlideShare a Scribd company logo
Most Frequently Used SQLs for List of Values (LOVs) in BI Report
Beloware the listof SQLs that are mostfrequentlyusedtogetthe listof valuesforbusinessobjects.
Legislative Data Group:
Selectname fromper_legislative_data_groups_vl
SecuredPersonsList:
SELECT DISTINCTPERSON_NUMBERFROM PER_PERSON_SECURED_LIST_V
SecuredDepartments List:
SELECT DISTINCTSUBSTR(DEPT.NAME,1,INSTR(DEPT.NAME,'-',1)-1) DEPCODEFROM
PER_DEPARTMENT_SECURED_LIST_V SEC_DEPT,
PER_DEPARTMENTS DEPT
WHERE DEPT.ORGANIZATION_ID=SEC_DEPT.ORGANIZATION_ID
Payroll Name:
selectdistinctpayroll_name
frompay_all_payrolls_f
where TRUNC(SYSDATE) BETWEEN effective_start_date ANDeffective_end_date
Country Codes:
selectcountry_code,GEOGRAPHY_ELEMENT1 fromHZ_GEOGRAPHIES where GEOGRAPHY_TYPE =
'COUNTRY'
Balance Category:
selectdistinctUSER_CATEGORY_NAMEfromPAY_BALANCE_CATEGORIES_VL
Pay Action Status Lookups:
SELECT meaning FROMhcm_lookupsWHERE lookup_type ='PAY_ACTION_STATUS'
Payroll FlowName:
SELECT pfi.instance_name FROMpay_flow_instancespfi
ORDER BY creation_date desc
ElementClassification:
SELECT DISTINCTc.classification_nameClassfication
FROMpay_ele_classifications_vl c, per_legislative_data_groups_vl l
WHERE c.legislation_code =l.legislation_code
ANDl.name IN (:P_LDG)
ORDER BY c.classification_name
Pay Periods:
selectptp.period_name
frompay_time_periodsptp,pay_all_payrolls_f pp
where pp.payroll_id=ptp.payroll_idandpp.payroll_name =:OOS_PAYROLL
and sysdate betweenpp.effective_start_date andpp.effective_end_date
and ptp.period_category='E'
and ( substr(ptp.period_name,instr(ptp.period_name,'', 1)+1, 4) = to_char(sysdate,'YYYY') OR
substr(ptp.period_name,instr(ptp.period_name,'', 1)+1, 4) = to_char(sysdate,'YYYY') - 1 OR
substr(ptp.period_name,instr(ptp.period_name,'', 1)+1, 4) = to_char(sysdate,'YYYY') + 1)
orderby ptp.time_period_id
Legal Employers:
SELECT hauft.NAME
FROM HR_ORG_UNIT_CLASSIFICATIONS_Fhoucf,HR_ALL_ORGANIZATION_UNITS_Fhaouf,
HR_ORGANIZATION_UNITS_F_TLhauft
WHERE haouf.ORGANIZATION_ID=houcf.ORGANIZATION_ID
ANDhaouf.ORGANIZATION_ID=hauft.ORGANIZATION_ID
ANDhaouf.EFFECTIVE_START_DATEBETWEEN houcf.EFFECTIVE_START_DATEAND
houcf.EFFECTIVE_END_DATE
ANDhauft.LANGUAGE= 'US'
ANDhauft.EFFECTIVE_START_DATE= haouf.EFFECTIVE_START_DATE
ANDhauft.EFFECTIVE_END_DATE= haouf.EFFECTIVE_END_DATE
ANDhoucf.CLASSIFICATION_CODE='HCM_LEMP'
AND SYSDATEBETWEEN hauft.effective_start_date ANDhauft.effective_end_date
Payroll Statutory Units (PSUs):
SELECT hauft.NAME
FROM HR_ORG_UNIT_CLASSIFICATIONS_Fhoucf,HR_ALL_ORGANIZATION_UNITS_Fhaouf,
HR_ORGANIZATION_UNITS_F_TLhauft
WHERE haouf.ORGANIZATION_ID=houcf.ORGANIZATION_ID
ANDhaouf.ORGANIZATION_ID=hauft.ORGANIZATION_ID
ANDhaouf.EFFECTIVE_START_DATEBETWEEN houcf.EFFECTIVE_START_DATEAND
houcf.EFFECTIVE_END_DATE
ANDhauft.LANGUAGE= 'US'
ANDhauft.EFFECTIVE_START_DATE= haouf.EFFECTIVE_START_DATE
ANDhauft.EFFECTIVE_END_DATE= haouf.EFFECTIVE_END_DATE
ANDhoucf.CLASSIFICATION_CODE='HCM_PSU'
AND SYSDATEBETWEEN hauft.effective_start_date ANDhauft.effective_end_date
Divisions:
SELECT hauft.NAME
FROM HR_ORG_UNIT_CLASSIFICATIONS_Fhoucf,HR_ALL_ORGANIZATION_UNITS_Fhaouf,
HR_ORGANIZATION_UNITS_F_TLhauft
WHERE haouf.ORGANIZATION_ID=houcf.ORGANIZATION_ID
ANDhaouf.ORGANIZATION_ID=hauft.ORGANIZATION_ID
ANDhaouf.EFFECTIVE_START_DATEBETWEEN houcf.EFFECTIVE_START_DATEAND
houcf.EFFECTIVE_END_DATE
ANDhauft.LANGUAGE= 'US'
ANDhauft.EFFECTIVE_START_DATE= haouf.EFFECTIVE_START_DATE
ANDhauft.EFFECTIVE_END_DATE= haouf.EFFECTIVE_END_DATE
ANDhoucf.CLASSIFICATION_CODE='HCM_DIVISION'
AND SYSDATEBETWEEN hauft.effective_start_date ANDhauft.effective_end_date
BusinessUnits:
SELECT hauft.NAME
FROM HR_ORG_UNIT_CLASSIFICATIONS_Fhoucf,
HR_ALL_ORGANIZATION_UNITS_Fhaouf,
HR_ORGANIZATION_UNITS_F_TLhauft
WHERE haouf.ORGANIZATION_ID=houcf.ORGANIZATION_ID
ANDhaouf.ORGANIZATION_ID=hauft.ORGANIZATION_ID
ANDhaouf.EFFECTIVE_START_DATEBETWEEN houcf.EFFECTIVE_START_DATE AND
houcf.EFFECTIVE_END_DATE
ANDhauft.LANGUAGE= 'US'
ANDhauft.EFFECTIVE_START_DATE= haouf.EFFECTIVE_START_DATE
ANDhauft.EFFECTIVE_END_DATE= haouf.EFFECTIVE_END_DATE
ANDhoucf.CLASSIFICATION_CODE='FUN_BUSINESS_UNIT'
AND SYSDATEBETWEEN hauft.effective_start_date ANDhauft.effective_end_date
Legal ReportingUnits(LRUs):
SELECT hauft.NAME
FROM HR_ORG_UNIT_CLASSIFICATIONS_Fhoucf,
HR_ALL_ORGANIZATION_UNITS_Fhaouf,
HR_ORGANIZATION_UNITS_F_TLhauft
WHERE haouf.ORGANIZATION_ID=houcf.ORGANIZATION_ID
ANDhaouf.ORGANIZATION_ID=hauft.ORGANIZATION_ID
ANDhaouf.EFFECTIVE_START_DATEBETWEEN houcf.EFFECTIVE_START_DATEAND
houcf.EFFECTIVE_END_DATE
ANDhauft.LANGUAGE= 'US'
ANDhauft.EFFECTIVE_START_DATE= haouf.EFFECTIVE_START_DATE
ANDhauft.EFFECTIVE_END_DATE= haouf.EFFECTIVE_END_DATE
ANDhoucf.CLASSIFICATION_CODE='HCM_LRU'
AND SYSDATEBETWEEN hauft.effective_start_date ANDhauft.effective_end_date
Tax ReportingUnits(TRUs):
SELECT hauft.NAME
FROM HR_ORG_UNIT_CLASSIFICATIONS_Fhoucf,
HR_ALL_ORGANIZATION_UNITS_Fhaouf,
HR_ORGANIZATION_UNITS_F_TLhauft
WHERE haouf.ORGANIZATION_ID=houcf.ORGANIZATION_ID
ANDhaouf.ORGANIZATION_ID=hauft.ORGANIZATION_ID
ANDhaouf.EFFECTIVE_START_DATEBETWEEN houcf.EFFECTIVE_START_DATEAND
houcf.EFFECTIVE_END_DATE
ANDhauft.LANGUAGE= 'US'
ANDhauft.EFFECTIVE_START_DATE= haouf.EFFECTIVE_START_DATE
ANDhauft.EFFECTIVE_END_DATE= haouf.EFFECTIVE_END_DATE
ANDhoucf.CLASSIFICATION_CODE='HCM_TRU'
AND SYSDATEBETWEEN hauft.effective_start_date ANDhauft.effective_end_date
Enterprise:
SELECT hauft.NAME
FROM HR_ORG_UNIT_CLASSIFICATIONS_Fhoucf,
HR_ALL_ORGANIZATION_UNITS_Fhaouf,
HR_ORGANIZATION_UNITS_F_TLhauft
WHERE haouf.ORGANIZATION_ID=houcf.ORGANIZATION_ID
ANDhaouf.ORGANIZATION_ID=hauft.ORGANIZATION_ID
ANDhaouf.EFFECTIVE_START_DATEBETWEEN houcf.EFFECTIVE_START_DATEAND
houcf.EFFECTIVE_END_DATE
ANDhauft.LANGUAGE= 'US'
ANDhauft.EFFECTIVE_START_DATE= haouf.EFFECTIVE_START_DATE
ANDhauft.EFFECTIVE_END_DATE= haouf.EFFECTIVE_END_DATE
ANDhoucf.CLASSIFICATION_CODE='HCM_TRU'
AND SYSDATEBETWEEN hauft.effective_start_date ANDhauft.effective_end_date
Departments:
SELECT hauft.NAME
FROM HR_ORG_UNIT_CLASSIFICATIONS_Fhoucf,HR_ALL_ORGANIZATION_UNITS_Fhaouf,
HR_ORGANIZATION_UNITS_F_TLhauft
WHERE haouf.ORGANIZATION_ID=houcf.ORGANIZATION_ID
ANDhaouf.ORGANIZATION_ID=hauft.ORGANIZATION_ID
ANDhaouf.EFFECTIVE_START_DATEBETWEEN houcf.EFFECTIVE_START_DATEAND
houcf.EFFECTIVE_END_DATE
ANDhauft.LANGUAGE= 'US'
ANDhauft.EFFECTIVE_START_DATE= haouf.EFFECTIVE_START_DATE
ANDhauft.EFFECTIVE_END_DATE= haouf.EFFECTIVE_END_DATE
ANDhoucf.CLASSIFICATION_CODE='DEPARTMENT'
AND SYSDATEBETWEEN hauft.effective_start_date ANDhauft.effective_end_date
PersonNames:
selectfull_namefromper_person_names_f
where name_type ='GLOBAL'
and trunc(sysdate) betweeneffective_start_dateandeffective_end_date
Work Schedules:
select schedule_idwork_schedule_id,schedule_namework_schedule_name
fromzmm_sr_schedules_vlwhere trunc(sysdate) betweentrunc(effective_from_date) and
trunc(effective_to_date)
Collective LaborAgreements:
SELECT DISTINCTCA.COLLECTIVE_AGREEMENT_NAME,CA.COLLECTIVE_AGREEMENT_IDFROM
PER_COL_AGREEMENTS_TL CA
SupervisorNames:
SupervisorName LOV
selectdistinctfull_name
fromPER_PERSON_NAMES_Fppnf,
PER_ASSIGNMENT_SUPERVISORS_Fpasf
where pasf.manager_id=ppnf.person_id
ANDppnf.name_type='GLOBAL'
ANDpasf.manager_type='LINE_MANAGER'
orderby full_name
BenefitLife Events:
SelectDISTINCTName fromBEN_LER_F where TRUNC(SYSDATE) BETWEEN EFFECTIVE_START_DATE
ANDEFFECTIVE_END_DATE
BenefitPlans:
selectdistinctpl.namefromBEN_PL_FPL
where (PL.NAMEnotlike 'Waive%'ANDPL.NAMEnotlike 'Volun%')
and TRUNC(SYSDATE) BETWEEN PL.EFFECTIVE_START_DATEANDPL.EFFECTIVE_END_DATE
That's all for now... Will keepupdatingthispostwithotherqueriesasIwantto maintainsingle pointof
reference forall Listof Values.
Stay tunedformore updates.

More Related Content

What's hot

How to debug a fast formula
How to debug a fast formulaHow to debug a fast formula
How to debug a fast formula
Feras Ahmad
 
Fusion absence management explained with examples
Fusion absence management   explained with examplesFusion absence management   explained with examples
Fusion absence management explained with examples
mshabrawi
 
Check element entry value on particular effective date
Check element entry value on particular effective dateCheck element entry value on particular effective date
Check element entry value on particular effective date
Feras Ahmad
 
Oracle HRMS Payroll Table Overview
Oracle HRMS Payroll Table OverviewOracle HRMS Payroll Table Overview
Oracle HRMS Payroll Table OverviewChris Martin
 
Query to get the geography information using bi report
Query to get the geography information using bi reportQuery to get the geography information using bi report
Query to get the geography information using bi report
Feras Ahmad
 
Oracle Fusion Payroll tracing for debugging
Oracle Fusion Payroll tracing for debuggingOracle Fusion Payroll tracing for debugging
Oracle Fusion Payroll tracing for debugging
Feras Ahmad
 
Bi email-alert-notification - Fusion Alert
Bi email-alert-notification - Fusion AlertBi email-alert-notification - Fusion Alert
Bi email-alert-notification - Fusion Alert
Feras Ahmad
 
Oracle Fusion HCM Payroll Process Flow.pdf
Oracle Fusion HCM Payroll Process Flow.pdfOracle Fusion HCM Payroll Process Flow.pdf
Oracle Fusion HCM Payroll Process Flow.pdf
Feras Ahmad
 
DBI database Items Query Oracle Fusion Cloud
DBI database Items Query Oracle Fusion CloudDBI database Items Query Oracle Fusion Cloud
DBI database Items Query Oracle Fusion Cloud
Feras Ahmad
 
Oracle Fusion Cloud sensitive data access audit
 Oracle Fusion Cloud sensitive data access audit Oracle Fusion Cloud sensitive data access audit
Oracle Fusion Cloud sensitive data access audit
Feras Ahmad
 
Oracle HRMS Proration
Oracle HRMS ProrationOracle HRMS Proration
Oracle HRMS Proration
runjithrocking
 
Payroll costing details Oracle Fusion Cloud HCM
Payroll costing details Oracle Fusion Cloud HCMPayroll costing details Oracle Fusion Cloud HCM
Payroll costing details Oracle Fusion Cloud HCM
Feras Ahmad
 
Query all roles and duties and privileges Oracle Fusion Cloud
Query all roles and duties and privileges Oracle Fusion CloudQuery all roles and duties and privileges Oracle Fusion Cloud
Query all roles and duties and privileges Oracle Fusion Cloud
Feras Ahmad
 
Calendar working days and holidays for Oracle EBS R12 Absence management
Calendar working days and holidays for Oracle EBS R12 Absence managementCalendar working days and holidays for Oracle EBS R12 Absence management
Calendar working days and holidays for Oracle EBS R12 Absence management
Feras Ahmad
 
Fast formula queries for functions, contexts, db is and packages
Fast formula queries for functions, contexts, db is and packagesFast formula queries for functions, contexts, db is and packages
Fast formula queries for functions, contexts, db is and packages
Feras Ahmad
 
Dynamic date parameters in bi report
Dynamic date parameters in bi reportDynamic date parameters in bi report
Dynamic date parameters in bi report
Feras Ahmad
 
Oracle fusion hrms_for_uae_hr_setup_white_paper_rel11
Oracle fusion hrms_for_uae_hr_setup_white_paper_rel11Oracle fusion hrms_for_uae_hr_setup_white_paper_rel11
Oracle fusion hrms_for_uae_hr_setup_white_paper_rel11
Feras Ahmad
 
Oracle HRMS Document R12.
Oracle HRMS Document R12.Oracle HRMS Document R12.
Query Pre Payment details Oracle Fusion Cloud
Query Pre Payment details Oracle Fusion CloudQuery Pre Payment details Oracle Fusion Cloud
Query Pre Payment details Oracle Fusion Cloud
Feras Ahmad
 
Oracle fusion hrms_for_uae_payroll_setup_white_paper_rel11
Oracle fusion hrms_for_uae_payroll_setup_white_paper_rel11Oracle fusion hrms_for_uae_payroll_setup_white_paper_rel11
Oracle fusion hrms_for_uae_payroll_setup_white_paper_rel11
Feras Ahmad
 

What's hot (20)

How to debug a fast formula
How to debug a fast formulaHow to debug a fast formula
How to debug a fast formula
 
Fusion absence management explained with examples
Fusion absence management   explained with examplesFusion absence management   explained with examples
Fusion absence management explained with examples
 
Check element entry value on particular effective date
Check element entry value on particular effective dateCheck element entry value on particular effective date
Check element entry value on particular effective date
 
Oracle HRMS Payroll Table Overview
Oracle HRMS Payroll Table OverviewOracle HRMS Payroll Table Overview
Oracle HRMS Payroll Table Overview
 
Query to get the geography information using bi report
Query to get the geography information using bi reportQuery to get the geography information using bi report
Query to get the geography information using bi report
 
Oracle Fusion Payroll tracing for debugging
Oracle Fusion Payroll tracing for debuggingOracle Fusion Payroll tracing for debugging
Oracle Fusion Payroll tracing for debugging
 
Bi email-alert-notification - Fusion Alert
Bi email-alert-notification - Fusion AlertBi email-alert-notification - Fusion Alert
Bi email-alert-notification - Fusion Alert
 
Oracle Fusion HCM Payroll Process Flow.pdf
Oracle Fusion HCM Payroll Process Flow.pdfOracle Fusion HCM Payroll Process Flow.pdf
Oracle Fusion HCM Payroll Process Flow.pdf
 
DBI database Items Query Oracle Fusion Cloud
DBI database Items Query Oracle Fusion CloudDBI database Items Query Oracle Fusion Cloud
DBI database Items Query Oracle Fusion Cloud
 
Oracle Fusion Cloud sensitive data access audit
 Oracle Fusion Cloud sensitive data access audit Oracle Fusion Cloud sensitive data access audit
Oracle Fusion Cloud sensitive data access audit
 
Oracle HRMS Proration
Oracle HRMS ProrationOracle HRMS Proration
Oracle HRMS Proration
 
Payroll costing details Oracle Fusion Cloud HCM
Payroll costing details Oracle Fusion Cloud HCMPayroll costing details Oracle Fusion Cloud HCM
Payroll costing details Oracle Fusion Cloud HCM
 
Query all roles and duties and privileges Oracle Fusion Cloud
Query all roles and duties and privileges Oracle Fusion CloudQuery all roles and duties and privileges Oracle Fusion Cloud
Query all roles and duties and privileges Oracle Fusion Cloud
 
Calendar working days and holidays for Oracle EBS R12 Absence management
Calendar working days and holidays for Oracle EBS R12 Absence managementCalendar working days and holidays for Oracle EBS R12 Absence management
Calendar working days and holidays for Oracle EBS R12 Absence management
 
Fast formula queries for functions, contexts, db is and packages
Fast formula queries for functions, contexts, db is and packagesFast formula queries for functions, contexts, db is and packages
Fast formula queries for functions, contexts, db is and packages
 
Dynamic date parameters in bi report
Dynamic date parameters in bi reportDynamic date parameters in bi report
Dynamic date parameters in bi report
 
Oracle fusion hrms_for_uae_hr_setup_white_paper_rel11
Oracle fusion hrms_for_uae_hr_setup_white_paper_rel11Oracle fusion hrms_for_uae_hr_setup_white_paper_rel11
Oracle fusion hrms_for_uae_hr_setup_white_paper_rel11
 
Oracle HRMS Document R12.
Oracle HRMS Document R12.Oracle HRMS Document R12.
Oracle HRMS Document R12.
 
Query Pre Payment details Oracle Fusion Cloud
Query Pre Payment details Oracle Fusion CloudQuery Pre Payment details Oracle Fusion Cloud
Query Pre Payment details Oracle Fusion Cloud
 
Oracle fusion hrms_for_uae_payroll_setup_white_paper_rel11
Oracle fusion hrms_for_uae_payroll_setup_white_paper_rel11Oracle fusion hrms_for_uae_payroll_setup_white_paper_rel11
Oracle fusion hrms_for_uae_payroll_setup_white_paper_rel11
 

Similar to Most frequently used sq ls for a list of values

Sql General
Sql General Sql General
Sql General
Praveen Tiwari
 
Sql basics
Sql basicsSql basics
Sql basicsKumar
 
Data Warehousing with Python
Data Warehousing with PythonData Warehousing with Python
Data Warehousing with Python
Martin Loetzsch
 
26012 Managing & Auditing Security During Implementation And Beyond 03172009
26012 Managing & Auditing Security During Implementation And Beyond 0317200926012 Managing & Auditing Security During Implementation And Beyond 03172009
26012 Managing & Auditing Security During Implementation And Beyond 03172009denigoin
 
Final project kijtorntham n
Final project kijtorntham nFinal project kijtorntham n
Final project kijtorntham n
NatsarankornKijtornt
 
Data Warehouse and Business Intelligence - Recipe 1
Data Warehouse and Business Intelligence - Recipe 1Data Warehouse and Business Intelligence - Recipe 1
Data Warehouse and Business Intelligence - Recipe 1
Massimo Cenci
 
Disaster and RecoveryBusiness Impact AnalysisSystem .docx
Disaster and RecoveryBusiness Impact AnalysisSystem .docxDisaster and RecoveryBusiness Impact AnalysisSystem .docx
Disaster and RecoveryBusiness Impact AnalysisSystem .docx
duketjoy27252
 
2-2b-contingency-planning-swanson-nist.pdf
2-2b-contingency-planning-swanson-nist.pdf2-2b-contingency-planning-swanson-nist.pdf
2-2b-contingency-planning-swanson-nist.pdf
SuriaRao2
 
RELATIONAL DATABASES & Database designCIS276EmployeeNumFir.docx
RELATIONAL DATABASES & Database designCIS276EmployeeNumFir.docxRELATIONAL DATABASES & Database designCIS276EmployeeNumFir.docx
RELATIONAL DATABASES & Database designCIS276EmployeeNumFir.docx
sodhi3
 
More than 12 More things about Oracle Database 12c
More than 12 More things about Oracle Database 12cMore than 12 More things about Oracle Database 12c
More than 12 More things about Oracle Database 12c
Guatemala User Group
 
Performance Tuning for Visualforce and Apex
Performance Tuning for Visualforce and ApexPerformance Tuning for Visualforce and Apex
Performance Tuning for Visualforce and ApexSalesforce Developers
 
Data infrastructure for the other 90% of companies
Data infrastructure for the other 90% of companiesData infrastructure for the other 90% of companies
Data infrastructure for the other 90% of companies
Martin Loetzsch
 
Constraint Optimization
Constraint OptimizationConstraint Optimization
Constraint Optimization
Oren Nakdimon
 
Metadata Melodies Webinar with David Loshin Presentation
Metadata Melodies Webinar with David Loshin PresentationMetadata Melodies Webinar with David Loshin Presentation
Metadata Melodies Webinar with David Loshin Presentation
Embarcadero Technologies
 
Get up to Speed (Quick Guide to data.table in R and Pentaho PDI)
Get up to Speed (Quick Guide to data.table in R and Pentaho PDI)Get up to Speed (Quick Guide to data.table in R and Pentaho PDI)
Get up to Speed (Quick Guide to data.table in R and Pentaho PDI)
Serban Tanasa
 
IRMUK-SOA_for_MDM_DQ_Integration_DV_20min
IRMUK-SOA_for_MDM_DQ_Integration_DV_20minIRMUK-SOA_for_MDM_DQ_Integration_DV_20min
IRMUK-SOA_for_MDM_DQ_Integration_DV_20minDigendra Vir Singh (DV)
 
Distributed Queries in IDS: New features.
Distributed Queries in IDS: New features.Distributed Queries in IDS: New features.
Distributed Queries in IDS: New features.
Keshav Murthy
 
DN 2017 | Reducing pain in data engineering | Martin Loetzsch | Project A
DN 2017 | Reducing pain in data engineering | Martin Loetzsch | Project ADN 2017 | Reducing pain in data engineering | Martin Loetzsch | Project A
DN 2017 | Reducing pain in data engineering | Martin Loetzsch | Project A
Dataconomy Media
 

Similar to Most frequently used sq ls for a list of values (20)

Sql General
Sql General Sql General
Sql General
 
SQL Basics
SQL BasicsSQL Basics
SQL Basics
 
Sql basics
Sql basicsSql basics
Sql basics
 
Data Warehousing with Python
Data Warehousing with PythonData Warehousing with Python
Data Warehousing with Python
 
4 01 peters
4 01 peters4 01 peters
4 01 peters
 
26012 Managing & Auditing Security During Implementation And Beyond 03172009
26012 Managing & Auditing Security During Implementation And Beyond 0317200926012 Managing & Auditing Security During Implementation And Beyond 03172009
26012 Managing & Auditing Security During Implementation And Beyond 03172009
 
Final project kijtorntham n
Final project kijtorntham nFinal project kijtorntham n
Final project kijtorntham n
 
Data Warehouse and Business Intelligence - Recipe 1
Data Warehouse and Business Intelligence - Recipe 1Data Warehouse and Business Intelligence - Recipe 1
Data Warehouse and Business Intelligence - Recipe 1
 
Disaster and RecoveryBusiness Impact AnalysisSystem .docx
Disaster and RecoveryBusiness Impact AnalysisSystem .docxDisaster and RecoveryBusiness Impact AnalysisSystem .docx
Disaster and RecoveryBusiness Impact AnalysisSystem .docx
 
2-2b-contingency-planning-swanson-nist.pdf
2-2b-contingency-planning-swanson-nist.pdf2-2b-contingency-planning-swanson-nist.pdf
2-2b-contingency-planning-swanson-nist.pdf
 
RELATIONAL DATABASES & Database designCIS276EmployeeNumFir.docx
RELATIONAL DATABASES & Database designCIS276EmployeeNumFir.docxRELATIONAL DATABASES & Database designCIS276EmployeeNumFir.docx
RELATIONAL DATABASES & Database designCIS276EmployeeNumFir.docx
 
More than 12 More things about Oracle Database 12c
More than 12 More things about Oracle Database 12cMore than 12 More things about Oracle Database 12c
More than 12 More things about Oracle Database 12c
 
Performance Tuning for Visualforce and Apex
Performance Tuning for Visualforce and ApexPerformance Tuning for Visualforce and Apex
Performance Tuning for Visualforce and Apex
 
Data infrastructure for the other 90% of companies
Data infrastructure for the other 90% of companiesData infrastructure for the other 90% of companies
Data infrastructure for the other 90% of companies
 
Constraint Optimization
Constraint OptimizationConstraint Optimization
Constraint Optimization
 
Metadata Melodies Webinar with David Loshin Presentation
Metadata Melodies Webinar with David Loshin PresentationMetadata Melodies Webinar with David Loshin Presentation
Metadata Melodies Webinar with David Loshin Presentation
 
Get up to Speed (Quick Guide to data.table in R and Pentaho PDI)
Get up to Speed (Quick Guide to data.table in R and Pentaho PDI)Get up to Speed (Quick Guide to data.table in R and Pentaho PDI)
Get up to Speed (Quick Guide to data.table in R and Pentaho PDI)
 
IRMUK-SOA_for_MDM_DQ_Integration_DV_20min
IRMUK-SOA_for_MDM_DQ_Integration_DV_20minIRMUK-SOA_for_MDM_DQ_Integration_DV_20min
IRMUK-SOA_for_MDM_DQ_Integration_DV_20min
 
Distributed Queries in IDS: New features.
Distributed Queries in IDS: New features.Distributed Queries in IDS: New features.
Distributed Queries in IDS: New features.
 
DN 2017 | Reducing pain in data engineering | Martin Loetzsch | Project A
DN 2017 | Reducing pain in data engineering | Martin Loetzsch | Project ADN 2017 | Reducing pain in data engineering | Martin Loetzsch | Project A
DN 2017 | Reducing pain in data engineering | Martin Loetzsch | Project A
 

More from Feras Ahmad

Configure Flexfield Parameters in Value Sets for Document Records.docx
Configure Flexfield Parameters in Value Sets for Document Records.docxConfigure Flexfield Parameters in Value Sets for Document Records.docx
Configure Flexfield Parameters in Value Sets for Document Records.docx
Feras Ahmad
 
Building-Materials
Building-MaterialsBuilding-Materials
Building-Materials
Feras Ahmad
 
How to Debug the Fast Formula.pdf
How to Debug the Fast Formula.pdfHow to Debug the Fast Formula.pdf
How to Debug the Fast Formula.pdf
Feras Ahmad
 
Infolets and OTBI Deep link Actionable Reports - Configuration Work Book
Infolets and OTBI Deep link Actionable Reports - Configuration Work Book Infolets and OTBI Deep link Actionable Reports - Configuration Work Book
Infolets and OTBI Deep link Actionable Reports - Configuration Work Book
Feras Ahmad
 
Oracle HCM Presentation 2020
Oracle HCM Presentation 2020Oracle HCM Presentation 2020
Oracle HCM Presentation 2020
Feras Ahmad
 
Oracle Fusion HCM vs E-Business Suite HRMS
Oracle Fusion HCM vs E-Business Suite HRMSOracle Fusion HCM vs E-Business Suite HRMS
Oracle Fusion HCM vs E-Business Suite HRMS
Feras Ahmad
 
2020 06-11 goverment KSA Summary VAT increase
2020 06-11 goverment KSA Summary VAT increase2020 06-11 goverment KSA Summary VAT increase
2020 06-11 goverment KSA Summary VAT increase
Feras Ahmad
 
Financial reporting compliance cloud service presentation
Financial reporting compliance cloud service presentationFinancial reporting compliance cloud service presentation
Financial reporting compliance cloud service presentation
Feras Ahmad
 
Absence Work flow query
Absence Work flow queryAbsence Work flow query
Absence Work flow query
Feras Ahmad
 
Setting up audits and audit reports Fusion Cloud
Setting up audits and audit reports Fusion Cloud Setting up audits and audit reports Fusion Cloud
Setting up audits and audit reports Fusion Cloud
Feras Ahmad
 
Oracle EBS R12 Payroll user manual
Oracle EBS R12 Payroll user manualOracle EBS R12 Payroll user manual
Oracle EBS R12 Payroll user manual
Feras Ahmad
 
Oracle EBS R12 Self service user manual
Oracle EBS R12 Self service user manualOracle EBS R12 Self service user manual
Oracle EBS R12 Self service user manual
Feras Ahmad
 
Oracle EBS R 12 Core hr user manual
Oracle EBS R 12 Core hr user manualOracle EBS R 12 Core hr user manual
Oracle EBS R 12 Core hr user manual
Feras Ahmad
 
Oracle Fusion HCM Presentation
Oracle Fusion HCM PresentationOracle Fusion HCM Presentation
Oracle Fusion HCM Presentation
Feras Ahmad
 
Oracle HRMS Accrual plan Setup
Oracle HRMS Accrual plan SetupOracle HRMS Accrual plan Setup
Oracle HRMS Accrual plan Setup
Feras Ahmad
 
Oracle Fusion HCM Presentation
Oracle Fusion HCM PresentationOracle Fusion HCM Presentation
Oracle Fusion HCM Presentation
Feras Ahmad
 
Best practices for fusion hcm cloud implementation
Best practices for fusion hcm cloud implementationBest practices for fusion hcm cloud implementation
Best practices for fusion hcm cloud implementation
Feras Ahmad
 

More from Feras Ahmad (17)

Configure Flexfield Parameters in Value Sets for Document Records.docx
Configure Flexfield Parameters in Value Sets for Document Records.docxConfigure Flexfield Parameters in Value Sets for Document Records.docx
Configure Flexfield Parameters in Value Sets for Document Records.docx
 
Building-Materials
Building-MaterialsBuilding-Materials
Building-Materials
 
How to Debug the Fast Formula.pdf
How to Debug the Fast Formula.pdfHow to Debug the Fast Formula.pdf
How to Debug the Fast Formula.pdf
 
Infolets and OTBI Deep link Actionable Reports - Configuration Work Book
Infolets and OTBI Deep link Actionable Reports - Configuration Work Book Infolets and OTBI Deep link Actionable Reports - Configuration Work Book
Infolets and OTBI Deep link Actionable Reports - Configuration Work Book
 
Oracle HCM Presentation 2020
Oracle HCM Presentation 2020Oracle HCM Presentation 2020
Oracle HCM Presentation 2020
 
Oracle Fusion HCM vs E-Business Suite HRMS
Oracle Fusion HCM vs E-Business Suite HRMSOracle Fusion HCM vs E-Business Suite HRMS
Oracle Fusion HCM vs E-Business Suite HRMS
 
2020 06-11 goverment KSA Summary VAT increase
2020 06-11 goverment KSA Summary VAT increase2020 06-11 goverment KSA Summary VAT increase
2020 06-11 goverment KSA Summary VAT increase
 
Financial reporting compliance cloud service presentation
Financial reporting compliance cloud service presentationFinancial reporting compliance cloud service presentation
Financial reporting compliance cloud service presentation
 
Absence Work flow query
Absence Work flow queryAbsence Work flow query
Absence Work flow query
 
Setting up audits and audit reports Fusion Cloud
Setting up audits and audit reports Fusion Cloud Setting up audits and audit reports Fusion Cloud
Setting up audits and audit reports Fusion Cloud
 
Oracle EBS R12 Payroll user manual
Oracle EBS R12 Payroll user manualOracle EBS R12 Payroll user manual
Oracle EBS R12 Payroll user manual
 
Oracle EBS R12 Self service user manual
Oracle EBS R12 Self service user manualOracle EBS R12 Self service user manual
Oracle EBS R12 Self service user manual
 
Oracle EBS R 12 Core hr user manual
Oracle EBS R 12 Core hr user manualOracle EBS R 12 Core hr user manual
Oracle EBS R 12 Core hr user manual
 
Oracle Fusion HCM Presentation
Oracle Fusion HCM PresentationOracle Fusion HCM Presentation
Oracle Fusion HCM Presentation
 
Oracle HRMS Accrual plan Setup
Oracle HRMS Accrual plan SetupOracle HRMS Accrual plan Setup
Oracle HRMS Accrual plan Setup
 
Oracle Fusion HCM Presentation
Oracle Fusion HCM PresentationOracle Fusion HCM Presentation
Oracle Fusion HCM Presentation
 
Best practices for fusion hcm cloud implementation
Best practices for fusion hcm cloud implementationBest practices for fusion hcm cloud implementation
Best practices for fusion hcm cloud implementation
 

Recently uploaded

zkStudyClub - Reef: Fast Succinct Non-Interactive Zero-Knowledge Regex Proofs
zkStudyClub - Reef: Fast Succinct Non-Interactive Zero-Knowledge Regex ProofszkStudyClub - Reef: Fast Succinct Non-Interactive Zero-Knowledge Regex Proofs
zkStudyClub - Reef: Fast Succinct Non-Interactive Zero-Knowledge Regex Proofs
Alex Pruden
 
GraphSummit Singapore | Enhancing Changi Airport Group's Passenger Experience...
GraphSummit Singapore | Enhancing Changi Airport Group's Passenger Experience...GraphSummit Singapore | Enhancing Changi Airport Group's Passenger Experience...
GraphSummit Singapore | Enhancing Changi Airport Group's Passenger Experience...
Neo4j
 
Why You Should Replace Windows 11 with Nitrux Linux 3.5.0 for enhanced perfor...
Why You Should Replace Windows 11 with Nitrux Linux 3.5.0 for enhanced perfor...Why You Should Replace Windows 11 with Nitrux Linux 3.5.0 for enhanced perfor...
Why You Should Replace Windows 11 with Nitrux Linux 3.5.0 for enhanced perfor...
SOFTTECHHUB
 
National Security Agency - NSA mobile device best practices
National Security Agency - NSA mobile device best practicesNational Security Agency - NSA mobile device best practices
National Security Agency - NSA mobile device best practices
Quotidiano Piemontese
 
UiPath Test Automation using UiPath Test Suite series, part 5
UiPath Test Automation using UiPath Test Suite series, part 5UiPath Test Automation using UiPath Test Suite series, part 5
UiPath Test Automation using UiPath Test Suite series, part 5
DianaGray10
 
Introduction to CHERI technology - Cybersecurity
Introduction to CHERI technology - CybersecurityIntroduction to CHERI technology - Cybersecurity
Introduction to CHERI technology - Cybersecurity
mikeeftimakis1
 
Elizabeth Buie - Older adults: Are we really designing for our future selves?
Elizabeth Buie - Older adults: Are we really designing for our future selves?Elizabeth Buie - Older adults: Are we really designing for our future selves?
Elizabeth Buie - Older adults: Are we really designing for our future selves?
Nexer Digital
 
GridMate - End to end testing is a critical piece to ensure quality and avoid...
GridMate - End to end testing is a critical piece to ensure quality and avoid...GridMate - End to end testing is a critical piece to ensure quality and avoid...
GridMate - End to end testing is a critical piece to ensure quality and avoid...
ThomasParaiso2
 
Securing your Kubernetes cluster_ a step-by-step guide to success !
Securing your Kubernetes cluster_ a step-by-step guide to success !Securing your Kubernetes cluster_ a step-by-step guide to success !
Securing your Kubernetes cluster_ a step-by-step guide to success !
KatiaHIMEUR1
 
GraphSummit Singapore | Neo4j Product Vision & Roadmap - Q2 2024
GraphSummit Singapore | Neo4j Product Vision & Roadmap - Q2 2024GraphSummit Singapore | Neo4j Product Vision & Roadmap - Q2 2024
GraphSummit Singapore | Neo4j Product Vision & Roadmap - Q2 2024
Neo4j
 
Epistemic Interaction - tuning interfaces to provide information for AI support
Epistemic Interaction - tuning interfaces to provide information for AI supportEpistemic Interaction - tuning interfaces to provide information for AI support
Epistemic Interaction - tuning interfaces to provide information for AI support
Alan Dix
 
Removing Uninteresting Bytes in Software Fuzzing
Removing Uninteresting Bytes in Software FuzzingRemoving Uninteresting Bytes in Software Fuzzing
Removing Uninteresting Bytes in Software Fuzzing
Aftab Hussain
 
Secstrike : Reverse Engineering & Pwnable tools for CTF.pptx
Secstrike : Reverse Engineering & Pwnable tools for CTF.pptxSecstrike : Reverse Engineering & Pwnable tools for CTF.pptx
Secstrike : Reverse Engineering & Pwnable tools for CTF.pptx
nkrafacyberclub
 
Pushing the limits of ePRTC: 100ns holdover for 100 days
Pushing the limits of ePRTC: 100ns holdover for 100 daysPushing the limits of ePRTC: 100ns holdover for 100 days
Pushing the limits of ePRTC: 100ns holdover for 100 days
Adtran
 
Enchancing adoption of Open Source Libraries. A case study on Albumentations.AI
Enchancing adoption of Open Source Libraries. A case study on Albumentations.AIEnchancing adoption of Open Source Libraries. A case study on Albumentations.AI
Enchancing adoption of Open Source Libraries. A case study on Albumentations.AI
Vladimir Iglovikov, Ph.D.
 
Encryption in Microsoft 365 - ExpertsLive Netherlands 2024
Encryption in Microsoft 365 - ExpertsLive Netherlands 2024Encryption in Microsoft 365 - ExpertsLive Netherlands 2024
Encryption in Microsoft 365 - ExpertsLive Netherlands 2024
Albert Hoitingh
 
The Art of the Pitch: WordPress Relationships and Sales
The Art of the Pitch: WordPress Relationships and SalesThe Art of the Pitch: WordPress Relationships and Sales
The Art of the Pitch: WordPress Relationships and Sales
Laura Byrne
 
Uni Systems Copilot event_05062024_C.Vlachos.pdf
Uni Systems Copilot event_05062024_C.Vlachos.pdfUni Systems Copilot event_05062024_C.Vlachos.pdf
Uni Systems Copilot event_05062024_C.Vlachos.pdf
Uni Systems S.M.S.A.
 
RESUME BUILDER APPLICATION Project for students
RESUME BUILDER APPLICATION Project for studentsRESUME BUILDER APPLICATION Project for students
RESUME BUILDER APPLICATION Project for students
KAMESHS29
 
A tale of scale & speed: How the US Navy is enabling software delivery from l...
A tale of scale & speed: How the US Navy is enabling software delivery from l...A tale of scale & speed: How the US Navy is enabling software delivery from l...
A tale of scale & speed: How the US Navy is enabling software delivery from l...
sonjaschweigert1
 

Recently uploaded (20)

zkStudyClub - Reef: Fast Succinct Non-Interactive Zero-Knowledge Regex Proofs
zkStudyClub - Reef: Fast Succinct Non-Interactive Zero-Knowledge Regex ProofszkStudyClub - Reef: Fast Succinct Non-Interactive Zero-Knowledge Regex Proofs
zkStudyClub - Reef: Fast Succinct Non-Interactive Zero-Knowledge Regex Proofs
 
GraphSummit Singapore | Enhancing Changi Airport Group's Passenger Experience...
GraphSummit Singapore | Enhancing Changi Airport Group's Passenger Experience...GraphSummit Singapore | Enhancing Changi Airport Group's Passenger Experience...
GraphSummit Singapore | Enhancing Changi Airport Group's Passenger Experience...
 
Why You Should Replace Windows 11 with Nitrux Linux 3.5.0 for enhanced perfor...
Why You Should Replace Windows 11 with Nitrux Linux 3.5.0 for enhanced perfor...Why You Should Replace Windows 11 with Nitrux Linux 3.5.0 for enhanced perfor...
Why You Should Replace Windows 11 with Nitrux Linux 3.5.0 for enhanced perfor...
 
National Security Agency - NSA mobile device best practices
National Security Agency - NSA mobile device best practicesNational Security Agency - NSA mobile device best practices
National Security Agency - NSA mobile device best practices
 
UiPath Test Automation using UiPath Test Suite series, part 5
UiPath Test Automation using UiPath Test Suite series, part 5UiPath Test Automation using UiPath Test Suite series, part 5
UiPath Test Automation using UiPath Test Suite series, part 5
 
Introduction to CHERI technology - Cybersecurity
Introduction to CHERI technology - CybersecurityIntroduction to CHERI technology - Cybersecurity
Introduction to CHERI technology - Cybersecurity
 
Elizabeth Buie - Older adults: Are we really designing for our future selves?
Elizabeth Buie - Older adults: Are we really designing for our future selves?Elizabeth Buie - Older adults: Are we really designing for our future selves?
Elizabeth Buie - Older adults: Are we really designing for our future selves?
 
GridMate - End to end testing is a critical piece to ensure quality and avoid...
GridMate - End to end testing is a critical piece to ensure quality and avoid...GridMate - End to end testing is a critical piece to ensure quality and avoid...
GridMate - End to end testing is a critical piece to ensure quality and avoid...
 
Securing your Kubernetes cluster_ a step-by-step guide to success !
Securing your Kubernetes cluster_ a step-by-step guide to success !Securing your Kubernetes cluster_ a step-by-step guide to success !
Securing your Kubernetes cluster_ a step-by-step guide to success !
 
GraphSummit Singapore | Neo4j Product Vision & Roadmap - Q2 2024
GraphSummit Singapore | Neo4j Product Vision & Roadmap - Q2 2024GraphSummit Singapore | Neo4j Product Vision & Roadmap - Q2 2024
GraphSummit Singapore | Neo4j Product Vision & Roadmap - Q2 2024
 
Epistemic Interaction - tuning interfaces to provide information for AI support
Epistemic Interaction - tuning interfaces to provide information for AI supportEpistemic Interaction - tuning interfaces to provide information for AI support
Epistemic Interaction - tuning interfaces to provide information for AI support
 
Removing Uninteresting Bytes in Software Fuzzing
Removing Uninteresting Bytes in Software FuzzingRemoving Uninteresting Bytes in Software Fuzzing
Removing Uninteresting Bytes in Software Fuzzing
 
Secstrike : Reverse Engineering & Pwnable tools for CTF.pptx
Secstrike : Reverse Engineering & Pwnable tools for CTF.pptxSecstrike : Reverse Engineering & Pwnable tools for CTF.pptx
Secstrike : Reverse Engineering & Pwnable tools for CTF.pptx
 
Pushing the limits of ePRTC: 100ns holdover for 100 days
Pushing the limits of ePRTC: 100ns holdover for 100 daysPushing the limits of ePRTC: 100ns holdover for 100 days
Pushing the limits of ePRTC: 100ns holdover for 100 days
 
Enchancing adoption of Open Source Libraries. A case study on Albumentations.AI
Enchancing adoption of Open Source Libraries. A case study on Albumentations.AIEnchancing adoption of Open Source Libraries. A case study on Albumentations.AI
Enchancing adoption of Open Source Libraries. A case study on Albumentations.AI
 
Encryption in Microsoft 365 - ExpertsLive Netherlands 2024
Encryption in Microsoft 365 - ExpertsLive Netherlands 2024Encryption in Microsoft 365 - ExpertsLive Netherlands 2024
Encryption in Microsoft 365 - ExpertsLive Netherlands 2024
 
The Art of the Pitch: WordPress Relationships and Sales
The Art of the Pitch: WordPress Relationships and SalesThe Art of the Pitch: WordPress Relationships and Sales
The Art of the Pitch: WordPress Relationships and Sales
 
Uni Systems Copilot event_05062024_C.Vlachos.pdf
Uni Systems Copilot event_05062024_C.Vlachos.pdfUni Systems Copilot event_05062024_C.Vlachos.pdf
Uni Systems Copilot event_05062024_C.Vlachos.pdf
 
RESUME BUILDER APPLICATION Project for students
RESUME BUILDER APPLICATION Project for studentsRESUME BUILDER APPLICATION Project for students
RESUME BUILDER APPLICATION Project for students
 
A tale of scale & speed: How the US Navy is enabling software delivery from l...
A tale of scale & speed: How the US Navy is enabling software delivery from l...A tale of scale & speed: How the US Navy is enabling software delivery from l...
A tale of scale & speed: How the US Navy is enabling software delivery from l...
 

Most frequently used sq ls for a list of values

  • 1. Most Frequently Used SQLs for List of Values (LOVs) in BI Report Beloware the listof SQLs that are mostfrequentlyusedtogetthe listof valuesforbusinessobjects. Legislative Data Group: Selectname fromper_legislative_data_groups_vl SecuredPersonsList: SELECT DISTINCTPERSON_NUMBERFROM PER_PERSON_SECURED_LIST_V SecuredDepartments List: SELECT DISTINCTSUBSTR(DEPT.NAME,1,INSTR(DEPT.NAME,'-',1)-1) DEPCODEFROM PER_DEPARTMENT_SECURED_LIST_V SEC_DEPT, PER_DEPARTMENTS DEPT WHERE DEPT.ORGANIZATION_ID=SEC_DEPT.ORGANIZATION_ID Payroll Name: selectdistinctpayroll_name frompay_all_payrolls_f where TRUNC(SYSDATE) BETWEEN effective_start_date ANDeffective_end_date Country Codes: selectcountry_code,GEOGRAPHY_ELEMENT1 fromHZ_GEOGRAPHIES where GEOGRAPHY_TYPE = 'COUNTRY' Balance Category: selectdistinctUSER_CATEGORY_NAMEfromPAY_BALANCE_CATEGORIES_VL Pay Action Status Lookups: SELECT meaning FROMhcm_lookupsWHERE lookup_type ='PAY_ACTION_STATUS' Payroll FlowName: SELECT pfi.instance_name FROMpay_flow_instancespfi ORDER BY creation_date desc ElementClassification: SELECT DISTINCTc.classification_nameClassfication FROMpay_ele_classifications_vl c, per_legislative_data_groups_vl l WHERE c.legislation_code =l.legislation_code ANDl.name IN (:P_LDG) ORDER BY c.classification_name Pay Periods: selectptp.period_name
  • 2. frompay_time_periodsptp,pay_all_payrolls_f pp where pp.payroll_id=ptp.payroll_idandpp.payroll_name =:OOS_PAYROLL and sysdate betweenpp.effective_start_date andpp.effective_end_date and ptp.period_category='E' and ( substr(ptp.period_name,instr(ptp.period_name,'', 1)+1, 4) = to_char(sysdate,'YYYY') OR substr(ptp.period_name,instr(ptp.period_name,'', 1)+1, 4) = to_char(sysdate,'YYYY') - 1 OR substr(ptp.period_name,instr(ptp.period_name,'', 1)+1, 4) = to_char(sysdate,'YYYY') + 1) orderby ptp.time_period_id Legal Employers: SELECT hauft.NAME FROM HR_ORG_UNIT_CLASSIFICATIONS_Fhoucf,HR_ALL_ORGANIZATION_UNITS_Fhaouf, HR_ORGANIZATION_UNITS_F_TLhauft WHERE haouf.ORGANIZATION_ID=houcf.ORGANIZATION_ID ANDhaouf.ORGANIZATION_ID=hauft.ORGANIZATION_ID ANDhaouf.EFFECTIVE_START_DATEBETWEEN houcf.EFFECTIVE_START_DATEAND houcf.EFFECTIVE_END_DATE ANDhauft.LANGUAGE= 'US' ANDhauft.EFFECTIVE_START_DATE= haouf.EFFECTIVE_START_DATE ANDhauft.EFFECTIVE_END_DATE= haouf.EFFECTIVE_END_DATE ANDhoucf.CLASSIFICATION_CODE='HCM_LEMP' AND SYSDATEBETWEEN hauft.effective_start_date ANDhauft.effective_end_date Payroll Statutory Units (PSUs): SELECT hauft.NAME FROM HR_ORG_UNIT_CLASSIFICATIONS_Fhoucf,HR_ALL_ORGANIZATION_UNITS_Fhaouf, HR_ORGANIZATION_UNITS_F_TLhauft WHERE haouf.ORGANIZATION_ID=houcf.ORGANIZATION_ID ANDhaouf.ORGANIZATION_ID=hauft.ORGANIZATION_ID ANDhaouf.EFFECTIVE_START_DATEBETWEEN houcf.EFFECTIVE_START_DATEAND houcf.EFFECTIVE_END_DATE ANDhauft.LANGUAGE= 'US' ANDhauft.EFFECTIVE_START_DATE= haouf.EFFECTIVE_START_DATE ANDhauft.EFFECTIVE_END_DATE= haouf.EFFECTIVE_END_DATE ANDhoucf.CLASSIFICATION_CODE='HCM_PSU' AND SYSDATEBETWEEN hauft.effective_start_date ANDhauft.effective_end_date Divisions: SELECT hauft.NAME FROM HR_ORG_UNIT_CLASSIFICATIONS_Fhoucf,HR_ALL_ORGANIZATION_UNITS_Fhaouf, HR_ORGANIZATION_UNITS_F_TLhauft WHERE haouf.ORGANIZATION_ID=houcf.ORGANIZATION_ID ANDhaouf.ORGANIZATION_ID=hauft.ORGANIZATION_ID ANDhaouf.EFFECTIVE_START_DATEBETWEEN houcf.EFFECTIVE_START_DATEAND
  • 3. houcf.EFFECTIVE_END_DATE ANDhauft.LANGUAGE= 'US' ANDhauft.EFFECTIVE_START_DATE= haouf.EFFECTIVE_START_DATE ANDhauft.EFFECTIVE_END_DATE= haouf.EFFECTIVE_END_DATE ANDhoucf.CLASSIFICATION_CODE='HCM_DIVISION' AND SYSDATEBETWEEN hauft.effective_start_date ANDhauft.effective_end_date BusinessUnits: SELECT hauft.NAME FROM HR_ORG_UNIT_CLASSIFICATIONS_Fhoucf, HR_ALL_ORGANIZATION_UNITS_Fhaouf, HR_ORGANIZATION_UNITS_F_TLhauft WHERE haouf.ORGANIZATION_ID=houcf.ORGANIZATION_ID ANDhaouf.ORGANIZATION_ID=hauft.ORGANIZATION_ID ANDhaouf.EFFECTIVE_START_DATEBETWEEN houcf.EFFECTIVE_START_DATE AND houcf.EFFECTIVE_END_DATE ANDhauft.LANGUAGE= 'US' ANDhauft.EFFECTIVE_START_DATE= haouf.EFFECTIVE_START_DATE ANDhauft.EFFECTIVE_END_DATE= haouf.EFFECTIVE_END_DATE ANDhoucf.CLASSIFICATION_CODE='FUN_BUSINESS_UNIT' AND SYSDATEBETWEEN hauft.effective_start_date ANDhauft.effective_end_date Legal ReportingUnits(LRUs): SELECT hauft.NAME FROM HR_ORG_UNIT_CLASSIFICATIONS_Fhoucf, HR_ALL_ORGANIZATION_UNITS_Fhaouf, HR_ORGANIZATION_UNITS_F_TLhauft WHERE haouf.ORGANIZATION_ID=houcf.ORGANIZATION_ID ANDhaouf.ORGANIZATION_ID=hauft.ORGANIZATION_ID ANDhaouf.EFFECTIVE_START_DATEBETWEEN houcf.EFFECTIVE_START_DATEAND houcf.EFFECTIVE_END_DATE ANDhauft.LANGUAGE= 'US' ANDhauft.EFFECTIVE_START_DATE= haouf.EFFECTIVE_START_DATE ANDhauft.EFFECTIVE_END_DATE= haouf.EFFECTIVE_END_DATE ANDhoucf.CLASSIFICATION_CODE='HCM_LRU' AND SYSDATEBETWEEN hauft.effective_start_date ANDhauft.effective_end_date Tax ReportingUnits(TRUs): SELECT hauft.NAME FROM HR_ORG_UNIT_CLASSIFICATIONS_Fhoucf, HR_ALL_ORGANIZATION_UNITS_Fhaouf, HR_ORGANIZATION_UNITS_F_TLhauft WHERE haouf.ORGANIZATION_ID=houcf.ORGANIZATION_ID ANDhaouf.ORGANIZATION_ID=hauft.ORGANIZATION_ID
  • 4. ANDhaouf.EFFECTIVE_START_DATEBETWEEN houcf.EFFECTIVE_START_DATEAND houcf.EFFECTIVE_END_DATE ANDhauft.LANGUAGE= 'US' ANDhauft.EFFECTIVE_START_DATE= haouf.EFFECTIVE_START_DATE ANDhauft.EFFECTIVE_END_DATE= haouf.EFFECTIVE_END_DATE ANDhoucf.CLASSIFICATION_CODE='HCM_TRU' AND SYSDATEBETWEEN hauft.effective_start_date ANDhauft.effective_end_date Enterprise: SELECT hauft.NAME FROM HR_ORG_UNIT_CLASSIFICATIONS_Fhoucf, HR_ALL_ORGANIZATION_UNITS_Fhaouf, HR_ORGANIZATION_UNITS_F_TLhauft WHERE haouf.ORGANIZATION_ID=houcf.ORGANIZATION_ID ANDhaouf.ORGANIZATION_ID=hauft.ORGANIZATION_ID ANDhaouf.EFFECTIVE_START_DATEBETWEEN houcf.EFFECTIVE_START_DATEAND houcf.EFFECTIVE_END_DATE ANDhauft.LANGUAGE= 'US' ANDhauft.EFFECTIVE_START_DATE= haouf.EFFECTIVE_START_DATE ANDhauft.EFFECTIVE_END_DATE= haouf.EFFECTIVE_END_DATE ANDhoucf.CLASSIFICATION_CODE='HCM_TRU' AND SYSDATEBETWEEN hauft.effective_start_date ANDhauft.effective_end_date Departments: SELECT hauft.NAME FROM HR_ORG_UNIT_CLASSIFICATIONS_Fhoucf,HR_ALL_ORGANIZATION_UNITS_Fhaouf, HR_ORGANIZATION_UNITS_F_TLhauft WHERE haouf.ORGANIZATION_ID=houcf.ORGANIZATION_ID ANDhaouf.ORGANIZATION_ID=hauft.ORGANIZATION_ID ANDhaouf.EFFECTIVE_START_DATEBETWEEN houcf.EFFECTIVE_START_DATEAND houcf.EFFECTIVE_END_DATE ANDhauft.LANGUAGE= 'US' ANDhauft.EFFECTIVE_START_DATE= haouf.EFFECTIVE_START_DATE ANDhauft.EFFECTIVE_END_DATE= haouf.EFFECTIVE_END_DATE ANDhoucf.CLASSIFICATION_CODE='DEPARTMENT' AND SYSDATEBETWEEN hauft.effective_start_date ANDhauft.effective_end_date PersonNames: selectfull_namefromper_person_names_f where name_type ='GLOBAL' and trunc(sysdate) betweeneffective_start_dateandeffective_end_date Work Schedules: select schedule_idwork_schedule_id,schedule_namework_schedule_name
  • 5. fromzmm_sr_schedules_vlwhere trunc(sysdate) betweentrunc(effective_from_date) and trunc(effective_to_date) Collective LaborAgreements: SELECT DISTINCTCA.COLLECTIVE_AGREEMENT_NAME,CA.COLLECTIVE_AGREEMENT_IDFROM PER_COL_AGREEMENTS_TL CA SupervisorNames: SupervisorName LOV selectdistinctfull_name fromPER_PERSON_NAMES_Fppnf, PER_ASSIGNMENT_SUPERVISORS_Fpasf where pasf.manager_id=ppnf.person_id ANDppnf.name_type='GLOBAL' ANDpasf.manager_type='LINE_MANAGER' orderby full_name BenefitLife Events: SelectDISTINCTName fromBEN_LER_F where TRUNC(SYSDATE) BETWEEN EFFECTIVE_START_DATE ANDEFFECTIVE_END_DATE BenefitPlans: selectdistinctpl.namefromBEN_PL_FPL where (PL.NAMEnotlike 'Waive%'ANDPL.NAMEnotlike 'Volun%') and TRUNC(SYSDATE) BETWEEN PL.EFFECTIVE_START_DATEANDPL.EFFECTIVE_END_DATE That's all for now... Will keepupdatingthispostwithotherqueriesasIwantto maintainsingle pointof reference forall Listof Values. Stay tunedformore updates.