DBA Data[Home] [Help]

APPS.PER_SCN_BUS SQL Statements

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

Line: 39

    select pbg.security_group_id
      from per_business_groups pbg
         , per_solution_cmpt_names scn
      --   , EDIT_HERE table_name(s) 333
     where scn.solution_id = p_solution_id
       and scn.component_name = p_component_name
       and scn.solution_type_name = p_solution_type_name;
Line: 127

    select pbg.legislation_code
      from per_business_groups     pbg
         , per_solution_cmpt_names scn
      --   , EDIT_HERE table_name(s) 333
     where scn.solution_id = p_solution_id
       and scn.component_name = p_component_name
       and scn.solution_type_name = p_solution_type_name;
Line: 234

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

End chk_non_updateable_args;
Line: 265

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

End insert_validate;
Line: 293

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

  chk_non_updateable_args
    (p_rec              => p_rec
    );
Line: 320

End update_validate;
Line: 325

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

End delete_validate;