DBA Data[Home] [Help]

APPS.AMS_SCHEDULERULES_PVT dependencies on AMS_SCHEDULER_PVT

Line 5428: WRITE_LOG(l_api_name, 'Wf_Repeat_Scheduler: Calling AMS_SCHEDULER_PVT.Schedule_Repeat with freq type ' ||l_scheduler_frequency_type);

5424: itemtype => itemtype,
5425: itemkey => itemkey ,
5426: aname => 'AMS_SCHEDULER_FREQUENCY_TYPE');
5427:
5428: WRITE_LOG(l_api_name, 'Wf_Repeat_Scheduler: Calling AMS_SCHEDULER_PVT.Schedule_Repeat with freq type ' ||l_scheduler_frequency_type);
5429:
5430:
5431: l_new_last_run_date := WF_ENGINE.GetItemAttrDate(
5432: itemtype => itemtype,

Line 5455: WRITE_LOG(l_api_name, 'Wf_Repeat_Scheduler: Calling AMS_SCHEDULER_PVT.Schedule_Repeat with freq type ' ||l_scheduler_frequency_type||'; For Schedule Id: '||l_schedule_id);

5451:
5452: WRITE_LOG(l_api_name, 'Wf_Repeat_Scheduler: Schedule_Repeat returned last run date from the WF Engine : '||to_char(l_new_last_run_date,'DD-MON-RRRR HH24:MI:SS')||'; For Schedule Id: '||l_schedule_id);
5453:
5454:
5455: WRITE_LOG(l_api_name, 'Wf_Repeat_Scheduler: Calling AMS_SCHEDULER_PVT.Schedule_Repeat with freq type ' ||l_scheduler_frequency_type||'; For Schedule Id: '||l_schedule_id);
5456:
5457:
5458: AMS_SCHEDULER_PVT.Schedule_Repeat (
5459: p_last_run_date => SYSDATE,

Line 5458: AMS_SCHEDULER_PVT.Schedule_Repeat (

5454:
5455: WRITE_LOG(l_api_name, 'Wf_Repeat_Scheduler: Calling AMS_SCHEDULER_PVT.Schedule_Repeat with freq type ' ||l_scheduler_frequency_type||'; For Schedule Id: '||l_schedule_id);
5456:
5457:
5458: AMS_SCHEDULER_PVT.Schedule_Repeat (
5459: p_last_run_date => SYSDATE,
5460: p_frequency => l_scheduler_frequency,
5461: p_frequency_type => l_scheduler_frequency_type,
5462: x_next_run_date => l_scheduler_next_run_date,

Line 5683: AMS_SCHEDULER_PVT.Schedule_Repeat(

5679: p_convert_type => 'USER',
5680: x_out_time => l_usr_start_time
5681: );
5682:
5683: AMS_SCHEDULER_PVT.Schedule_Repeat(
5684: p_last_run_date => l_usr_start_time,
5685: p_frequency => l_scheduler_frequency,
5686: p_frequency_type => l_scheduler_frequency_type,
5687: x_next_run_date => l_schedule_end_date,

Line 5726: AMS_SCHEDULER_PVT.Create_Next_Schedule ( p_parent_sched_id => l_parent_sched_id,

5722: l_schedule_end_date := nvl(l_parent_end_date, l_campaign_end_date);
5723: --END IF;
5724:
5725:
5726: AMS_SCHEDULER_PVT.Create_Next_Schedule ( p_parent_sched_id => l_parent_sched_id,
5727: p_child_sched_st_date => l_schedule_start_date,--l_usr_start_time,
5728: p_child_sched_en_date => l_schedule_end_date,
5729: x_child_sched_id => l_child_sched_id,
5730: x_msg_count => l_msg_count,

Line 6211: AMS_SCHEDULER_PVT.Schedule_Repeat (

6207: itemkey => itemkey ,
6208: aname => 'AMS_SCHEDULER_FREQUENCY' ));
6209: IF (l_scheduler_frequency IS NULL) THEN
6210: -- this means that the repeating activity is in the Schedule Execution flow
6211: AMS_SCHEDULER_PVT.Schedule_Repeat (
6212: p_last_run_date => SYSDATE,
6213: p_frequency => l_query_freq,
6214: p_frequency_type => l_query_freq_type,
6215: x_next_run_date => l_scheduler_next_run_date,