DBA Data[Home] [Help]

APPS.PAY_SIR_BUS SQL Statements

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

Line: 38

Procedure chk_non_updateable_args
  (p_rec in pay_sir_shd.g_rec_type
  ) IS
--
  l_proc     varchar2(72) := g_package || 'chk_non_updateable_args';
Line: 77

End chk_non_updateable_args;
Line: 88

  select null
  from   pay_shadow_element_types pset
  where  pset.element_type_id = p_element_type_id;
Line: 178

  select null
  from   pay_shadow_element_types pset
  ,      pay_shadow_element_types pset1
  ,      pay_shadow_input_values  psiv
  where  pset.element_type_id = p_element_type_id
  and    pset1.template_id    = pset.template_id
  and    psiv.input_value_id  = p_input_value_id
  and    psiv.element_type_id = pset1.element_type_id;
Line: 324

  select null
  from   pay_shadow_element_types     pset
  ,      pay_template_exclusion_rules ter
  where  pset.element_type_id  = p_element_type_id
  and    ter.template_id       = pset.template_id
  and    ter.exclusion_rule_id = p_exclusion_rule_id;
Line: 362

Procedure chk_delete
  (p_iterative_rule_id  in number
  ) is
  --
  -- Cursor to check for rows referencing the iterative rule.
  --
  cursor c_core_objects is
  select null
  from   pay_template_core_objects tco
  where  tco.core_object_type = pay_tco_shd.g_sir_lookup_type
  and    tco.shadow_object_id = p_iterative_rule_id;
Line: 374

  l_proc varchar2(72) := g_package||'chk_delete';
Line: 391

    fnd_message.set_name('PAY', 'PAY_50112_SIR_INVALID_DELETE');
Line: 396

End chk_delete;
Line: 401

Procedure insert_validate
  (p_effective_date               in date
  ,p_rec                          in pay_sir_shd.g_rec_type
  ) is
--
  l_proc  varchar2(72) := g_package||'insert_validate';
Line: 450

End insert_validate;
Line: 455

Procedure update_validate
  (p_effective_date             in date
  ,p_rec                        in pay_sir_shd.g_rec_type
  ) is
--
  l_proc  varchar2(72) := g_package||'update_validate';
Line: 467

  chk_non_updateable_args(p_rec);
Line: 504

End update_validate;
Line: 509

Procedure delete_validate
  (p_rec                          in pay_sir_shd.g_rec_type) is
--
  l_proc  varchar2(72) := g_package||'delete_validate';
Line: 519

  chk_delete(p_rec.iterative_rule_id);
Line: 522

End delete_validate;