DBA Data[Home] [Help]

APPS.PER_SALADMIN_UTILITY dependencies on PAY_ALL_PAYROLLS_F

Line 532: from pay_all_payrolls_f prl

528: PET.EFFECTIVE_END_DATE;
529:
530: CURSOR payroll is
531: select tpt.number_per_fiscal_year
532: from pay_all_payrolls_f prl
533: , per_all_assignments_f paf
534: , per_time_period_types tpt
535: where paf.assignment_id=p_assignment_id
536: and p_effective_date between paf.effective_start_date

Line 651: from pay_all_payrolls_f pap

647: where lookup_type = p_lookup_type
648: and lookup_code = p_lookup_code;
649: cursor csr_table is
650: select description
651: from pay_all_payrolls_f pap
652: ,per_all_assignments_f paa
653: ,hr_lookups
654: where pap.payroll_id = paa.payroll_id
655: and paa.assignment_id = p_assignment_id

Line 662: ,pay_all_payrolls_f pap

658: and lookup_type = 'PROC_PERIOD_TYPE';
659: cursor csr_period_table is
660: select nvl(DESCRIPTION,ptt.period_type)
661: from PER_TIME_PERIOD_TYPES ptt
662: ,pay_all_payrolls_f pap
663: ,per_all_assignments_f paa
664: where pap.payroll_id = paa.payroll_id
665: and paa.assignment_id = p_assignment_id
666: and p_effective_date between paa.effective_start_date and paa.effective_end_date

Line 690: l_dummy pay_all_payrolls_f.payroll_name%type;

686:
687: FUNCTION get_pay_annualization_factor (p_assignment_id IN NUMBER, p_effective_date IN DATE, p_annualization_factor IN NUMBER, p_pay_basis IN VARCHAR2)
688: return NUMBER
689: is
690: l_dummy pay_all_payrolls_f.payroll_name%type;
691: l_annualization_factor NUMBER(20);
692: Begin
693: l_annualization_factor := p_annualization_factor;
694: if(p_pay_basis ='PERIOD' and l_annualization_factor is null) then

Line 1054: from pay_all_payrolls_f prl ,

1050: AND p_effective_date BETWEEN PET.EFFECTIVE_START_DATE AND PET.EFFECTIVE_END_DATE;
1051: --
1052: Cursor csr_payroll_freq is
1053: select tpt.number_per_fiscal_year
1054: from pay_all_payrolls_f prl ,
1055: per_time_period_types tpt
1056: where prl.payroll_id = p_curr_payroll_id
1057: and p_effective_date between prl.effective_start_date and prl.effective_end_date
1058: and prl.period_type = tpt.period_type(+);