DBA Data[Home] [Help]

APPS.IEM_CONCURRENT_MDT_PVT dependencies on FND_FILE

Line 88: fnd_file.put_line(fnd_file.log, 'p_delay_worker_start_time = ' || p_delay_worker_start_time);

84: else
85: i := 1;
86: end if;
87:
88: fnd_file.put_line(fnd_file.log, 'p_delay_worker_start_time = ' || p_delay_worker_start_time);
89: fnd_file.put_line(fnd_file.log, 'p_schedule_worker_stop_date = ' || p_schedule_worker_stop_date);
90: fnd_file.put_line(fnd_file.log, 'p_period_to_wake_up = ' || to_char(p_period_to_wake_up));
91: fnd_file.put_line(fnd_file.log, 'p_number_of_threads = ' || to_char(p_number_of_threads));
92: fnd_file.put_line(fnd_file.log, 'p_number_of_msgs = ' || to_char(p_number_of_msgs));

Line 89: fnd_file.put_line(fnd_file.log, 'p_schedule_worker_stop_date = ' || p_schedule_worker_stop_date);

85: i := 1;
86: end if;
87:
88: fnd_file.put_line(fnd_file.log, 'p_delay_worker_start_time = ' || p_delay_worker_start_time);
89: fnd_file.put_line(fnd_file.log, 'p_schedule_worker_stop_date = ' || p_schedule_worker_stop_date);
90: fnd_file.put_line(fnd_file.log, 'p_period_to_wake_up = ' || to_char(p_period_to_wake_up));
91: fnd_file.put_line(fnd_file.log, 'p_number_of_threads = ' || to_char(p_number_of_threads));
92: fnd_file.put_line(fnd_file.log, 'p_number_of_msgs = ' || to_char(p_number_of_msgs));
93:

Line 90: fnd_file.put_line(fnd_file.log, 'p_period_to_wake_up = ' || to_char(p_period_to_wake_up));

86: end if;
87:
88: fnd_file.put_line(fnd_file.log, 'p_delay_worker_start_time = ' || p_delay_worker_start_time);
89: fnd_file.put_line(fnd_file.log, 'p_schedule_worker_stop_date = ' || p_schedule_worker_stop_date);
90: fnd_file.put_line(fnd_file.log, 'p_period_to_wake_up = ' || to_char(p_period_to_wake_up));
91: fnd_file.put_line(fnd_file.log, 'p_number_of_threads = ' || to_char(p_number_of_threads));
92: fnd_file.put_line(fnd_file.log, 'p_number_of_msgs = ' || to_char(p_number_of_msgs));
93:
94: fnd_file.put_line(fnd_file.log, 'Starting Processing');

Line 91: fnd_file.put_line(fnd_file.log, 'p_number_of_threads = ' || to_char(p_number_of_threads));

87:
88: fnd_file.put_line(fnd_file.log, 'p_delay_worker_start_time = ' || p_delay_worker_start_time);
89: fnd_file.put_line(fnd_file.log, 'p_schedule_worker_stop_date = ' || p_schedule_worker_stop_date);
90: fnd_file.put_line(fnd_file.log, 'p_period_to_wake_up = ' || to_char(p_period_to_wake_up));
91: fnd_file.put_line(fnd_file.log, 'p_number_of_threads = ' || to_char(p_number_of_threads));
92: fnd_file.put_line(fnd_file.log, 'p_number_of_msgs = ' || to_char(p_number_of_msgs));
93:
94: fnd_file.put_line(fnd_file.log, 'Starting Processing');
95:

Line 92: fnd_file.put_line(fnd_file.log, 'p_number_of_msgs = ' || to_char(p_number_of_msgs));

88: fnd_file.put_line(fnd_file.log, 'p_delay_worker_start_time = ' || p_delay_worker_start_time);
89: fnd_file.put_line(fnd_file.log, 'p_schedule_worker_stop_date = ' || p_schedule_worker_stop_date);
90: fnd_file.put_line(fnd_file.log, 'p_period_to_wake_up = ' || to_char(p_period_to_wake_up));
91: fnd_file.put_line(fnd_file.log, 'p_number_of_threads = ' || to_char(p_number_of_threads));
92: fnd_file.put_line(fnd_file.log, 'p_number_of_msgs = ' || to_char(p_number_of_msgs));
93:
94: fnd_file.put_line(fnd_file.log, 'Starting Processing');
95:
96:

