DBA Data[Home] [Help]

APPS.GMF_ALLOC_PROC dependencies on UTL_FILE

Line 229: WHEN utl_file.invalid_path THEN

225: FND_LOG.STRING(FND_LOG.LEVEL_PROCEDURE,C_MODULE||'.end','Cost Allocation process completed successfully');
226: END IF;
227:
228: EXCEPTION
229: WHEN utl_file.invalid_path THEN
230: retcode := 3;
231: errbuf := 'Invalid path - '||to_char(SQLCODE) || ' ' || SQLERRM;
232: end_proc (errbuf);
233: WHEN utl_file.invalid_mode THEN

Line 233: WHEN utl_file.invalid_mode THEN

229: WHEN utl_file.invalid_path THEN
230: retcode := 3;
231: errbuf := 'Invalid path - '||to_char(SQLCODE) || ' ' || SQLERRM;
232: end_proc (errbuf);
233: WHEN utl_file.invalid_mode THEN
234: retcode := 3;
235: errbuf := 'Invalid Mode - '||to_char(SQLCODE) || ' ' || SQLERRM;
236: end_proc (errbuf);
237: WHEN utl_file.invalid_filehandle then

Line 237: WHEN utl_file.invalid_filehandle then

233: WHEN utl_file.invalid_mode THEN
234: retcode := 3;
235: errbuf := 'Invalid Mode - '||to_char(SQLCODE) || ' ' || SQLERRM;
236: end_proc (errbuf);
237: WHEN utl_file.invalid_filehandle then
238: retcode := 3;
239: errbuf := 'Invalid filehandle - '||to_char(SQLCODE) || ' ' || SQLERRM;
240: end_proc (errbuf);
241: WHEN utl_file.invalid_operation then

Line 241: WHEN utl_file.invalid_operation then

237: WHEN utl_file.invalid_filehandle then
238: retcode := 3;
239: errbuf := 'Invalid filehandle - '||to_char(SQLCODE) || ' ' || SQLERRM;
240: end_proc (errbuf);
241: WHEN utl_file.invalid_operation then
242: retcode := 3;
243: errbuf := 'Invalid operation - '||to_char(SQLCODE) || ' ' || SQLERRM;
244: end_proc (errbuf);
245: WHEN utl_file.write_error then

Line 245: WHEN utl_file.write_error then

241: WHEN utl_file.invalid_operation then
242: retcode := 3;
243: errbuf := 'Invalid operation - '||to_char(SQLCODE) || ' ' || SQLERRM;
244: end_proc (errbuf);
245: WHEN utl_file.write_error then
246: retcode := 3;
247: errbuf := 'Write error - '||to_char(SQLCODE) || ' ' || SQLERRM;
248: end_proc (errbuf);
249: WHEN others THEN