DBA Data[Home] [Help]

APPS.PER_CTK_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
         , per_tasks_in_checklist   tic
         , per_checklists           ckl
     where tic.task_in_checklist_id = p_task_in_checklist_id
       and tic.checklist_id         = ckl.checklist_id
       and pbg.business_group_id    = ckl.business_group_id;
Line: 102

    select pbg.legislation_code
      from per_business_groups_perf pbg
         , per_tasks_in_checklist   tic
         , per_checklists           ckl
     where tic.task_in_checklist_id = p_task_in_checklist_id
       and tic.checklist_id         = ckl.checklist_id
       and pbg.business_group_id    = ckl.business_group_id;
Line: 182

    select null
    from per_checklists ckl
    where ckl.checklist_id = p_checklist_id;
Line: 243

    select 'X'
      from per_tasks_in_checklist tic
     where tic.checklist_task_name  = p_checklist_task_name
       and tic.checklist_id         = p_checklist_id;
Line: 418

    select null
    from per_tasks_in_checklist tic
    where tic.checklist_id        = p_checklist_id
    and   tic.checklist_task_name = p_checklist_task_name;
Line: 461

    select null
    from ben_eligy_prfl_f
    where eligy_prfl_id      = p_eligibility_profile_id
    and   business_group_id  = p_business_group_id
    and   p_effective_date between effective_start_date
                           and   effective_end_date;
Line: 506

    select null
    from ben_elig_obj_f beo
    where beo.elig_obj_id        = p_elig_obj_id
    and   beo.business_group_id  = p_business_group_id
    and   p_effective_date between beo.effective_start_date
    and   beo.effective_end_date;
Line: 834

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

End chk_non_updateable_args;
Line: 862

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

End insert_validate;
Line: 940

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

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

End update_validate;
Line: 1021

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

End delete_validate;