DBA Data[Home] [Help]

APPS.PAY_NO_EERR_CONTINUOUS SQL Statements

The following lines contain the word 'select', 'insert', 'update' or 'delete':

Line: 19

    update_type          pay_datetracked_events.update_type%TYPE  ,
    surrogate_key        pay_process_events.surrogate_key%type    ,
    column_name          pay_event_updates.column_name%TYPE       ,
    effective_date       date,
    creation_date        date,
    old_value            varchar2(2000),
    new_value            varchar2(2000),
    change_values        varchar2(2000),
    proration_type       varchar2(10),
    change_mode          pay_process_events.change_type%type,--'DATE_PROCESSED' etc
    element_entry_id     pay_element_entries_f.element_entry_id%type,
    next_ee              number    ,
    assignment_id        per_all_Assignments_f.assignment_id%type
);
Line: 140

         select pay_no_eerr_continuous.get_parameter (
                   legislative_parameters,
                   'LEGAL_EMPLOYER'
                ),
                fnd_date.canonical_to_date (
                   pay_no_eerr_continuous.get_parameter (
                      legislative_parameters,
                      'REPORT_START_DATE'
                   )
                ),
                fnd_date.canonical_to_date (
                   pay_no_eerr_continuous.get_parameter (
                      legislative_parameters,
                      'REPORT_END_DATE'
                   )
                ),
                pay_no_eerr_continuous.get_parameter (
                   legislative_parameters,
                   'ARCHIVE'
                ),
                /*  pay_no_eerr_CONTINUOUS.get_parameter (
      legislative_parameters,
      'REPORT_MODE'
   ),*/
                effective_date, business_group_id
           from pay_payroll_actions
          where payroll_action_id = p_payroll_action_id;
Line: 202

         select org.organization_id legal_employer_id,
                org.name
                      legal_employer_name, org.location_id,
                hoi1.org_information1
                      legal_employer_org_no
           from hr_all_organization_units org,
                hr_organization_information hoi1
          where org.organization_id = p_legal_employer_id
            and hoi1.organization_id(+) = org.organization_id
            and hoi1.org_information_context(+) = 'NO_LEGAL_EMPLOYER_DETAILS';
Line: 218

         select hoi_le.org_information1 local_unit_id,
                hou_lu.name
                      local_unit_name,
                hoi_lu.org_information1
                      local_unit_org_no, hou_lu.location_id
           from hr_all_organization_units hou_le,
                hr_organization_information hoi_le,
                hr_all_organization_units hou_lu,
                hr_organization_information hoi_lu
          where hoi_le.organization_id = hou_le.organization_id
            and hou_le.organization_id = csr_v_legal_employer_id
            and hoi_le.org_information_context = 'NO_LOCAL_UNITS'
            and hou_lu.organization_id = hoi_le.org_information1
            and hou_lu.organization_id = hoi_lu.organization_id
            and hoi_lu.org_information_context = 'NO_LOCAL_UNIT_DETAILS';
Line: 241

         'SELECT DISTINCT person_id
                    FROM  per_people_f ppf
                    ,pay_payroll_actions ppa
                    WHERE ppa.payroll_action_id = :payroll_action_id
                    AND   ppa.business_group_id = ppf.business_group_id
                    ORDER BY ppf.person_id';
Line: 328

           select nvl(fnd_number.canonical_to_number (global_value),0)
             from ff_globals_f
            where legislation_code = 'NO' and global_name = p_global_name
              and p_effective_date between effective_start_date and effective_end_date ;
Line: 337

         select hoi_le.org_information1 local_unit_id,
                hou_lu.name
                      local_unit_name,
                hoi_lu.org_information1
                      local_unit_org_no, hou_lu.location_id
           from hr_all_organization_units hou_le,
                hr_organization_information hoi_le,
                hr_all_organization_units hou_lu,
                hr_organization_information hoi_lu
          where hoi_le.organization_id = hou_le.organization_id
            and hou_le.organization_id = csr_v_legal_employer_id
            and hoi_le.org_information_context = 'NO_LOCAL_UNITS'
            and hou_lu.organization_id = hoi_le.org_information1
            and hou_lu.organization_id = hoi_lu.organization_id
            and hoi_lu.org_information_context = 'NO_LOCAL_UNIT_DETAILS';
