DBA Data[Home] [Help]

APPS.OTA_LO_UTILITY dependencies on OTA_EVENTS

Line 70: p_event_id ota_events.event_id%type,

66: p_cert_prd_enroll_id ota_performances.cert_prd_enrollment_id%type);
67:
68:
69: function get_previous_event_lo_id(
70: p_event_id ota_events.event_id%type,
71: p_starting_lo_id ota_learning_objects.learning_object_id%type,
72: p_user_id fnd_user.user_id%type,
73: p_user_type ota_attempts.user_type%type,
74: p_launch_type ota_attempts.launch_type%type,

Line 79: p_event_id ota_events.event_id%type,

75: p_cert_prd_enrollment_id ota_attempts.cert_prd_enrollment_id%type default null) return ota_learning_objects.learning_object_id%type;
76:
77:
78: function get_next_event_lo_id(
79: p_event_id ota_events.event_id%type,
80: p_starting_lo_id ota_learning_objects.learning_object_id%type,
81: p_user_id fnd_user.user_id%type,
82: p_user_type ota_attempts.user_type%type,
83: p_launch_type ota_attempts.launch_type%type,

Line 116: p_event_id ota_events.event_id%type,

112: p_cert_prd_enrollment_id ota_attempts.cert_prd_enrollment_id%type default null) return ota_learning_objects.learning_object_id%type;
113:
114:
115: function get_first_lo_id(
116: p_event_id ota_events.event_id%type,
117: p_user_id fnd_user.user_id%type,
118: p_user_type ota_attempts.user_type%type,
119: p_launch_type ota_attempts.launch_type%type,
120: p_cert_prd_enrollment_id ota_attempts.cert_prd_enrollment_id%type default null) return ota_learning_objects.learning_object_id%type;

Line 124: p_event_id ota_events.event_id%type,

120: p_cert_prd_enrollment_id ota_attempts.cert_prd_enrollment_id%type default null) return ota_learning_objects.learning_object_id%type;
121:
122:
123: function get_most_recent_lo_id(
124: p_event_id ota_events.event_id%type,
125: p_user_id fnd_user.user_id%type,
126: p_user_type ota_attempts.user_type%type,
127: p_launch_type ota_attempts.launch_type%type,
128: p_cert_prd_enroll_id ota_attempts.cert_prd_enrollment_id%type) return ota_learning_objects.learning_object_id%type;

Line 133: p_event_id ota_events.event_id%type,

129:
130:
131: function get_jump_lo_id(
132: p_lo_id ota_learning_objects.learning_object_id%type,
133: p_event_id ota_events.event_id%type,
134: p_user_id fnd_user.user_id%type,
135: p_user_type ota_attempts.user_type%type,
136: p_launch_type ota_attempts.launch_type%type,
137: p_cert_prd_enroll_id ota_attempts.cert_prd_enrollment_id%type,

Line 144: p_event_id ota_events.event_id%type,

140: function get_lo_type(
141: p_lo_id ota_learning_objects.learning_object_id%type) return varchar2;
142:
143: function user_can_attempt_event(
144: p_event_id ota_events.event_id%type,
145: p_user_id fnd_user.user_id%type,
146: p_user_type ota_attempts.user_type%type,
147: p_launch_type ota_attempts.launch_type%type,
148: p_reason out nocopy number) return varchar2;

Line 152: p_event_id ota_events.event_id%type,

148: p_reason out nocopy number) return varchar2;
149:
150:
151: function user_can_attempt_event(
152: p_event_id ota_events.event_id%type,
153: p_user_id fnd_user.user_id%type,
154: p_user_type ota_attempts.user_type%type,
155: p_launch_type ota_attempts.launch_type%type) return varchar2;
156:

Line 159: p_event_id ota_events.event_id%type,

155: p_launch_type ota_attempts.launch_type%type) return varchar2;
156:
157:
158: function user_can_attempt_event(
159: p_event_id ota_events.event_id%type,
160: p_user_id fnd_user.user_id%type,
161: p_user_type ota_attempts.user_type%type) return varchar2;
162:
163:

Line 213: p_event_id ota_events.event_id%type,

