DBA Data[Home] [Help]

APPS.PAY_BTT_BUS SQL Statements

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

Line: 29

    select pbg.security_group_id,
           pbg.legislation_code
      from per_business_groups_perf pbg
         , pay_balance_types_tl btt
         , pay_balance_types pbt
     where btt.balance_type_id = p_balance_type_id
       and btt.balance_type_id = pbt.balance_type_id
       and pbg.business_group_id = pbt.business_group_id;
Line: 104

    select pbg.legislation_code
      from per_business_groups_perf     pbg
         , pay_balance_types_tl btt
         , pay_balance_types pbt
     where btt.balance_type_id = p_balance_type_id
       and btt.language = p_language
       and btt.balance_type_id = pbt.balance_type_id
       and pbg.business_group_id = pbt.business_group_id;
Line: 200

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

End chk_non_updateable_args;
Line: 229

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

End insert_validate;
Line: 257

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

  chk_non_updateable_args
    (p_rec              => p_rec
    );
Line: 284

End update_validate;
Line: 289

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

End delete_validate;