DBA Data[Home] [Help]

APPS.AMS_WFTRIG_PVT dependencies on AMS_SCHEDULER_PVT

Line 701: AMS_SCHEDULER_PVT.Schedule_Repeat( p_last_run_date => l_cur_date,

697: l_cur_date := sysdate;
698: l_last_run_date := sysdate;
699: END IF;
700:
701: AMS_SCHEDULER_PVT.Schedule_Repeat( p_last_run_date => l_cur_date,
702: p_frequency => l_trigger.repeat_every_x_frequency,
703: p_frequency_type => l_trigger.repeat_frequency_type ,
704: x_next_run_date => l_sch_date,
705: x_return_status => l_return_status,

Line 2677: AMS_SCHEDULER_PVT.Schedule_Repeat( p_last_run_date => l_trigger_sched_date,

2673: END IF;*/
2674:
2675: -- Start: anchaudh: commented out the above portion and instead calling api below.
2676:
2677: AMS_SCHEDULER_PVT.Schedule_Repeat( p_last_run_date => l_trigger_sched_date,
2678: p_frequency => l_trig_freq_every_x,
2679: p_frequency_type => l_trig_freq_type,
2680: x_next_run_date => l_child_sched_start_date,
2681: x_return_status => l_return_status,

Line 2978: AMS_SCHEDULER_PVT.Schedule_Repeat( p_last_run_date => l_csch_rec.start_date_time ,

2974: END IF;*/
2975:
2976: -- Start: anchaudh:15 Oct'03: Calling central api directly to get the start date of the child schedule.
2977:
2978: AMS_SCHEDULER_PVT.Schedule_Repeat( p_last_run_date => l_csch_rec.start_date_time ,
2979: p_frequency => l_trig_freq_every_x,
2980: p_frequency_type => l_trig_freq_type,
2981: x_next_run_date => l_child_sched_st_date,
2982: x_return_status => l_return_status,

Line 3055: AMS_SCHEDULER_PVT.Create_Next_Schedule( p_parent_sched_id => nvl(l_csch_rec.orig_csch_id,l_csch_rec.schedule_id),

3051: );
3052:
3053: -- Start: anchaudh:15 Oct'03: Calling central api directly to create the schedule and copy its various components.
3054: -- soagrawa modified on 13-may-2004 to fix bug# 3621786
3055: AMS_SCHEDULER_PVT.Create_Next_Schedule( p_parent_sched_id => nvl(l_csch_rec.orig_csch_id,l_csch_rec.schedule_id),
3056: -- AMS_SCHEDULER_PVT.Create_Next_Schedule( p_parent_sched_id => l_csch_rec.schedule_id,
3057: p_child_sched_st_date => l_child_sched_st_date,
3058: p_child_sched_en_date => l_child_sched_end_date_time,
3059: x_child_sched_id => l_new_sched_id,

Line 3056: -- AMS_SCHEDULER_PVT.Create_Next_Schedule( p_parent_sched_id => l_csch_rec.schedule_id,

3052:
3053: -- Start: anchaudh:15 Oct'03: Calling central api directly to create the schedule and copy its various components.
3054: -- soagrawa modified on 13-may-2004 to fix bug# 3621786
3055: AMS_SCHEDULER_PVT.Create_Next_Schedule( p_parent_sched_id => nvl(l_csch_rec.orig_csch_id,l_csch_rec.schedule_id),
3056: -- AMS_SCHEDULER_PVT.Create_Next_Schedule( p_parent_sched_id => l_csch_rec.schedule_id,
3057: p_child_sched_st_date => l_child_sched_st_date,
3058: p_child_sched_en_date => l_child_sched_end_date_time,
3059: x_child_sched_id => l_new_sched_id,
3060: -- soagrawa added on 18-feb-2004 for bug# 3452264

Line 3075: p_msg_data => 'Get_Aval_Repeat_Sch : 9.After AMS_SCHEDULER_PVT.Create_Next_Schedule call'||l_return_status,

3071: AMS_Utility_PVT.Create_Log (
3072: x_return_status => l_return_log_status,
3073: p_arc_log_used_by => 'TRIG',
3074: p_log_used_by_id => l_trigger_id,
3075: p_msg_data => 'Get_Aval_Repeat_Sch : 9.After AMS_SCHEDULER_PVT.Create_Next_Schedule call'||l_return_status,
3076: p_msg_type => 'DEBUG'
3077: );
3078: END IF;
3079: -- End: anchaudh:15 Oct'03: Calling central api directly to create the schedule and copy its various components.