Introduction

This Post is about to Payroll Employer Costs Extract in Oracle EBS R12.

 

Script to Payroll Employer Costs Extract.

SELECT SUM(peevf.screen_entry_value)

FROM pay_element_types_f petf

,pay_element_entry_values_f peevf

,pay_element_entries_f peef

,per_all_assignments_f paaf

,pay_input_values_f pivf

WHERE paaf.assignment_id = p_assignment_id

AND p_effective_date between paaf.effective_start_date and paaf.effective_end_date

AND peef.assignment_id = paaf.assignment_id

AND peef.effective_start_date

between trunc(p_effective_date,’YY’) and p_effective_date

AND peef.effective_end_date is not null

AND peevf.element_entry_id = peef.element_entry_id

AND peevf.effective_start_date = peef.effective_start_date

AND peevf.input_value_id = pivf.input_value_id

AND pivf.name = ‘Pay Value’

AND peevf.screen_entry_value IS NOT NULL

AND peevf.effective_start_date BETWEEN pivf.effective_start_date AND pivf.effective_end_date

AND petf.element_type_id = pivf.element_type_id

AND petf.element_name = ‘Total Month Employer Cost’

AND pivf.effective_start_date BETWEEN petf.effective_start_date AND petf.effective_end_date;

 

What we expect in the script.

This script helps us to comprehend how Payroll Employer Costs Extract Couple of tables which is being used are – pay_element_types_f,pay_element_entry_values_f ,pay_element_entries_f,per_all_assignments_f,pay_input_values_f pivf etc.

 

Summary

This Post described the script Payroll Employer Costs Extract in Oracle EBS R12.

 

Got any queries?

Do drop a note by writing us at doyen.ebiz@gmail.com or use the comment section below to ask your questions.

 

 

 

Recent Posts

Start typing and press Enter to search