DBA Data[Home] [Help]

APPS.GHR_CMP_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
         , ghr_complaints2 cmp
     where cmp.complaint_id = p_complaint_id
       and pbg.business_group_id = cmp.business_group_id;
Line: 87

    select pbg.legislation_code
      from per_business_groups pbg
         , ghr_complaints2 cmp
     where cmp.complaint_id = p_complaint_id
       and pbg.business_group_id (+) = cmp.business_group_id;
Line: 176

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

End chk_non_updateable_args;
Line: 401

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

End insert_validate;
Line: 446

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

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

End update_validate;
Line: 496

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

End delete_validate;