Line 94: fnd_file.put_line(fnd_file.log, 'Starting Processing');

90: fnd_file.put_line(fnd_file.log, 'p_period_to_wake_up = ' || to_char(p_period_to_wake_up));
91: fnd_file.put_line(fnd_file.log, 'p_number_of_threads = ' || to_char(p_number_of_threads));
92: fnd_file.put_line(fnd_file.log, 'p_number_of_msgs = ' || to_char(p_number_of_msgs));
93:
94: fnd_file.put_line(fnd_file.log, 'Starting Processing');
95:
96:
97: FOR j in 1..p_number_of_threads loop
98:

Line 107: fnd_file.put_line(fnd_file.log, 'Controller Exited');

103:
104:
105: end loop;
106: Commit work;
107: fnd_file.put_line(fnd_file.log, 'Controller Exited');
108:
109: -- Removed Retry portion KBeagle 20-11-02
110:
111: /*

Line 116: fnd_file.put_line(fnd_file.log, 'Retry process time ' || l_time_to_sch);

112: if (p_schedule_retry = 'Y') then
113:
114: l_time_to_sch := to_char(p_hour) || ':' || to_char(p_minutes);
115:
116: fnd_file.put_line(fnd_file.log, 'Retry process time ' || l_time_to_sch);
117:
118: l_call_status := fnd_request.set_repeat_options(repeat_time => l_time_to_sch);
119:
120: if not l_call_status then

Line 125: fnd_file.put_line(fnd_file.log, 'Retry repeat options set for retry process');

121: rollback;
122: raise REPEAT_OPTIONS_NOT_SET;
123: end if;
124:
125: fnd_file.put_line(fnd_file.log, 'Retry repeat options set for retry process');
126:
127: l_request_id := fnd_request.submit_request('IEM', 'IEMMDTWR', '','',FALSE,1,'F','T','MAILPREPROC','IEM_MAIL');
128:
129: if l_request_id = 0 then

Line 136: fnd_file.put_line(fnd_file.log, 'Retry folders scheduled. Request id = ' || to_char(l_request_id));

132: else
133: commit;
134: end if;
135:
136: fnd_file.put_line(fnd_file.log, 'Retry folders scheduled. Request id = ' || to_char(l_request_id));
137:
138: end if;
139:
140: */

Line 161: fnd_file.put_line(fnd_file.log, l_Error_Message);

157: EXCEPTION
158: WHEN INVALID_HOUR THEN
159: FND_MESSAGE.SET_NAME('IEM','IEM_ADM_INVALID_HOUR');
160: l_Error_Message := FND_MESSAGE.GET;
161: fnd_file.put_line(fnd_file.log, l_Error_Message);
162: l_call_status := FND_CONCURRENT.SET_COMPLETION_STATUS('ERROR', l_Error_Message);
163:
164: WHEN INVALID_MINUTE THEN
165: FND_MESSAGE.SET_NAME('IEM','IEM_ADM_INVALID_MINUTE');

Line 167: fnd_file.put_line(fnd_file.log, l_Error_Message);

163:
164: WHEN INVALID_MINUTE THEN
165: FND_MESSAGE.SET_NAME('IEM','IEM_ADM_INVALID_MINUTE');
166: l_Error_Message := FND_MESSAGE.GET;
167: fnd_file.put_line(fnd_file.log, l_Error_Message);
168: l_call_status := FND_CONCURRENT.SET_COMPLETION_STATUS('ERROR', l_Error_Message);
169:
170: WHEN REPEAT_OPTIONS_NOT_SET THEN
171: FND_MESSAGE.SET_NAME('IEM','IEM_ADM_REPEAT_OPTIONS_NOT_SET');

Line 173: fnd_file.put_line(fnd_file.log, l_Error_Message);