Line: 362

         select papf.person_id person_id, paaf.assignment_id,
                papf.effective_start_date, null effective_end_date, null emp_end_date,
                national_identifier, full_name, employee_number, normal_hours,
                hourly_salaried_code, hsc.segment3 position_code, frequency
           from per_all_people_f papf,
                per_all_assignments_f paaf,
                hr_soft_coding_keyflex hsc,
                per_assignment_status_types past
          where papf.person_id between p_start_person and p_end_person
            and paaf.person_id = papf.person_id
            and paaf.business_group_id = papf.business_group_id
           -- and paaf.primary_flag = 'Y'
            and hsc.soft_coding_keyflex_id = paaf.soft_coding_keyflex_id
            and hsc.segment2 = to_char (p_local_unit)
            and paaf.assignment_status_type_id =
                                               past.assignment_status_type_id
            and past.PER_SYSTEM_STATUS in ('ACTIVE_ASSIGN', 'SUSP_ASSIGN')
	    and paaf.assignment_id = (select min(assignment_id)
			              from  per_all_assignments_f asg,hr_soft_coding_keyflex hsck
				      where person_id = papf.person_id
				      and   hsck.soft_coding_keyflex_id = asg.soft_coding_keyflex_id
				      and   hsck.segment2 = to_char (p_local_unit))
            and p_end_date between paaf.effective_start_date
                               and paaf.effective_end_date
            and p_end_date between papf.effective_start_date
                               and papf.effective_end_date
            and not exists (select actual_termination_date
                          from per_periods_of_service
                         where actual_termination_date =
                                                      paaf.effective_end_date
                           and person_id  = papf.person_id
                           and actual_termination_date = nvl(final_process_date,actual_termination_date )
			    and p_end_date >= actual_termination_date
                    )
         union
         select papf.person_id person_id, paaf.assignment_id,
                papf.effective_start_date, paaf.effective_end_date, papf.effective_end_date emp_end_date,
                national_identifier, full_name, employee_number, normal_hours,
                hourly_salaried_code, hsc.segment3 position_code, frequency
           from per_all_people_f papf,
                per_all_assignments_f paaf,
                hr_soft_coding_keyflex hsc,
                per_assignment_status_types past
          where paaf.person_id = papf.person_id
	  and   papf.person_id between p_start_person and p_end_person
            and paaf.business_group_id = papf.business_group_id
            --and paaf.primary_flag = 'Y'
            and hsc.soft_coding_keyflex_id = paaf.soft_coding_keyflex_id
            and hsc.segment2 = to_char (p_local_unit)
            and paaf.assignment_status_type_id =
                                               past.assignment_status_type_id
            and paaf.assignment_id = (select min(assignment_id)
			              from  per_all_assignments_f asg,hr_soft_coding_keyflex hsck
				      where person_id = papf.person_id
				      and   hsck.soft_coding_keyflex_id = asg.soft_coding_keyflex_id
				      and   hsck.segment2 = to_char (p_local_unit))
            --and past.PER_SYSTEM_STATUS = 'TERM_ASSIGN'
            and (( papf.effective_end_date <= p_end_date
            --and paaf.effective_end_date between p_start_date and p_end_date
           and exists (select actual_termination_date
                          from per_periods_of_service
                         where actual_termination_date =
                                                      paaf.effective_end_date
                           and person_id  = papf.person_id
                           and actual_termination_date = nvl(final_process_date,actual_termination_date )))
		or (paaf.effective_start_date <= p_end_date
		   and past.PER_SYSTEM_STATUS = 'TERM_ASSIGN'
		     and papf.effective_end_date <= p_end_date));
Line: 437

         select min (effective_start_date)
           from per_all_assignments_f paaf, per_assignment_status_types past
          where assignment_id = p_assignment_id
            and paaf.assignment_status_type_id =
                                               past.assignment_status_type_id
            and past.PER_SYSTEM_STATUS in ('ACTIVE_ASSIGN', 'SUSP_ASSIGN');
Line: 451

         select paa.date_start, paa.date_end
           from per_absence_attendances paa, per_absence_attendance_types paat
          where paat.absence_attendance_type_id =
                                               paa.absence_attendance_type_id
            and paa.person_id = p_person_id
            and nvl(paa.date_end,g_end_date) - paa.date_start >= g_absence_termination_limit
            and paa.date_start between g_start_date and g_end_date
            and paat.absence_category not in
                              ('S', 'PTM', 'PTS', 'PTP', 'PTA', 'VAC', 'MRE'); /* 5520062 5648385 */
Line: 465

         select paa.date_start, paa.date_end
           from per_absence_attendances paa, per_absence_attendance_types paat
          where paat.absence_attendance_type_id =
                                               paa.absence_attendance_type_id
            and paa.person_id = p_person_id
            and paa.date_end - paa.date_start >= g_absence_termination_limit
            and paa.date_end between p_prev_last_date and g_end_date
            and paat.absence_category not in
                              ('S', 'PTM', 'PTS', 'PTP', 'PTA', 'VAC', 'MRE'); /* 5648385 */
