DBA Data[Home] [Help]

APPS.GMF_ALLOC_PROC dependencies on UTL_FILE

Line 213: WHEN utl_file.invalid_path THEN

209: FND_LOG.STRING(FND_LOG.LEVEL_PROCEDURE,C_MODULE||'.end','Cost Allocation process completed successfully');
210: END IF;
211:
212: EXCEPTION
213: WHEN utl_file.invalid_path THEN
214: retcode := 3;
215: errbuf := 'Invalid path - '||to_char(SQLCODE) || ' ' || SQLERRM;
216: end_proc (errbuf);
217: WHEN utl_file.invalid_mode THEN

Line 217: WHEN utl_file.invalid_mode THEN

213: WHEN utl_file.invalid_path THEN
214: retcode := 3;
215: errbuf := 'Invalid path - '||to_char(SQLCODE) || ' ' || SQLERRM;
216: end_proc (errbuf);
217: WHEN utl_file.invalid_mode THEN
218: retcode := 3;
219: errbuf := 'Invalid Mode - '||to_char(SQLCODE) || ' ' || SQLERRM;
220: end_proc (errbuf);
221: WHEN utl_file.invalid_filehandle then

Line 221: WHEN utl_file.invalid_filehandle then

217: WHEN utl_file.invalid_mode THEN
218: retcode := 3;
219: errbuf := 'Invalid Mode - '||to_char(SQLCODE) || ' ' || SQLERRM;
220: end_proc (errbuf);
221: WHEN utl_file.invalid_filehandle then
222: retcode := 3;
223: errbuf := 'Invalid filehandle - '||to_char(SQLCODE) || ' ' || SQLERRM;
224: end_proc (errbuf);
225: WHEN utl_file.invalid_operation then

Line 225: WHEN utl_file.invalid_operation then

221: WHEN utl_file.invalid_filehandle then
222: retcode := 3;
223: errbuf := 'Invalid filehandle - '||to_char(SQLCODE) || ' ' || SQLERRM;
224: end_proc (errbuf);
225: WHEN utl_file.invalid_operation then
226: retcode := 3;
227: errbuf := 'Invalid operation - '||to_char(SQLCODE) || ' ' || SQLERRM;
228: end_proc (errbuf);
229: WHEN utl_file.write_error then

Line 229: WHEN utl_file.write_error then

225: WHEN utl_file.invalid_operation then
226: retcode := 3;
227: errbuf := 'Invalid operation - '||to_char(SQLCODE) || ' ' || SQLERRM;
228: end_proc (errbuf);
229: WHEN utl_file.write_error then
230: retcode := 3;
231: errbuf := 'Write error - '||to_char(SQLCODE) || ' ' || SQLERRM;
232: end_proc (errbuf);
233: WHEN others THEN