DBA Data[Home] [Help]

APPS.IEM_CONCURRENT_PVT dependencies on FND_REQUEST

Line 49: /*l_request_id := fnd_request.submit_request('IEM', 'IEMADMWW', '','',FALSE,1,'F','T','MAILPREPROC','IEM_MAIL','FOREVER',p_number_of_msgs);

45: end if;
46:
47: --Submitting the process that remains forever
48: --samir.hans commented out on 8/18/2000
49: /*l_request_id := fnd_request.submit_request('IEM', 'IEMADMWW', '','',FALSE,1,'F','T','MAILPREPROC','IEM_MAIL','FOREVER',p_number_of_msgs);
50:
51: fnd_file.put_line(fnd_file.log, 'Main Worker Request Id ' || to_char(l_request_id));
52:
53: if l_request_id = 0 then

Line 62: l_call_status := fnd_request.set_repeat_options('',p_period_to_wake_up,'MINUTES','END');

58: end if;*/
59:
60: FOR i in 1..p_number_of_threads loop
61:
62: l_call_status := fnd_request.set_repeat_options('',p_period_to_wake_up,'MINUTES','END');
63:
64: if not l_call_status then
65: rollback;
66: raise REPEAT_OPTIONS_NOT_SET;

Line 69: l_request_id := fnd_request.submit_request('IEM', 'IEMADMWW', '','',FALSE,1,'F','T','MAILPREPROC','IEM_MAIL','NO_WAIT',p_number_of_msgs);

65: rollback;
66: raise REPEAT_OPTIONS_NOT_SET;
67: end if;
68:
69: l_request_id := fnd_request.submit_request('IEM', 'IEMADMWW', '','',FALSE,1,'F','T','MAILPREPROC','IEM_MAIL','NO_WAIT',p_number_of_msgs);
70:
71: fnd_file.put_line(fnd_file.log, 'Worker number ' || to_char(i) || ' Request Id ' || to_char(l_request_id));
72:
73: if l_request_id = 0 then

Line 88: l_call_status := fnd_request.set_repeat_options(repeat_time => l_time_to_sch);

84: l_time_to_sch := to_char(p_hour) || ':' || to_char(p_minutes);
85:
86: fnd_file.put_line(fnd_file.log, 'Retry process time ' || l_time_to_sch);
87:
88: l_call_status := fnd_request.set_repeat_options(repeat_time => l_time_to_sch);
89:
90: if not l_call_status then
91: rollback;
92: raise REPEAT_OPTIONS_NOT_SET;

Line 97: l_request_id := fnd_request.submit_request('IEM', 'IEMADMWR', '','',FALSE,1,'F','T','MAILPREPROC','IEM_MAIL');

93: end if;
94:
95: fnd_file.put_line(fnd_file.log, 'Retry repeat options set for retry process');
96:
97: l_request_id := fnd_request.submit_request('IEM', 'IEMADMWR', '','',FALSE,1,'F','T','MAILPREPROC','IEM_MAIL');
98:
99: if l_request_id = 0 then
100: rollback;
101: raise RETRY_NOT_SUBMITTED;