DBA Data[Home] [Help]

APPS.PAY_GRR_SHD SQL Statements

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

Line: 66

    select
	grade_rule_id,
	effective_start_date,
	effective_end_date,
	business_group_id,
	rate_id,
	grade_or_spinal_point_id,
	rate_type,
	maximum,
	mid_value,
	minimum,
	sequence,
	value,
	request_id,
	program_application_id,
	program_id,
	program_update_date,
	object_version_number,
        currency_code
    from	pay_grade_rules_f
    where	grade_rule_id = p_grade_rule_id
    and		p_effective_date
    between	effective_start_date and effective_end_date;
Line: 148

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

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

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

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

  update  pay_grade_rules_f t
  set	  t.effective_end_date	  = p_new_effective_end_date,
	  t.object_version_number = l_object_version_number
  where	  t.grade_rule_id	  = p_base_key_value
  and	  p_effective_date
  between t.effective_start_date and t.effective_end_date;
Line: 277

    select
	grade_rule_id,
	effective_start_date,
	effective_end_date,
	business_group_id,
	rate_id,
	grade_or_spinal_point_id,
	rate_type,
	maximum,
	mid_value,
	minimum,
	sequence,
	value,
	request_id,
	program_application_id,
	program_id,
	program_update_date,
	object_version_number,
        currency_code
    from    pay_grade_rules_f
    where   grade_rule_id         = p_grade_rule_id
    and	    p_effective_date
    between effective_start_date and effective_end_date
    for update nowait;
Line: 325

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

        p_program_update_date           in date,
        p_object_version_number         in number,
        p_currency_code                 in varchar2
	)
	Return g_rec_type is
--
  l_rec	  g_rec_type;
Line: 448

  l_rec.program_update_date              := p_program_update_date;