SlideShare a Scribd company logo
1 of 5
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

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 dateFeras Ahmad
 
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 CloudFeras Ahmad
 
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 HCMFeras Ahmad
 
Oracle Fusion Cloud HCM Payroll Query
Oracle Fusion Cloud HCM Payroll QueryOracle Fusion Cloud HCM Payroll Query
Oracle Fusion Cloud HCM Payroll QueryFeras 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 CloudFeras 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 packagesFeras Ahmad
 
Oracle Fusion Payroll tracing for debugging
Oracle Fusion Payroll tracing for debuggingOracle Fusion Payroll tracing for debugging
Oracle Fusion Payroll tracing for debuggingFeras Ahmad
 
How to debug a fast formula
How to debug a fast formulaHow to debug a fast formula
How to debug a fast formulaFeras 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_rel11Feras 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 managementFeras Ahmad
 
All payroll elements with eligibility Oracle Fusion Cloud
All payroll elements with eligibility Oracle Fusion CloudAll payroll elements with eligibility Oracle Fusion Cloud
All payroll elements with eligibility Oracle Fusion CloudFeras Ahmad
 
Oracle HRMS Payroll Table Overview
Oracle HRMS Payroll Table OverviewOracle HRMS Payroll Table Overview
Oracle HRMS Payroll Table OverviewChris Martin
 
Bi email-alert-notification - Fusion Alert
Bi email-alert-notification - Fusion AlertBi email-alert-notification - Fusion Alert
Bi email-alert-notification - Fusion AlertFeras Ahmad
 
Fusion absence management explained with examples
Fusion absence management   explained with examplesFusion absence management   explained with examples
Fusion absence management explained with examplesmshabrawi
 
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.pdfFeras 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 manualFeras 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 EBS HRMS SETUP
Oracle EBS HRMS SETUPOracle EBS HRMS SETUP
Oracle EBS HRMS SETUPHussain Abbas
 

What's hot (20)

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
 
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
 
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
 
Oracle Fusion Cloud HCM Payroll Query
Oracle Fusion Cloud HCM Payroll QueryOracle Fusion Cloud HCM Payroll Query
Oracle Fusion Cloud HCM Payroll Query
 
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
 
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
 
Oracle Fusion Payroll tracing for debugging
Oracle Fusion Payroll tracing for debuggingOracle Fusion Payroll tracing for debugging
Oracle Fusion Payroll tracing for debugging
 
How to debug a fast formula
How to debug a fast formulaHow to debug a fast formula
How to debug a fast formula
 
Uae absence whitepaper
Uae absence whitepaperUae absence whitepaper
Uae absence whitepaper
 
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
 
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
 
All payroll elements with eligibility Oracle Fusion Cloud
All payroll elements with eligibility Oracle Fusion CloudAll payroll elements with eligibility Oracle Fusion Cloud
All payroll elements with eligibility Oracle Fusion Cloud
 
Oracle HRMS Payroll Table Overview
Oracle HRMS Payroll Table OverviewOracle HRMS Payroll Table Overview
Oracle HRMS Payroll Table Overview
 
Bi email-alert-notification - Fusion Alert
Bi email-alert-notification - Fusion AlertBi email-alert-notification - Fusion Alert
Bi email-alert-notification - Fusion Alert
 
Fusion absence management explained with examples
Fusion absence management   explained with examplesFusion absence management   explained with examples
Fusion absence management explained with examples
 
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
 
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
 
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 EBS HRMS SETUP
Oracle EBS HRMS SETUPOracle EBS HRMS SETUP
Oracle EBS HRMS SETUP
 
Oracle HRMS Proration
Oracle HRMS ProrationOracle HRMS Proration
Oracle HRMS Proration
 

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

Sql basics
Sql basicsSql basics
Sql basicsKumar
 
Data Warehousing with Python
Data Warehousing with PythonData Warehousing with Python
Data Warehousing with PythonMartin 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
 
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 1Massimo Cenci
 
