DBA Data[Home] [Help]

APPS.PAY_SEU_BUS SQL Statements

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

Line: 37

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

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

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

Procedure chk_delete
  (p_element_type_usage_id in number) is
  --
  -- Cursor to check for rows referencing the element type usage.
  --
  cursor c_core_objects is
  select null
  from   pay_template_core_objects tco
  where  tco.core_object_type = pay_tco_shd.g_seu_lookup_type
  and    tco.shadow_object_id = p_element_type_usage_id;
Line: 265

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

    fnd_message.set_name('PAY', 'PAY_50118_SEU_INVALID_DELETE');
Line: 287

End chk_delete;
Line: 292

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

End insert_validate;
Line: 334

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

  chk_non_updateable_args(p_rec);
Line: 370

End update_validate;
Line: 375

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

  chk_delete(p_rec.element_type_usage_id);
Line: 390

End delete_validate;