DBA Data[Home] [Help]

APPS.PAY_SBC_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_sbc_shd.g_rec_type
  ) is
  --
  -- Cursor to disallow update if a core balance classification has been
  -- generated from this shadow balance classification.
  --
  cursor csr_disallow_update is
  select null
  from   pay_template_core_objects tco
  where  tco.core_object_type = pay_tco_shd.g_sbc_lookup_type
  and    tco.shadow_object_id = p_rec.balance_classification_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_balance_classi sbc
  where  sbc.balance_type_id = p_balance_type_id
  and    upper(sbc.element_classification) = upper(p_element_classification);
Line: 229

Procedure chk_delete
  (p_balance_classification_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_sbc_lookup_type
  and    tco.shadow_object_id = p_balance_classification_id;
Line: 241

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

    fnd_message.set_name('PAY', 'PAY_50088_SBC_INVALID_DELETE');
Line: 264

End chk_delete;
Line: 310

Procedure insert_validate(p_rec in pay_sbc_shd.g_rec_type) is
--
  l_proc  varchar2(72) := g_package||'insert_validate';
Line: 342

End insert_validate;
Line: 347

Procedure update_validate(p_rec in pay_sbc_shd.g_rec_type) is
--
  l_proc  varchar2(72) := g_package||'update_validate';
Line: 356

  chk_non_updateable_args(p_rec);
Line: 378

End update_validate;
Line: 383

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

  chk_delete(p_rec.balance_classification_id);
Line: 395

End delete_validate;