DBA Data[Home] [Help]

APPS.PAY_SGB_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_sgb_shd.g_rec_type
  ) IS
--
  l_proc     varchar2(72) := g_package || 'chk_non_updateable_args';
Line: 78

End chk_non_updateable_args;
Line: 90

  select null
  from   pay_shadow_element_types pset
  where  pset.element_type_id = p_source_id;
Line: 179

select null
from   pay_shadow_balance_types sbt
,      pay_shadow_element_types pset
where  sbt.balance_type_id = p_balance_type_id
and    sbt.template_id     = pset.template_id
and    pset.element_type_id = p_source_id;
Line: 238

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

Procedure chk_delete
  (p_grossup_balances_id in number
  ) is
--
-- Cursor to check for rows referencing the balance exclusion
--
cursor c_core_objects is
select null
from   pay_template_core_objects tco
where  tco.core_object_type = pay_tco_shd.g_sgb_lookup_type
and    tco.shadow_object_id = p_grossup_balances_id;
Line: 288

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

    fnd_message.set_name('PAY', 'PAY_50119_SGB_INVALID_DELETE');
Line: 310

End chk_delete;
Line: 315

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

End insert_validate;
Line: 358

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

  chk_non_updateable_args(p_rec);
Line: 396

End update_validate;
Line: 401

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

  chk_delete(p_rec.grossup_balances_id);
Line: 415

End delete_validate;