DBA Data[Home] [Help]

APPS.PAY_CPT_SHD SQL Statements

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

Line: 64

    select
	emp_province_tax_inf_id,
	effective_start_date,
	effective_end_date,
	legislation_code,
	assignment_id,
	business_group_id,
	province_code,
	jurisdiction_code,
	tax_credit_amount,
	basic_exemption_flag,
	deduction_code,
	extra_info_not_provided,
	marriage_status,
	no_of_infirm_dependants,
	non_resident_status,
	disability_status,
	no_of_dependants,
	annual_dedn,
	total_expense_by_commission,
	total_remnrtn_by_commission,
	prescribed_zone_dedn_amt,
	additional_tax,
	prov_override_rate,
	prov_override_amount,
	prov_exempt_flag,
	pmed_exempt_flag,
	wc_exempt_flag,
	qpp_exempt_flag,
	tax_calc_method,
	other_tax_credit,
	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,
	prov_lsp_amount,
        ppip_exempt_flag
    from	pay_ca_emp_prov_tax_info_f
    where	emp_province_tax_inf_id = p_emp_province_tax_inf_id
    and		p_effective_date
    between	effective_start_date and effective_end_date;
Line: 192

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

    select  t.assignment_id
    from    pay_ca_emp_prov_tax_info_f t
    where   t.emp_province_tax_inf_id = p_base_key_value
    and     p_effective_date
    between t.effective_start_date and t.effective_end_date;
Line: 231

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

  p_delete := false;
Line: 239

  p_delete_next_change := false;
Line: 251

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

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

  update  pay_ca_emp_prov_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_province_tax_inf_id	  = p_base_key_value
  and	  p_effective_date
  between t.effective_start_date and t.effective_end_date;
Line: 345

    select
	emp_province_tax_inf_id,
	effective_start_date,
	effective_end_date,
	legislation_code,
	assignment_id,
	business_group_id,
	province_code,
	jurisdiction_code,
	tax_credit_amount,
	basic_exemption_flag,
	deduction_code,
	extra_info_not_provided,
	marriage_status,
	no_of_infirm_dependants,
	non_resident_status,
	disability_status,
	no_of_dependants,
	annual_dedn,
	total_expense_by_commission,
	total_remnrtn_by_commission,
	prescribed_zone_dedn_amt,
	additional_tax,
	prov_override_rate,
	prov_override_amount,
	prov_exempt_flag,
	pmed_exempt_flag,
	wc_exempt_flag,
	qpp_exempt_flag,
	tax_calc_method,
	other_tax_credit,
	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,
	prov_lsp_amount,
        ppip_exempt_flag
    from    pay_ca_emp_prov_tax_info_f
    where   emp_province_tax_inf_id         = p_emp_province_tax_inf_id
    and	    p_effective_date
    between effective_start_date and effective_end_date
    for update nowait;
Line: 441

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