169:
170: WHEN REPEAT_OPTIONS_NOT_SET THEN
171: FND_MESSAGE.SET_NAME('IEM','IEM_ADM_REPEAT_OPTIONS_NOT_SET');
172: l_Error_Message := FND_MESSAGE.GET;
173: fnd_file.put_line(fnd_file.log, l_Error_Message);
174: l_call_status := FND_CONCURRENT.SET_COMPLETION_STATUS('ERROR', l_Error_Message);
175:
176: WHEN MAIN_WORKER_NOT_SUBMITTED THEN
177: FND_MESSAGE.SET_NAME('IEM','IEM_ADM_MAIN_WORKER_NOT_SUBMITTED');

Line 179: fnd_file.put_line(fnd_file.log, l_Error_Message);

175:
176: WHEN MAIN_WORKER_NOT_SUBMITTED THEN
177: FND_MESSAGE.SET_NAME('IEM','IEM_ADM_MAIN_WORKER_NOT_SUBMITTED');
178: l_Error_Message := FND_MESSAGE.GET;
179: fnd_file.put_line(fnd_file.log, l_Error_Message);
180: l_call_status := FND_CONCURRENT.SET_COMPLETION_STATUS('ERROR', l_Error_Message);
181:
182: WHEN WORKER_NOT_SUBMITTED THEN
183: FND_MESSAGE.SET_NAME('IEM','IEM_ADM_WORKER_NOT_SUBMITTED');

Line 185: fnd_file.put_line(fnd_file.log, l_Error_Message);

181:
182: WHEN WORKER_NOT_SUBMITTED THEN
183: FND_MESSAGE.SET_NAME('IEM','IEM_ADM_WORKER_NOT_SUBMITTED');
184: l_Error_Message := FND_MESSAGE.GET;
185: fnd_file.put_line(fnd_file.log, l_Error_Message);
186: l_call_status := FND_CONCURRENT.SET_COMPLETION_STATUS('ERROR', l_Error_Message);
187:
188: WHEN RETRY_NOT_SUBMITTED THEN
189: FND_MESSAGE.SET_NAME('IEM','IEM_ADM_RETRY_NOT_SUBMITTED');

Line 191: fnd_file.put_line(fnd_file.log, l_Error_Message);

187:
188: WHEN RETRY_NOT_SUBMITTED THEN
189: FND_MESSAGE.SET_NAME('IEM','IEM_ADM_RETRY_NOT_SUBMITTED');
190: l_Error_Message := FND_MESSAGE.GET;
191: fnd_file.put_line(fnd_file.log, l_Error_Message);
192: l_call_status := FND_CONCURRENT.SET_COMPLETION_STATUS('ERROR', l_Error_Message);
193:
194: WHEN OTHERS THEN
195: FND_MESSAGE.SET_NAME('IEM','IEM_ADM_UNXP_ERROR');

Line 197: fnd_file.put_line(fnd_file.log, l_Error_Message);

193:
194: WHEN OTHERS THEN
195: FND_MESSAGE.SET_NAME('IEM','IEM_ADM_UNXP_ERROR');
196: l_Error_Message := FND_MESSAGE.GET;
197: fnd_file.put_line(fnd_file.log, l_Error_Message);
198: l_call_status := FND_CONCURRENT.SET_COMPLETION_STATUS('ERROR', l_Error_Message);
199: END StartProcess;
200: /*
201:

Line 310: fnd_file.put_line(fnd_file.log, l_Error_Message);

306:
307: WHEN IM_AUTHENTICATION_FAILED THEN
308: FND_MESSAGE.SET_NAME('IEM','IM_AUTHENTICATION_FAILED');
309: l_Error_Message := FND_MESSAGE.GET;
310: fnd_file.put_line(fnd_file.log, l_Error_Message);
311: l_call_status := FND_CONCURRENT.SET_COMPLETION_STATUS('ERROR', l_Error_Message);
312:
313:
314: WHEN IM_CREATEFOLDER_FAILED THEN

Line 317: fnd_file.put_line(fnd_file.log, l_Error_Message);

313:
314: WHEN IM_CREATEFOLDER_FAILED THEN
315: FND_MESSAGE.SET_NAME('IEM','IM_CREATEFOLDER_FAILED');
316: l_Error_Message := FND_MESSAGE.GET;
317: fnd_file.put_line(fnd_file.log, l_Error_Message);
318: l_call_status := FND_CONCURRENT.SET_COMPLETION_STATUS('ERROR', l_Error_Message);
319:
320: end SyncFolder;
321: */