DBA Data[Home] [Help]

APPS.CCT_CONCURRENT_PUB dependencies on FND_REQUEST

Line 25: l_is_repeat_options_set := fnd_request.set_repeat_options(

21: BEGIN
22:
23: -- fnd_file.put_line(fnd_file.log, 'Starting Processing');
24: -- fnd_file.put_line(fnd_file.log, 'p_close_interval = ' || to_char(p_close_interval));
25: l_is_repeat_options_set := fnd_request.set_repeat_options(
26: repeat_interval => p_close_interval,
27: repeat_unit => 'MINUTES',
28: repeat_type => 'START');
29: if not l_is_repeat_options_set then

Line 34: l_submit_request_id := fnd_request.submit_request(

30: rollback;
31: raise REPEAT_OPTIONS_NOT_SET;
32: end if;
33:
34: l_submit_request_id := fnd_request.submit_request(
35: application=>'CCT',
36: program => 'CCT_CLOSE_MEDIA_ITEMS',
37: description => 'Concurrent program to close IH media items');
38:

Line 353: l_is_repeat_options_set := fnd_request.set_repeat_options(

349:
350: -- fnd_file.put_line(fnd_file.log, 'Starting TIMEOUT Processing');
351: -- fnd_file.put_line(fnd_file.log, 'p_timeout_interval = ' || to_char(p_timeout_interval));
352: -- fnd_file.put_line(fnd_file.log, 'p_check_timeout_interval = ' || to_char(p_check_timeout_interval));
353: l_is_repeat_options_set := fnd_request.set_repeat_options(
354: repeat_interval => p_check_timeout_interval,
355: repeat_unit => 'HOURS',
356: repeat_type => 'START');
357: if not l_is_repeat_options_set then

Line 362: l_submit_request_id := fnd_request.submit_request(

358: rollback;
359: raise REPEAT_OPTIONS_NOT_SET;
360: end if;
361:
362: l_submit_request_id := fnd_request.submit_request(
363: application=>'CCT',
364: program => 'CCT_TIMEOUT_MEDIA_ITEMS',
365: description => 'Concurrent program to timeout IH media items',
366: argument1 => '1.0',