Line: 481

         select event_group_id
           from pay_event_groups
          where event_group_name = p_event_group_name
            and nvl (business_group_id, p_business_group_id) =
                                                          p_business_group_id;
Line: 495

         select org_information1
           from hr_organization_information hoi, hr_soft_coding_keyflex hsc
          where org_information_context = 'NO_LOCAL_UNIT_DETAILS'
            and hsc.segment2 = organization_id
            and soft_coding_keyflex_id = p_soft_coding_keyflex_id;
Line: 510

         select segment3
           from hr_soft_coding_keyflex hsc, per_all_assignments_f paaf
          where paaf.job_id = p_job_id
            and assignment_id = p_assignment_id
            and p_effective_date between paaf.effective_start_date
                                     and paaf.effective_end_date
            and paaf.soft_coding_keyflex_id = hsc.soft_coding_keyflex_id;
Line: 524

           select PER_SYSTEM_STATUS
           from per_assignment_status_types
          where assignment_status_type_id = p_assignment_status_type_id;
Line: 537

         select peef.element_entry_id
           from pay_element_entries_f peef, pay_element_types_f pet
          where pet.element_name = c_element_name
            and pet.legislation_code = 'NO'
            and peef.assignment_id = c_assignment_id
            and peef.element_type_id = pet.element_type_id
            and c_eff_date between peef.effective_start_date
                               and peef.effective_end_date
            and c_eff_date between pet.effective_start_date
                               and pet.effective_end_date;
Line: 554

         select nvl (segment2, '0')
           from hr_soft_coding_keyflex
          where soft_coding_keyflex_id = (p_soft_coding_keyflex_id);
Line: 564

         select nvl(segment3, 0)
           from hr_soft_coding_keyflex
          where soft_coding_keyflex_id = (p_soft_coding_keyflex_id);
Line: 575

         select fnd_date.canonical_to_date(segment24)
	       /* fnd_date.canonical_to_date(nvl(segment24,'0001/01/01'))*/
           from hr_soft_coding_keyflex
          where soft_coding_keyflex_id = (p_soft_coding_keyflex_id);
Line: 589

         select peef.element_entry_id
           from pay_element_entries_f peef, pay_element_types_f pet
          where pet.element_name = c_element_name
            and pet.legislation_code = 'NO'
            and peef.assignment_id = c_assignment_id
            and peef.element_type_id = pet.element_type_id
            and c_eff_date between peef.effective_start_date
                               and peef.effective_end_date
            and c_eff_date between pet.effective_start_date
                               and pet.effective_end_date;
Line: 608

         select peef.element_entry_id
           from pay_element_entries_f peef, pay_element_types_f pet
          where pet.element_name = p_element_name
            and pet.legislation_code = 'NO'
            and peef.assignment_id = p_assignment_id
            and peef.element_type_id = pet.element_type_id
            and peef.effective_start_date between p_start_date
                                              and p_end_date ;
Line: 624

         select fnd_date.canonical_to_date (peev.screen_entry_value)
           from pay_element_types_f pet,
                pay_input_values_f piv,
                pay_element_entries_f peef,
                pay_element_entry_values_f peev
          where pet.element_name = c_element_name
            and pet.element_type_id = piv.element_type_id
            and piv.name = c_input_val_name
            and pet.legislation_code = 'NO'
            and piv.legislation_code = 'NO'
            and peef.assignment_id = c_assignment_id
            and peef.element_entry_id = peev.element_entry_id
            and peef.element_type_id = pet.element_type_id
            and peev.input_value_id = piv.input_value_id
            and c_eff_date between piv.effective_start_date
                               and piv.effective_end_date
            and c_eff_date between pet.effective_start_date
                               and pet.effective_end_date
            and c_eff_date between peev.effective_start_date
                               and peev.effective_end_date
            and c_eff_date between peef.effective_start_date
                               and peef.effective_end_date;
Line: 653

         select dated_table_id
           from pay_dated_tables
          where table_name = c_table_name;
Line: 665

         select effective_start_date,
                fnd_number.canonical_to_number (screen_entry_value) entry_value
           from pay_element_entry_values_f peev
          where element_entry_id = c_element_entry_id
            and effective_start_date between c_eff_start_date and c_eff_end_date
            and screen_entry_value is not null
            and effective_start_date =
                   (select max (effective_start_date)
                      from pay_element_entry_values_f peevf
                     where element_entry_id = c_element_entry_id
                       and effective_start_date between c_eff_start_date
                                                    and c_eff_end_date
                       --  and peevf.effective_start_date = peev.effective_start_date
                       and to_char (peev.effective_start_date, 'MM') =
                                    to_char (peevf.effective_start_date, 'MM'));