Disaster and RecoveryBusiness Impact AnalysisSystem .docx
Disaster and RecoveryBusiness Impact AnalysisSystem .docxDisaster and RecoveryBusiness Impact AnalysisSystem .docx
Disaster and RecoveryBusiness Impact AnalysisSystem .docxduketjoy27252
 
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.pdfSuriaRao2
 
RELATIONAL DATABASES & Database designCIS276EmployeeNumFir.docx
RELATIONAL DATABASES & Database designCIS276EmployeeNumFir.docxRELATIONAL DATABASES & Database designCIS276EmployeeNumFir.docx
RELATIONAL DATABASES & Database designCIS276EmployeeNumFir.docxsodhi3
 
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 12cGuatemala 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 companiesMartin Loetzsch
 
Constraint Optimization
Constraint OptimizationConstraint Optimization
Constraint OptimizationOren 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 PresentationEmbarcadero 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 ADataconomy Media
 

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

Sql basics
Sql basicsSql basics
Sql basics
 
Sql General
Sql General Sql General
Sql General
 
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

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.pdfFeras 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.docxFeras Ahmad
 
Building-Materials
Building-MaterialsBuilding-Materials
Building-MaterialsFeras 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 auditFeras Ahmad
 
Oracle HCM Presentation 2020
Oracle HCM Presentation 2020Oracle HCM Presentation 2020
Oracle HCM Presentation 2020Feras 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 HRMSFeras 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 increaseFeras Ahmad
 
Financial reporting compliance cloud service presentation
Financial reporting compliance cloud service presentationFinancial reporting compliance cloud service presentation
Financial reporting compliance cloud service presentationFeras Ahmad
 
Absence Work flow query
Absence Work flow queryAbsence Work flow query
Absence Work flow queryFeras 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 manualFeras 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 manualFeras Ahmad
 
Oracle Fusion HCM Presentation
Oracle Fusion HCM PresentationOracle Fusion HCM Presentation
Oracle Fusion HCM PresentationFeras Ahmad
 
Oracle HRMS Accrual plan Setup
Oracle HRMS Accrual plan SetupOracle HRMS Accrual plan Setup
Oracle HRMS Accrual plan SetupFeras Ahmad
 
Oracle Fusion HCM Presentation
Oracle Fusion HCM PresentationOracle Fusion HCM Presentation
Oracle Fusion HCM PresentationFeras 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 implementationFeras Ahmad
 

More from Feras Ahmad (16)

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
 
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
 
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 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 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

My INSURER PTE LTD - Insurtech Innovation Award 2024
My INSURER PTE LTD - Insurtech Innovation Award 2024My INSURER PTE LTD - Insurtech Innovation Award 2024
My INSURER PTE LTD - Insurtech Innovation Award 2024The Digital Insurer
 
APIForce Zurich 5 April Automation LPDG
APIForce Zurich 5 April  Automation LPDGAPIForce Zurich 5 April  Automation LPDG
APIForce Zurich 5 April Automation LPDGMarianaLemus7
 
SIEMENS: RAPUNZEL – A Tale About Knowledge Graph
SIEMENS: RAPUNZEL – A Tale About Knowledge GraphSIEMENS: RAPUNZEL – A Tale About Knowledge Graph
SIEMENS: RAPUNZEL – A Tale About Knowledge GraphNeo4j
 
Pigging Solutions in Pet Food Manufacturing
Pigging Solutions in Pet Food ManufacturingPigging Solutions in Pet Food Manufacturing
Pigging Solutions in Pet Food ManufacturingPigging Solutions
 
Designing IA for AI - Information Architecture Conference 2024
Designing IA for AI - Information Architecture Conference 2024Designing IA for AI - Information Architecture Conference 2024
Designing IA for AI - Information Architecture Conference 2024Enterprise Knowledge
 
Streamlining Python Development: A Guide to a Modern Project Setup
Streamlining Python Development: A Guide to a Modern Project SetupStreamlining Python Development: A Guide to a Modern Project Setup
Streamlining Python Development: A Guide to a Modern Project SetupFlorian Wilhelm
 
