DBA Data[Home] [Help]

APPS.PER_ZA_WSP_ARCHIVE_PKG dependencies on OTA_LP_ENROLLMENTS

Line 2964: ,ota_lp_enrollments ole

2960: cursor csr_wsp_lp(p_person_id number) is
2961: select olp.learning_path_id, olp_tl.name
2962: from ota_learning_paths olp
2963: ,ota_learning_paths_tl olp_tl
2964: ,ota_lp_enrollments ole
2965: where ole.person_id = p_person_id
2966: and ole.learning_path_id = olp.learning_path_id
2967: and ole.path_status_code <> 'CANCELLED'
2968: --and ole.completion_target_date between g_wsp_start_date and g_wsp_end_date --changed

Line 3602: ,ota_lp_enrollments ole

3598: cursor csr_atr_lp(p_person_id number) is
3599: select olp.learning_path_id, olp_tl.name, ole.completion_date, ole.path_status_code
3600: from ota_learning_paths olp
3601: ,ota_learning_paths_tl olp_tl
3602: ,ota_lp_enrollments ole
3603: where ole.person_id = p_person_id
3604: and ole.learning_path_id = olp.learning_path_id
3605: and ole.path_status_code = 'COMPLETED'
3606: and ole.completion_date between g_atr_start_date and g_atr_end_date