DBA Data[Home] [Help]

APPS.OTA_CRE_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_enrollments cre
     where cre.cert_enrollment_id = p_cert_enrollment_id
       and pbg.business_group_id = cre.business_group_id;
Line: 99

    select pbg.legislation_code
      from per_business_groups_perf pbg
         , ota_cert_enrollments cre
     where cre.cert_enrollment_id = p_cert_enrollment_id
       and pbg.business_group_id = cre.business_group_id;
Line: 324

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

End chk_non_updateable_args;
Line: 384

        SELECT null
        FROM PER_ALL_PEOPLE_F
        WHERE person_id = p_person_id;
Line: 483

 SELECT null
   FROM ota_cert_prd_enrollments cpe
  WHERE cpe.cert_enrollment_id = p_cert_enrollment_id;
Line: 488

 SELECT certification_status_code
  FROM  ota_cert_enrollments
  WHERE cert_enrollment_id = p_cert_enrollment_id;
Line: 553

 SELECT null
   FROM ota_cert_enrollments cre
  WHERE cre.certification_id = p_certification_id
    AND ( cre.person_id = p_person_id and cre.contact_id IS NULL
          OR cre.contact_id = p_contact_id and cre.person_id IS NULL)
    AND cre.certification_status_code <> 'CANCELLED';
Line: 561

 SELECT meaning
 FROM hr_lookups
 WHERE lookup_type = 'OTA_OBJECT_TYPE'
  and lookup_code = 'CRT';
Line: 625

 select
         b.INITIAL_COMPLETION_DATE
 from ota_certifications_b b
where certification_id = p_certification_id
and renewable_flag = 'N';
Line: 666

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

End insert_validate;
Line: 718

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

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

End update_validate;
Line: 770

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

End delete_validate;