Are Multi-Cloud and Serverless Good or Bad?
Are Multi-Cloud and Serverless Good or Bad?Are Multi-Cloud and Serverless Good or Bad?
Are Multi-Cloud and Serverless Good or Bad?Mattias Andersson
 
"Federated learning: out of reach no matter how close",Oleksandr Lapshyn
"Federated learning: out of reach no matter how close",Oleksandr Lapshyn"Federated learning: out of reach no matter how close",Oleksandr Lapshyn
"Federated learning: out of reach no matter how close",Oleksandr LapshynFwdays
 
Advanced Test Driven-Development @ php[tek] 2024
Advanced Test Driven-Development @ php[tek] 2024Advanced Test Driven-Development @ php[tek] 2024
Advanced Test Driven-Development @ php[tek] 2024Scott Keck-Warren
 
Connect Wave/ connectwave Pitch Deck Presentation
Connect Wave/ connectwave Pitch Deck PresentationConnect Wave/ connectwave Pitch Deck Presentation
Connect Wave/ connectwave Pitch Deck PresentationSlibray Presentation
 
Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...
Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...
Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...shyamraj55
 
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmatics
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmaticsKotlin Multiplatform & Compose Multiplatform - Starter kit for pragmatics
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmaticscarlostorres15106
 
"LLMs for Python Engineers: Advanced Data Analysis and Semantic Kernel",Oleks...
"LLMs for Python Engineers: Advanced Data Analysis and Semantic Kernel",Oleks..."LLMs for Python Engineers: Advanced Data Analysis and Semantic Kernel",Oleks...
"LLMs for Python Engineers: Advanced Data Analysis and Semantic Kernel",Oleks...Fwdays
 
Bluetooth Controlled Car with Arduino.pdf
Bluetooth Controlled Car with Arduino.pdfBluetooth Controlled Car with Arduino.pdf
Bluetooth Controlled Car with Arduino.pdfngoud9212
 
New from BookNet Canada for 2024: BNC BiblioShare - Tech Forum 2024
New from BookNet Canada for 2024: BNC BiblioShare - Tech Forum 2024New from BookNet Canada for 2024: BNC BiblioShare - Tech Forum 2024
New from BookNet Canada for 2024: BNC BiblioShare - Tech Forum 2024BookNet Canada
 
Scanning the Internet for External Cloud Exposures via SSL Certs
Scanning the Internet for External Cloud Exposures via SSL CertsScanning the Internet for External Cloud Exposures via SSL Certs
Scanning the Internet for External Cloud Exposures via SSL CertsRizwan Syed
 
Understanding the Laravel MVC Architecture
Understanding the Laravel MVC ArchitectureUnderstanding the Laravel MVC Architecture
Understanding the Laravel MVC ArchitecturePixlogix Infotech
 

Recently uploaded (20)

My INSURER PTE LTD - Insurtech Innovation Award 2024
My INSURER PTE LTD - Insurtech Innovation Award 2024My INSURER PTE LTD - Insurtech Innovation Award 2024
My INSURER PTE LTD - Insurtech Innovation Award 2024
 
APIForce Zurich 5 April Automation LPDG
APIForce Zurich 5 April  Automation LPDGAPIForce Zurich 5 April  Automation LPDG
APIForce Zurich 5 April Automation LPDG
 
SIEMENS: RAPUNZEL – A Tale About Knowledge Graph
SIEMENS: RAPUNZEL – A Tale About Knowledge GraphSIEMENS: RAPUNZEL – A Tale About Knowledge Graph
SIEMENS: RAPUNZEL – A Tale About Knowledge Graph
 
Pigging Solutions in Pet Food Manufacturing
Pigging Solutions in Pet Food ManufacturingPigging Solutions in Pet Food Manufacturing
Pigging Solutions in Pet Food Manufacturing
 
