DBA Data[Home] [Help]

APPS.PER_ZA_WSP_ARCHIVE_PKG dependencies on OTA_LEARNING_PATH_MEMBERS

Line 882: , ota_learning_path_members olpm

878: cursor csr_get_lp_courses(p_learning_path_id number) is
879: select olpm.activity_version_id
880: from ota_learning_paths olp
881: , ota_lp_sections olps
882: , ota_learning_path_members olpm
883: where olp.learning_path_id = p_learning_path_id
884: and olp.learning_path_id = olps.learning_path_id
885: and olps.learning_path_section_id = olpm.learning_path_section_id;
886:

Line 3032: , ota_learning_path_members olpm

3028: cursor csr_get_lp_courses(p_learning_path_id number) is
3029: select olpm.activity_version_id
3030: from ota_learning_paths olp
3031: , ota_lp_sections olps
3032: , ota_learning_path_members olpm
3033: where olp.learning_path_id = p_learning_path_id
3034: and olp.learning_path_id = olps.learning_path_id
3035: and olps.learning_path_section_id = olpm.learning_path_section_id;
3036: --

Line 3066: , ota_learning_path_members olpm

3062: cursor csr_exists_lp_courses(p_learning_path_id number) is
3063: select count(olpm.activity_version_id)
3064: from ota_learning_paths olp
3065: , ota_lp_sections olps
3066: , ota_learning_path_members olpm
3067: where olp.learning_path_id = p_learning_path_id
3068: and olp.learning_path_id = olps.learning_path_id
3069: and olps.learning_path_section_id = olpm.learning_path_section_id;
3070: --