DBA Data[Home] [Help]

APPS.PAY_SDB_BUS SQL Statements

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

Line: 13

Procedure chk_non_updateable_args
  (p_rec     in     pay_sdb_shd.g_rec_type
  ) is
  --
  -- Cursor to disallow update if a core defined balance has been
  -- generated from this shadow defined balance.
  --
  cursor csr_disallow_update is
  select null
  from   pay_template_core_objects tco
  where  tco.core_object_type = pay_tco_shd.g_sdb_lookup_type
  and    tco.shadow_object_id = p_rec.defined_balance_id;
Line: 26

  l_proc  varchar2(72) := g_package||'chk_non_updateable_args';
Line: 50

  open csr_disallow_update;
Line: 51

  fetch csr_disallow_update into l_disallow;
Line: 52

  if csr_disallow_update%found then
    hr_utility.set_location(l_proc, 20);
Line: 54

    close csr_disallow_update;
Line: 58

  close csr_disallow_update;
Line: 79

End chk_non_updateable_args;
Line: 93

  select null
  from  pay_template_exclusion_rules ter
  ,     pay_shadow_balance_types bt
  where bt.balance_type_id = p_balance_type_id
  and   ter.exclusion_rule_id = p_exclusion_rule_id
  and   ter.template_id = bt.template_id
  ;
Line: 139

  select null
  from   pay_shadow_balance_types sbt
  where  sbt.balance_type_id = p_balance_type_id;
Line: 184

  select null
  from   pay_shadow_defined_balances sdb
  where  sdb.balance_type_id = p_balance_type_id
  and    upper(sdb.dimension_name) = upper(p_dimension_name);
Line: 317

Procedure chk_delete
  (p_defined_balance_id     in     number
  ) is
  --
  -- Cursors to check for rows referencing the balance classification.
  --
  cursor csr_core_objects is
  select null
  from   pay_template_core_objects tco
  where  tco.core_object_type = pay_tco_shd.g_sdb_lookup_type
  and    tco.shadow_object_id = p_defined_balance_id;
Line: 330

  select null
  from   pay_shadow_bal_attributes ba
  where  ba.defined_balance_id = p_defined_balance_id
  ;
Line: 335

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

    fnd_message.set_name('PAY', 'PAY_50092_SDB_INVALID_DELETE');
Line: 367

End chk_delete;
Line: 371

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

End insert_validate;
Line: 418

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

  chk_non_updateable_args(p_rec);
Line: 461

End update_validate;
Line: 466

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

  chk_delete(p_rec.defined_balance_id);
Line: 478

End delete_validate;