Designing IA for AI - Information Architecture Conference 2024
Designing IA for AI - Information Architecture Conference 2024Designing IA for AI - Information Architecture Conference 2024
Designing IA for AI - Information Architecture Conference 2024
 
Streamlining Python Development: A Guide to a Modern Project Setup
Streamlining Python Development: A Guide to a Modern Project SetupStreamlining Python Development: A Guide to a Modern Project Setup
Streamlining Python Development: A Guide to a Modern Project Setup
 
The transition to renewables in India.pdf
The transition to renewables in India.pdfThe transition to renewables in India.pdf
The transition to renewables in India.pdf
 
Are Multi-Cloud and Serverless Good or Bad?
Are Multi-Cloud and Serverless Good or Bad?Are Multi-Cloud and Serverless Good or Bad?
Are Multi-Cloud and Serverless Good or Bad?
 
"Federated learning: out of reach no matter how close",Oleksandr Lapshyn
"Federated learning: out of reach no matter how close",Oleksandr Lapshyn"Federated learning: out of reach no matter how close",Oleksandr Lapshyn
"Federated learning: out of reach no matter how close",Oleksandr Lapshyn
 
Advanced Test Driven-Development @ php[tek] 2024
Advanced Test Driven-Development @ php[tek] 2024Advanced Test Driven-Development @ php[tek] 2024
Advanced Test Driven-Development @ php[tek] 2024
 
Connect Wave/ connectwave Pitch Deck Presentation
Connect Wave/ connectwave Pitch Deck PresentationConnect Wave/ connectwave Pitch Deck Presentation
Connect Wave/ connectwave Pitch Deck Presentation
 
Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...
Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...
Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...
 
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmatics
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmaticsKotlin Multiplatform & Compose Multiplatform - Starter kit for pragmatics
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmatics
 
"LLMs for Python Engineers: Advanced Data Analysis and Semantic Kernel",Oleks...
"LLMs for Python Engineers: Advanced Data Analysis and Semantic Kernel",Oleks..."LLMs for Python Engineers: Advanced Data Analysis and Semantic Kernel",Oleks...
"LLMs for Python Engineers: Advanced Data Analysis and Semantic Kernel",Oleks...
 
Hot Sexy call girls in Panjabi Bagh 🔝 9953056974 🔝 Delhi escort Service
Hot Sexy call girls in Panjabi Bagh 🔝 9953056974 🔝 Delhi escort ServiceHot Sexy call girls in Panjabi Bagh 🔝 9953056974 🔝 Delhi escort Service
Hot Sexy call girls in Panjabi Bagh 🔝 9953056974 🔝 Delhi escort Service
 
Bluetooth Controlled Car with Arduino.pdf
Bluetooth Controlled Car with Arduino.pdfBluetooth Controlled Car with Arduino.pdf
Bluetooth Controlled Car with Arduino.pdf
 
New from BookNet Canada for 2024: BNC BiblioShare - Tech Forum 2024
New from BookNet Canada for 2024: BNC BiblioShare - Tech Forum 2024New from BookNet Canada for 2024: BNC BiblioShare - Tech Forum 2024
New from BookNet Canada for 2024: BNC BiblioShare - Tech Forum 2024
 
Scanning the Internet for External Cloud Exposures via SSL Certs
Scanning the Internet for External Cloud Exposures via SSL CertsScanning the Internet for External Cloud Exposures via SSL Certs
Scanning the Internet for External Cloud Exposures via SSL Certs
 
Understanding the Laravel MVC Architecture
Understanding the Laravel MVC ArchitectureUnderstanding the Laravel MVC Architecture
Understanding the Laravel MVC Architecture
 
E-Vehicle_Hacking_by_Parul Sharma_null_owasp.pptx
E-Vehicle_Hacking_by_Parul Sharma_null_owasp.pptxE-Vehicle_Hacking_by_Parul Sharma_null_owasp.pptx
E-Vehicle_Hacking_by_Parul Sharma_null_owasp.pptx
 

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.