DBA Data[Home] [Help]

APPS.PER_ZA_WSP_ARCHIVE_PKG dependencies on OTA_CERTIFICATION_MEMBERS

Line 891: from OTA_CERTIFICATION_MEMBERS ocm

887:
888: -- Get the Courses Linked to a Certification
889: cursor csr_get_cert_courses(p_cert_id number) is
890: select ocm.object_id
891: from OTA_CERTIFICATION_MEMBERS ocm
892: , OTA_CERTIFICATIONS_B oc
893: where oc.certification_id = p_cert_id
894: and ocm.certification_id = oc.certification_id
895: and ocm.object_type = 'H';

Line 3046: from OTA_CERTIFICATION_MEMBERS ocm

3042: --
3043: -- Get the Courses Linked to a Certification
3044: cursor csr_get_cert_courses(p_cert_id number) is
3045: select ocm.object_id
3046: from OTA_CERTIFICATION_MEMBERS ocm
3047: , OTA_CERTIFICATIONS_B oc
3048: where oc.certification_id = p_cert_id
3049: and ocm.certification_id = oc.certification_id
3050: and ocm.object_type = 'H';

Line 3086: from OTA_CERTIFICATION_MEMBERS ocm

3082: and pce.business_group_id = g_bg_id;
3083: --
3084: cursor csr_exists_cert_courses(p_cert_id number) is
3085: select count(ocm.object_id)
3086: from OTA_CERTIFICATION_MEMBERS ocm
3087: , OTA_CERTIFICATIONS_B oc
3088: where oc.certification_id = p_cert_id
3089: and ocm.certification_id = oc.certification_id
3090: and ocm.object_type = 'H';