DBA Data[Home] [Help]

APPS.AMS_SCHEDULERULES_PVT dependencies on AMS_SCHEDULER_PVT

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

5454: itemtype => itemtype,
5455: itemkey => itemkey ,
5456: aname => 'AMS_SCHEDULER_FREQUENCY_TYPE');
5457:
5458: WRITE_LOG(l_api_name, 'Wf_Repeat_Scheduler: Calling AMS_SCHEDULER_PVT.Schedule_Repeat with freq type ' ||l_scheduler_frequency_type);
5459:
5460:
5461: l_new_last_run_date := WF_ENGINE.GetItemAttrDate(
5462: itemtype => itemtype,

Line 5485: 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);

5481:
5482: 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);
5483:
5484:
5485: 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);
5486:
5487:
5488: AMS_SCHEDULER_PVT.Schedule_Repeat (
5489: p_last_run_date => l_new_last_run_date,

Line 5488: AMS_SCHEDULER_PVT.Schedule_Repeat (

5484:
5485: 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);
5486:
5487:
5488: AMS_SCHEDULER_PVT.Schedule_Repeat (
5489: p_last_run_date => l_new_last_run_date,
5490: p_frequency => l_scheduler_frequency,
5491: p_frequency_type => l_scheduler_frequency_type,
5492: x_next_run_date => l_scheduler_next_run_date,

Line 5713: AMS_SCHEDULER_PVT.Schedule_Repeat(

5709: p_convert_type => 'USER',
5710: x_out_time => l_usr_start_time
5711: );
5712:
5713: AMS_SCHEDULER_PVT.Schedule_Repeat(
5714: p_last_run_date => l_usr_start_time,
5715: p_frequency => l_scheduler_frequency,
5716: p_frequency_type => l_scheduler_frequency_type,
5717: x_next_run_date => l_schedule_end_date,

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

5752: l_schedule_end_date := nvl(l_parent_end_date, l_campaign_end_date);
5753: --END IF;
5754:
5755:
5756: AMS_SCHEDULER_PVT.Create_Next_Schedule ( p_parent_sched_id => l_parent_sched_id,
5757: p_child_sched_st_date => l_schedule_start_date,--l_usr_start_time,
5758: p_child_sched_en_date => l_schedule_end_date,
5759: x_child_sched_id => l_child_sched_id,
5760: x_msg_count => l_msg_count,

Line 6241: AMS_SCHEDULER_PVT.Schedule_Repeat (

6237: itemkey => itemkey ,
6238: aname => 'AMS_SCHEDULER_FREQUENCY' ));
6239: IF (l_scheduler_frequency IS NULL) THEN
6240: -- this means that the repeating activity is in the Schedule Execution flow
6241: AMS_SCHEDULER_PVT.Schedule_Repeat (
6242: p_last_run_date => SYSDATE,
6243: p_frequency => l_query_freq,
6244: p_frequency_type => l_query_freq_type,
6245: x_next_run_date => l_scheduler_next_run_date,