DBA Data[Home] [Help]

APPS.PAY_CFT_SHD SQL Statements

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

Line: 64

    select
	emp_fed_tax_inf_id,
	effective_start_date,
	effective_end_date,
	legislation_code,
	assignment_id,
	business_group_id,
	employment_province,
	tax_credit_amount,
	claim_code,
	basic_exemption_flag,
	additional_tax,
	annual_dedn,
	total_expense_by_commission,
	total_remnrtn_by_commission,
	prescribed_zone_dedn_amt,
	other_fedtax_credits,
	cpp_qpp_exempt_flag,
	fed_exempt_flag,
	ei_exempt_flag,
	tax_calc_method,
	fed_override_amount,
	fed_override_rate,
	ca_tax_information_category,
	ca_tax_information1,
	ca_tax_information2,
	ca_tax_information3,
	ca_tax_information4,
	ca_tax_information5,
	ca_tax_information6,
	ca_tax_information7,
	ca_tax_information8,
	ca_tax_information9,
	ca_tax_information10,
	ca_tax_information11,
	ca_tax_information12,
	ca_tax_information13,
	ca_tax_information14,
	ca_tax_information15,
	ca_tax_information16,
	ca_tax_information17,
	ca_tax_information18,
	ca_tax_information19,
	ca_tax_information20,
	ca_tax_information21,
	ca_tax_information22,
	ca_tax_information23,
	ca_tax_information24,
	ca_tax_information25,
	ca_tax_information26,
	ca_tax_information27,
	ca_tax_information28,
	ca_tax_information29,
	ca_tax_information30,
	object_version_number,
	fed_lsf_amount
    from	pay_ca_emp_fed_tax_info_f
    where	emp_fed_tax_inf_id = p_emp_fed_tax_inf_id
    and		p_effective_date
    between	effective_start_date and effective_end_date;
Line: 185

	 p_delete		out nocopy boolean,
	 p_future_change	out nocopy boolean,
	 p_delete_next_change	out nocopy boolean) is
--
  l_proc 		varchar2(72) 	:= g_package||'find_dt_del_modes';
Line: 194

    select  t.assignment_id
    from    pay_ca_emp_fed_tax_info_f t
    where   t.emp_fed_tax_inf_id = p_base_key_value
    and     p_effective_date
    between t.effective_start_date and t.effective_end_date;
Line: 224

	 p_delete		=> p_delete,
	 p_future_change	=> p_future_change,
	 p_delete_next_change	=> p_delete_next_change);
Line: 238

	 p_update		out nocopy boolean,
	 p_update_override	out nocopy boolean,
	 p_update_change_insert	out nocopy boolean) is
--
  l_proc 	varchar2(72) := g_package||'find_dt_upd_modes';
Line: 255

	 p_update		=> p_update,
	 p_update_override	=> p_update_override,
	 p_update_change_insert	=> p_update_change_insert);
Line: 294

  update  pay_ca_emp_fed_tax_info_f t
  set	  t.effective_end_date	  = p_new_effective_end_date,
	  t.object_version_number = l_object_version_number
  where	  t.emp_fed_tax_inf_id	  = p_base_key_value
  and	  p_effective_date
  between t.effective_start_date and t.effective_end_date;
Line: 332

    select
	emp_fed_tax_inf_id,
	effective_start_date,
	effective_end_date,
	legislation_code,
	assignment_id,
	business_group_id,
	employment_province,
	tax_credit_amount,
	claim_code,
	basic_exemption_flag,
	additional_tax,
	annual_dedn,
	total_expense_by_commission,
	total_remnrtn_by_commission,
	prescribed_zone_dedn_amt,
	other_fedtax_credits,
	cpp_qpp_exempt_flag,
	fed_exempt_flag,
	ei_exempt_flag,
	tax_calc_method,
	fed_override_amount,
	fed_override_rate,
	ca_tax_information_category,
	ca_tax_information1,
	ca_tax_information2,
	ca_tax_information3,
	ca_tax_information4,
	ca_tax_information5,
	ca_tax_information6,
	ca_tax_information7,
	ca_tax_information8,
	ca_tax_information9,
	ca_tax_information10,
	ca_tax_information11,
	ca_tax_information12,
	ca_tax_information13,
	ca_tax_information14,
	ca_tax_information15,
	ca_tax_information16,
	ca_tax_information17,
	ca_tax_information18,
	ca_tax_information19,
	ca_tax_information20,
	ca_tax_information21,
	ca_tax_information22,
	ca_tax_information23,
	ca_tax_information24,
	ca_tax_information25,
	ca_tax_information26,
	ca_tax_information27,
	ca_tax_information28,
	ca_tax_information29,
	ca_tax_information30,
	object_version_number,
	fed_lsf_amount
    from    pay_ca_emp_fed_tax_info_f
    where   emp_fed_tax_inf_id         = p_emp_fed_tax_inf_id
    and	    p_effective_date
    between effective_start_date and effective_end_date
    for update nowait;
Line: 432

  If (p_datetrack_mode <> 'INSERT') then
    --
    -- We must select and lock the current row.
    --
    Open  C_Sel1;