DBA Data[Home] [Help]

APPS.PER_SST_BUS SQL Statements

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

Line: 28

    select Null -- pbg.security_group_id,
           -- pbg.legislation_code
      from --per_business_groups_perf pbg
          per_ri_setup_sub_tasks_tl sst
      --   , EDIT_HERE table_name(s) 333
     where sst.setup_sub_task_code = p_setup_sub_task_code;
Line: 101

    select null --pbg.legislation_code
      from -- per_business_groups_perf     pbg
          per_ri_setup_sub_tasks_tl sst
      --   , EDIT_HERE table_name(s) 333
     where sst.setup_sub_task_code = p_setup_sub_task_code;
Line: 190

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

End chk_non_updateable_args;
Line: 218

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

End insert_validate;
Line: 246

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

  chk_non_updateable_args
    (p_rec              => p_rec
    );
Line: 273

End update_validate;
Line: 278

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

End delete_validate;