Line: 686

         select fnd_number.canonical_to_number (screen_entry_value) entry_value
           from pay_element_entry_values_f
          where element_entry_id = c_element_entry_id
            and c_effective_date between effective_start_date
                                     and effective_end_date
            and screen_entry_value is not null;
Line: 698

      select normal_hours , effective_start_date
        from per_all_assignments_f
       where assignment_id = p_assignment_id
	  and p_effective_date - 1  between effective_start_date and  effective_end_date;
Line: 711

	   select assignment_id
           from per_all_assignments_f paaf ,hr_soft_coding_keyflex hsck
           where person_id = p_person_id
	   and assignment_id <> p_assignment_id
           and  hsck.segment2 = to_char (p_local_unit)
	   and  hsck.soft_coding_keyflex_id = paaf.soft_coding_keyflex_id;
Line: 723

       select normal_hours,
                hourly_salaried_code, hsc.segment3 position_code, frequency
	from per_all_assignments_f paaf,  hr_soft_coding_keyflex hsc
	where paaf.assignment_id = p_assignment_id
	and   hsc.segment2 = to_char (p_local_unit)
	and   hsc.soft_coding_keyflex_id = paaf.soft_coding_keyflex_id
	and   p_effective_date between  paaf.effective_start_date and paaf.effective_End_date;*/
Line: 735

      select normal_hours,
                hourly_salaried_code, hsc.segment3 position_code, frequency
	from per_all_assignments_f paaf,  hr_soft_coding_keyflex hsc
	where paaf.assignment_id = p_assignment_id
	--and   hsc.segment2 = to_char (p_local_unit)
	and   hsc.soft_coding_keyflex_id = paaf.soft_coding_keyflex_id
	and   p_effective_date between  paaf.effective_start_date and paaf.effective_End_date;
Line: 748

         select normal_hours, frequency
           from per_all_assignments_f
          where assignment_id = p_assignment_id
            and p_effective_date between effective_start_date and effective_end_date;
Line: 756

         select org_information1
           from per_all_assignments_f paaf, hr_soft_coding_keyflex hsc,hr_organization_information hoi
          where paaf.assignment_id = p_assignment_id
            and p_effective_date between paaf.effective_start_date and paaf.effective_end_date
            and hsc.soft_coding_keyflex_id = paaf.soft_coding_keyflex_id
            and hoi.org_information_context = 'NO_LOCAL_UNIT_DETAILS'
            and hoi.organization_id = hsc.segment2;
Line: 767

	   select segment3
           from hr_soft_coding_keyflex hsc, per_all_assignments_f paaf
          where paaf.assignment_id = p_assignment_id
            and p_effective_date between paaf.effective_start_date
                                     and paaf.effective_end_date
            and paaf.soft_coding_keyflex_id = hsc.soft_coding_keyflex_id;
Line: 832

      l_last_update_date             date;
Line: 908

      p_copy_to (p_to).update_type := p_copy_from (p_from).update_type;
Line: 1170

                       select pay_assignment_actions_s.nextval
                         into l_assact_id
                         from dual;
Line: 1322

                       select pay_assignment_actions_s.nextval
                         into l_assact_id
                         from dual;
Line: 1531

                           l_detail_tab.delete;
Line: 1533

                           l_detail_tab.delete;
Line: 1601

                     select pay_assignment_actions_s.nextval
                       into l_assact_id
                       from dual;
Line: 1730

                     l_detailed_output1.delete;
Line: 1732

                     l_detailed_output1.delete;
Line: 1753

                     l_detailed_output2.delete;
Line: 1755

                     l_detailed_output2.delete;
Line: 1772

	         l_detailed_output(merge_cnt).update_type       := l_detailed_output1(i).update_type ;
Line: 1796

	         l_detailed_output(merge_cnt).update_type       := l_detailed_output2(i).update_type ;
Line: 1828

			     l_detailed_output3.delete;
Line: 1830

			     l_detailed_output3.delete;
Line: 1850

			     l_detailed_output4.delete;
Line: 1852

			     l_detailed_output4.delete;
Line: 1859

			OR (l_detailed_output3(i).dated_table_id = l_table3 and l_detailed_output3(i).update_type  = 'I' )then
			 l_detailed_output(merge_cnt).effective_date    := l_detailed_output3(i).effective_date;
Line: 1869

			 l_detailed_output(merge_cnt).update_type       := l_detailed_output3(i).update_type ;
