DBA Data[Home] [Help]

APPS.PAY_PTA_BUS SQL Statements

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

Line: 27

    select pbg.security_group_id
      from per_business_groups pbg
         , pay_dated_tables pta
     where pta.dated_table_id = p_dated_table_id
       and pbg.business_group_id = pta.business_group_id;
Line: 87

    select pbg.legislation_code
      from per_business_groups pbg
         , pay_dated_tables pta
     where pta.dated_table_id = p_dated_table_id
       and pbg.business_group_id (+) = pta.business_group_id;
Line: 175

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

End chk_non_updateable_args;
Line: 476

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

End insert_validate;
Line: 501

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

  chk_non_updateable_args
    (p_rec              => p_rec
    );
Line: 525

End update_validate;
Line: 530

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

End delete_validate;