DBA Data[Home] [Help]

APPS.OTA_EVT_UPD dependencies on OTA_INITIALIZATION_WF

Line 689: OTA_INITIALIZATION_WF.initialize_instructor_wf(

685: l_course_end_date_changed or
686: l_course_start_time_changed or
687: l_course_end_time_changed ) then
688: --send notification to all instructors for class/session rescheduling
689: OTA_INITIALIZATION_WF.initialize_instructor_wf(
690: p_item_type => 'OTWF',
691: p_eventid => p_rec.event_id,
692: p_event_fired => 'CLASS_RESCHEDULE');
693:

Line 696: OTA_INITIALIZATION_WF.initialize_wf(p_process => 'OTA_CLASS_CANCEL_JSP_PRC',

692: p_event_fired => 'CLASS_RESCHEDULE');
693:
694: if ota_evt_shd.g_old_rec.parent_event_id is null then
695: --send notification to all learners for class rescheduling
696: OTA_INITIALIZATION_WF.initialize_wf(p_process => 'OTA_CLASS_CANCEL_JSP_PRC',
697: p_item_type => 'OTWF',
698: p_eventid => p_rec.event_id,
699: p_event_fired => 'CLASS_RESCHEDULE');
700: end if;

Line 705: OTA_INITIALIZATION_WF.initialize_instructor_wf(

701:
702: elsif l_location_id_changed then
703:
704: --send notification to all instructors for class/session location change
705: OTA_INITIALIZATION_WF.initialize_instructor_wf(
706: p_item_type => 'OTWF',
707: p_eventid => p_rec.event_id,
708: p_event_fired => 'LOCATION_CHANGE');
709:

Line 720: OTA_INITIALIZATION_WF.RAISE_BUSINESS_EVENT(

716: l_course_end_date_changed or
717: l_course_start_time_changed or
718: l_course_end_time_changed ) then
719: --Raise Business Event to all learners for class rescheduling
720: OTA_INITIALIZATION_WF.RAISE_BUSINESS_EVENT(
721: p_eventid => p_rec.event_id,
722: p_event_fired => 'oracle.apps.ota.api.event_api.update_class_schedule');
723: ---
724: end if;

Line 728: OTA_INITIALIZATION_WF.RAISE_BUSINESS_EVENT(

724: end if;
725:
726: if l_location_id_changed and l_training_center_id_changed then
727: --- Raise Business Event to all learners for class/session location change & Training center change
728: OTA_INITIALIZATION_WF.RAISE_BUSINESS_EVENT(
729: p_eventid => p_rec.event_id,
730: p_event_fired => 'oracle.apps.ota.api.event_api.update_trng_cntr_and_location');
731:
732: elsif l_location_id_changed then

Line 734: OTA_INITIALIZATION_WF.RAISE_BUSINESS_EVENT(

730: p_event_fired => 'oracle.apps.ota.api.event_api.update_trng_cntr_and_location');
731:
732: elsif l_location_id_changed then
733: --- Raise Business Event to all learners for class/session Location change
734: OTA_INITIALIZATION_WF.RAISE_BUSINESS_EVENT(
735: p_eventid => p_rec.event_id,
736: p_event_fired => 'oracle.apps.ota.api.event_api.update_location');
737: ---
738:

Line 741: OTA_INITIALIZATION_WF.RAISE_BUSINESS_EVENT(

737: ---
738:
739: elsif l_training_center_id_changed then
740: --- Raise Business Event to all learners for class/session Training center change
741: OTA_INITIALIZATION_WF.RAISE_BUSINESS_EVENT(
742: p_eventid => p_rec.event_id,
743: p_event_fired => 'oracle.apps.ota.api.event_api.update_training_center');
744: ---
745: end if;

Line 755: ota_initialization_wf.Initialize_auto_wf(p_process => 'OTA_ENROLL_STATUS_CHNG_JSP_PRC',

751: and ota_evt_shd.g_old_rec.course_start_date > trunc(sysdate)
752: and ota_evt_shd.g_old_rec.parent_event_id is null) then
753: -- send notification to all waitlisted learners of class begining
754: if (ota_utility.is_con_prog_periodic('OTEVTNTF')) then
755: ota_initialization_wf.Initialize_auto_wf(p_process => 'OTA_ENROLL_STATUS_CHNG_JSP_PRC',
756: p_item_type => 'OTWF',
757: p_event_fired => 'CLASS_START',
758: p_event_id => p_rec.event_id);
759: