DBA Data[Home] [Help]

APPS.GMF_LC_ADJ_TRANSACTIONS_PKG dependencies on UTL_FILE

Line 1308: WHEN utl_file.invalid_path THEN

1304: END IF;
1305:
1306: EXCEPTION
1307: ----
1308: WHEN utl_file.invalid_path THEN
1309: retcode := 3;
1310: errbuf := 'Invalid path - '||to_char(SQLCODE) || ' ' || SQLERRM;
1311: l_tmp := fnd_concurrent.set_completion_status('ERROR',sqlerrm || ' in ' || l_proc_name);
1312: WHEN utl_file.invalid_mode THEN

Line 1312: WHEN utl_file.invalid_mode THEN

1308: WHEN utl_file.invalid_path THEN
1309: retcode := 3;
1310: errbuf := 'Invalid path - '||to_char(SQLCODE) || ' ' || SQLERRM;
1311: l_tmp := fnd_concurrent.set_completion_status('ERROR',sqlerrm || ' in ' || l_proc_name);
1312: WHEN utl_file.invalid_mode THEN
1313: retcode := 3;
1314: errbuf := 'Invalid Mode - '||to_char(SQLCODE) || ' ' || SQLERRM;
1315: l_tmp := fnd_concurrent.set_completion_status('ERROR',sqlerrm || ' in ' || l_proc_name);
1316: WHEN utl_file.invalid_filehandle then

Line 1316: WHEN utl_file.invalid_filehandle then

1312: WHEN utl_file.invalid_mode THEN
1313: retcode := 3;
1314: errbuf := 'Invalid Mode - '||to_char(SQLCODE) || ' ' || SQLERRM;
1315: l_tmp := fnd_concurrent.set_completion_status('ERROR',sqlerrm || ' in ' || l_proc_name);
1316: WHEN utl_file.invalid_filehandle then
1317: retcode := 3;
1318: errbuf := 'Invalid filehandle - '||to_char(SQLCODE) || ' ' || SQLERRM;
1319: l_tmp := fnd_concurrent.set_completion_status('ERROR',sqlerrm || ' in ' || l_proc_name);
1320: WHEN utl_file.invalid_operation then

Line 1320: WHEN utl_file.invalid_operation then

1316: WHEN utl_file.invalid_filehandle then
1317: retcode := 3;
1318: errbuf := 'Invalid filehandle - '||to_char(SQLCODE) || ' ' || SQLERRM;
1319: l_tmp := fnd_concurrent.set_completion_status('ERROR',sqlerrm || ' in ' || l_proc_name);
1320: WHEN utl_file.invalid_operation then
1321: retcode := 3;
1322: errbuf := 'Invalid operation - '||to_char(SQLCODE) || ' ' || SQLERRM;
1323: l_tmp := fnd_concurrent.set_completion_status('ERROR',sqlerrm || ' in ' || l_proc_name);
1324: WHEN utl_file.write_error then

Line 1324: WHEN utl_file.write_error then

1320: WHEN utl_file.invalid_operation then
1321: retcode := 3;
1322: errbuf := 'Invalid operation - '||to_char(SQLCODE) || ' ' || SQLERRM;
1323: l_tmp := fnd_concurrent.set_completion_status('ERROR',sqlerrm || ' in ' || l_proc_name);
1324: WHEN utl_file.write_error then
1325: retcode := 3;
1326: errbuf := 'Write error - '||to_char(SQLCODE) || ' ' || SQLERRM;
1327: l_tmp := fnd_concurrent.set_completion_status('ERROR',sqlerrm || ' in ' || l_proc_name);
1328: WHEN FND_API.G_EXC_ERROR THEN