209: function get_play_button(
210: p_user_id fnd_user.user_id%type,
211: p_user_type ota_attempts.user_type%type,
212: p_is_manager varchar2,
213: p_event_id ota_events.event_id%type,
214: p_event_type ota_events.event_type%type,
215: p_synchronous_flag ota_category_usages.synchronous_flag%type,
216: p_online_flag ota_category_usages.online_flag%type,
217: p_course_start_date ota_events.course_start_date%type,

Line 214: p_event_type ota_events.event_type%type,

210: p_user_id fnd_user.user_id%type,
211: p_user_type ota_attempts.user_type%type,
212: p_is_manager varchar2,
213: p_event_id ota_events.event_id%type,
214: p_event_type ota_events.event_type%type,
215: p_synchronous_flag ota_category_usages.synchronous_flag%type,
216: p_online_flag ota_category_usages.online_flag%type,
217: p_course_start_date ota_events.course_start_date%type,
218: p_course_end_date ota_events.course_end_date%type,

Line 217: p_course_start_date ota_events.course_start_date%type,

213: p_event_id ota_events.event_id%type,
214: p_event_type ota_events.event_type%type,
215: p_synchronous_flag ota_category_usages.synchronous_flag%type,
216: p_online_flag ota_category_usages.online_flag%type,
217: p_course_start_date ota_events.course_start_date%type,
218: p_course_end_date ota_events.course_end_date%type,
219: p_enrollment_status_type ota_booking_status_types.type%TYPE DEFAULT NULL,
220: p_cert_prd_enrollment_id ota_attempts.cert_prd_enrollment_id%type default null,
221: p_contact_id ota_cert_enrollments.contact_id%type default null,

Line 218: p_course_end_date ota_events.course_end_date%type,

214: p_event_type ota_events.event_type%type,
215: p_synchronous_flag ota_category_usages.synchronous_flag%type,
216: p_online_flag ota_category_usages.online_flag%type,
217: p_course_start_date ota_events.course_start_date%type,
218: p_course_end_date ota_events.course_end_date%type,
219: p_enrollment_status_type ota_booking_status_types.type%TYPE DEFAULT NULL,
220: p_cert_prd_enrollment_id ota_attempts.cert_prd_enrollment_id%type default null,
221: p_contact_id ota_cert_enrollments.contact_id%type default null,
222: p_chk_active_cert_flag varchar2 default 'N') return varchar2;

Line 228: p_event_id ota_events.event_id%type,

224:
225: function get_play_button_for_test(
226: p_user_id fnd_user.user_id%type,
227: p_user_type ota_attempts.user_type%type,
228: p_event_id ota_events.event_id%type,
229: p_cert_prd_enrollment_id ota_attempts.cert_prd_enrollment_id%type default null) return varchar2;
230:
231: --
232: -- ----------------------------------------------------------------------------

Line 243: p_event_id ota_events.event_id%type,

239: -- ----------------------------------------------------------------------------
240: function get_wait_duration_for_test(
241: p_user_id fnd_user.user_id%type,
242: p_user_type ota_attempts.user_type%type,
243: p_event_id ota_events.event_id%type,
244: p_cert_prd_enrollment_id ota_attempts.cert_prd_enrollment_id%type default null) return varchar2;
245:
246: --
247: -- ----------------------------------------------------------------------------

Line 334: p_event_id IN ota_events.event_id%TYPE,

330: --
331:
332: FUNCTION get_enroll_lo_status(p_user_id IN NUMBER,
333: p_user_type IN ota_attempts.user_type%type,
334: p_event_id IN ota_events.event_id%TYPE,
335: p_booking_status_type_id IN ota_booking_status_types.booking_status_type_id%TYPE,
336: p_booking_id IN ota_delegate_bookings.booking_id%TYPE,
337: p_mode IN number default null,
338: p_chk_active_cert_flag varchar2 default 'N')

Line 375: p_event_id ota_events.event_id%TYPE,