Line: 1888

			   if l_detailed_output4(i).column_name = 'NORMAL_HOURS' OR l_detailed_output4(i).column_name = 'ASSIGNMENT_STATUS_TYPE_ID' OR (l_detailed_output4(i).dated_table_id = l_table3 and l_detailed_output4(i).update_type  = 'I' )then
				 l_detailed_output(merge_cnt).effective_date    := l_detailed_output4(i).effective_date;
Line: 1898

				 l_detailed_output(merge_cnt).update_type       := l_detailed_output4(i).update_type ;
Line: 1936

		     if     l_detailed_output(cnt).dated_table_id = l_table3 and l_detailed_output (cnt).update_type  = 'I' then

			    rl_assignment_details.normal_hours := 0;
Line: 2643

                     select pay_assignment_actions_s.nextval
                       into l_assact_id
                       from dual;
Line: 2849

         select frequency
           from per_all_assignments_f
          where assignment_id = p_assignment_id
            and p_effective_date between effective_start_date
                                     and effective_end_date;
Line: 2861

         select normal_hours, frequency
           from per_all_assignments_f paaf, hr_soft_coding_keyflex hsc
          where paaf.person_id = p_person_id
            and paaf.assignment_id <> p_assignment_id
            and paaf.normal_hours is not null
            and hsc.soft_coding_keyflex_id = paaf.soft_coding_keyflex_id
            and hsc.segment2 = to_char (p_local_unit)
            and hourly_salaried_code = 'S'
            and p_effective_date between paaf.effective_start_date
                                     and paaf.effective_end_date;
Line: 2910

      p_copy_to (p_to).update_type := p_copy_from (p_from).update_type;
Line: 2973

         select action_information1, action_information2 business_group_id,
                action_information3
                      legal_employer_id,
                action_information4
                      legal_employer_name,
                action_information5
                      legal_employer_org_no,
                action_information6 local_unit_id,
                action_information7
                      local_unit_name,
                action_information8 local_unit_org_no, effective_date
           from pay_action_information pai
          where action_context_type = 'PA'
            and action_context_id = p_payroll_action_id
            and action_information_category = 'EMEA REPORT INFORMATION'
            and action_information1 = 'PYNOEERCNT';
Line: 3000

         select action_information2, action_information3, action_information4,
                action_information5, action_information6, action_information7,
                action_information8, action_information9, action_information10,
                fnd_date.canonical_to_date(action_information11) action_information11,
		fnd_number.canonical_to_number(action_information12) action_information12,
                fnd_date.canonical_to_date(action_information13) action_information13,
		fnd_date.canonical_to_date(action_information14) action_information14,
                action_information15,
		fnd_date.canonical_to_date(action_information16) action_information16,
                action_information17,
		fnd_date.canonical_to_date(action_information18) action_information18,
                fnd_date.canonical_to_date(action_information19) action_information19,
		fnd_date.canonical_to_date(action_information20) action_information20,
                action_information21,
		fnd_date.canonical_to_date(action_information22) action_information22,
		action_information23
           from pay_payroll_actions paa,
                pay_assignment_actions assg,
                pay_action_information pai
          where paa.payroll_action_id = p_payroll_action_id
            and assg.payroll_action_id = paa.payroll_action_id
            and pai.action_context_id = assg.assignment_action_id
            and pai.action_context_type = 'AAP'
            and pai.action_information_category = 'EMEA REPORT INFORMATION'
            and pai.action_information1 = 'PYNOEERCNT'
            and pai.action_information3 = p_legal_employer
            and pai.action_information5 = p_local_unit_id
	     order by action_context_id;
Line: 3035

select count(*)
from pay_payroll_actions paa,
                pay_assignment_actions assg,
                pay_action_information pai
          where paa.payroll_action_id = p_payroll_action_id
            and assg.payroll_action_id = paa.payroll_action_id
            and pai.action_context_id = assg.assignment_action_id
            and pai.action_context_type = 'AAP'
            and pai.action_information_category = 'EMEA REPORT INFORMATION'
            and pai.action_information1 = 'PYNOEERCNT'
            and pai.action_information3 = p_legal_employer
            and pai.action_information5 = p_local_unit_id;
Line: 3063

            select payroll_action_id
              into l_payroll_action_id
              from pay_payroll_actions ppa,
                   fnd_conc_req_summary_v fcrs,
                   fnd_conc_req_summary_v fcrs1
             where fcrs.request_id = fnd_global.conc_request_id
               and fcrs.priority_request_id = fcrs1.priority_request_id
               and ppa.request_id between fcrs1.request_id and fcrs.request_id
               and ppa.request_id = fcrs1.request_id;