DBA Data[Home] [Help]

APPS.OTA_CPE_BUS SQL Statements

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

Line: 28

    select pbg.security_group_id,
           pbg.legislation_code
      from per_business_groups_perf pbg
         , ota_cert_prd_enrollments cpe
     where cpe.cert_prd_enrollment_id = p_cert_prd_enrollment_id
       and pbg.business_group_id = cpe.business_group_id;
Line: 99

    select pbg.legislation_code
      from per_business_groups_perf pbg
         , ota_cert_prd_enrollments cpe
     where cpe.cert_prd_enrollment_id = p_cert_prd_enrollment_id
       and pbg.business_group_id = cpe.business_group_id;
Line: 324

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

End chk_non_updateable_args;
Line: 411

select
  cmb.CERTIFICATION_MEMBER_ID
 from ota_certification_members cmb,
      ota_certifications_b crt,
      ota_cert_enrollments cre
where cre.cert_enrollment_id = p_cert_enrollment_id
and cre.certification_id = crt.certification_id
and crt.certification_id = cmb.certification_id
and trunc(sysdate) between trunc(cmb.START_DATE_ACTIVE) and nvl(trunc(cmb.end_date_active), to_date('4712/12/31', 'YYYY/MM/DD'));
Line: 452

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

End insert_validate;
Line: 492

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

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

End update_validate;
Line: 534

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

End delete_validate;