371: ----------------------------------------------------------------------------
372:
373: FUNCTION get_history_button(p_user_id fnd_user.user_id%TYPE,
374: p_lo_id ota_learning_objects.learning_object_id%TYPE,
375: p_event_id ota_events.event_id%TYPE,
376: p_booking_id ota_delegate_bookings.booking_id%TYPE)
377: RETURN VARCHAR2;
378:
379: FUNCTION get_lo_completion_date(p_event_id IN ota_events.event_id%type,

Line 379: FUNCTION get_lo_completion_date(p_event_id IN ota_events.event_id%type,

375: p_event_id ota_events.event_id%TYPE,
376: p_booking_id ota_delegate_bookings.booking_id%TYPE)
377: RETURN VARCHAR2;
378:
379: FUNCTION get_lo_completion_date(p_event_id IN ota_events.event_id%type,
380: p_user_id IN NUMBER,
381: p_user_type IN ota_attempts.user_type%type,
382: p_cert_prd_enroll_id IN ota_performances.cert_prd_enrollment_id%type default NULL,
383: p_module_name IN VARCHAR2 default 'LEARNER')

Line 422: p_event_id IN ota_events.event_id%TYPE,

418: ----------------------------------------------------------------------------
419:
420: FUNCTION get_cert_lo_status(p_user_id IN NUMBER,
421: p_user_type IN ota_attempts.user_type%type,
422: p_event_id IN ota_events.event_id%TYPE,
423: p_booking_status_type_id IN ota_booking_status_types.booking_status_type_id%TYPE,
424: p_booking_id IN ota_delegate_bookings.booking_id%TYPE,
425: p_cert_prd_enrollment_id in ota_cert_prd_enrollments.cert_prd_enrollment_id%type,
426: p_mode IN number default null)

Line 729: p_event_id ota_events.event_id%type,

725: function get_lme_onl_evt_count(p_lp_member_enrollment_id in ota_lp_member_enrollments.lp_member_enrollment_id%type)
726: return varchar2;
727:
728: procedure get_active_cert_prds(
729: p_event_id ota_events.event_id%type,
730: p_person_id ota_cert_enrollments.contact_id%type,
731: p_contact_id ota_cert_enrollments.contact_id%type,
732: p_cert_prd_enrollment_ids OUT NOCOPY varchar2);
733:

Line 748: FUNCTION get_lo_completion_date_time(p_event_id IN ota_events.event_id%type,

744: -- ----------------------------------------------------------------------------
745:
746: --Added for 6768606:COMPLETION DATE COLUMN SORT NUMERIC AND NOT BY ACTUAL DATE SORT
747:
748: FUNCTION get_lo_completion_date_time(p_event_id IN ota_events.event_id%type,
749: p_user_id IN NUMBER,
750: p_user_type IN ota_attempts.user_type%type,
751: p_cert_prd_enroll_id IN ota_performances.cert_prd_enrollment_id%type default NULL,
752: p_module_name IN VARCHAR2 default 'LEARNER')

Line 787: p_event_id IN ota_events.event_id%TYPE,

783: ----------------------------------------------------------------------------
784: --
785: FUNCTION get_enroll_lo_score(p_user_id IN NUMBER,
786: p_user_type IN ota_attempts.user_type%type,
787: p_event_id IN ota_events.event_id%TYPE,
788: p_booking_id IN ota_delegate_bookings.booking_id%TYPE)
789: RETURN VARCHAR2;
790: --
791: -- ----------------------------------------------------------------------------

Line 824: p_event_id IN ota_events.event_id%TYPE,

820: ----------------------------------------------------------------------------
821: --
822: FUNCTION get_enroll_lo_time(p_user_id IN NUMBER,
823: p_user_type IN ota_attempts.user_type%type,
824: p_event_id IN ota_events.event_id%TYPE,
825: p_booking_id IN ota_delegate_bookings.booking_id%TYPE)
826: RETURN VARCHAR2;
827:
828: -- ----------------------------------------------------------------------------

Line 861: p_event_id IN ota_events.event_id%TYPE,

857: ----------------------------------------------------------------------------
858: --
859: FUNCTION get_player_status(p_user_id IN NUMBER,
860: p_user_type IN ota_attempts.user_type%type,
861: p_event_id IN ota_events.event_id%TYPE,
862: p_booking_id IN ota_delegate_bookings.booking_id%TYPE)
863: RETURN VARCHAR2;
864:
865: function get_play_eval_button(

Line 866: p_event_id OTA_EVENTS.EVENT_ID%TYPE,

862: p_booking_id IN ota_delegate_bookings.booking_id%TYPE)
863: RETURN VARCHAR2;
864:
865: function get_play_eval_button(
866: p_event_id OTA_EVENTS.EVENT_ID%TYPE,
867: p_user_id fnd_user.user_id%type,
868: p_booking_status_type_id OTA_DELEGATE_BOOKINGS.BOOKING_STATUS_TYPE_ID%TYPE,
869: p_object_id OTA_EVALUATIONS.OBJECT_ID%TYPE,
870: p_object_type OTA_EVALUATIONS.OBJECT_TYPE%TYPE,

Line 878: p_event_id ota_events.event_id%type);

874:
875: procedure update_enrollment_status(
876: p_user_id fnd_user.user_id%type,
877: p_user_type ota_attempts.user_type%type,
878: p_event_id ota_events.event_id%type);
879:
880: procedure update_enroll_status_for_lo(
881: p_lo_id ota_learning_objects.learning_object_id%type,
882: p_user_id fnd_user.user_id%type,

Line 889: p_event_id ota_events.event_id%type,

885: p_failed varchar2);
886:
887: procedure update_enrollment(
888: p_booking_id ota_delegate_bookings.booking_id%type,
889: p_event_id ota_events.event_id%type,
890: p_business_group_id ota_delegate_bookings.business_group_id%type,
891: p_date_booking_placed ota_delegate_bookings.date_booking_placed%type,
892: p_object_version_number ota_delegate_bookings.object_version_number%type,
893: p_date_status_changed ota_delegate_bookings.date_status_changed%type,

Line 899: p_event_id OTA_EVENTS.EVENT_ID%TYPE,

895: p_failed varchar2);
896:
897: --Enhancement: 7310093 SIP: A NEW FIELD WHICH CAN GIVE THE STATUS OF THE COURSE / CLASS EVALUATION
898: function get_admin_eval_status(
899: p_event_id OTA_EVENTS.EVENT_ID%TYPE,
900: p_user_id fnd_user.user_id%type,
901: p_booking_status_type_id OTA_DELEGATE_BOOKINGS.BOOKING_STATUS_TYPE_ID%TYPE,
902: p_mand_flag OTA_EVALUATIONS.EVAL_MANDATORY_FLAG%TYPE,
903: p_test_id OTA_TESTS.TEST_ID%TYPE)