DBA Data[Home] [Help]

APPS.PER_SOL_BUS SQL Statements

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

Line: 33

    select pbg.security_group_id
      from per_business_groups pbg
         , per_solutions sol
      --   , EDIT_HERE table_name(s) 333
     where sol.solution_id = p_solution_id;
Line: 103

    select pbg.legislation_code
      from per_business_groups     pbg
         , per_solutions sol
      --   , EDIT_HERE table_name(s) 333
     where sol.solution_id = p_solution_id;
Line: 192

Procedure chk_non_updateable_args
  (p_effective_date               in date
  ,p_rec in per_sol_shd.g_rec_type
  ) IS
--
  l_proc     varchar2(72) := g_package || 'chk_non_updateable_args';
Line: 217

End chk_non_updateable_args;
Line: 326

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

End insert_validate;
Line: 356

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

  chk_non_updateable_args
    (p_effective_date     => p_effective_date
     ,p_rec               => p_rec
    );
Line: 386

End update_validate;
Line: 391

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

End delete_validate;