DBA Data[Home] [Help]

APPS.GMF_LC_ADJ_TRANSACTIONS_PKG dependencies on FND_CONCURRENT

Line 1311: l_tmp := fnd_concurrent.set_completion_status('ERROR',sqlerrm || ' in ' || l_proc_name);

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
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);

Line 1315: l_tmp := fnd_concurrent.set_completion_status('ERROR',sqlerrm || ' in ' || l_proc_name);

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
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);

Line 1319: l_tmp := fnd_concurrent.set_completion_status('ERROR',sqlerrm || ' in ' || l_proc_name);

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
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);

Line 1323: l_tmp := fnd_concurrent.set_completion_status('ERROR',sqlerrm || ' in ' || l_proc_name);

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
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);

Line 1327: l_tmp := fnd_concurrent.set_completion_status('ERROR',sqlerrm || ' in ' || l_proc_name);

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
1329: retcode := 3;
1330: errbuf := 'An error has ocurred: ' || SQLERRM;
1331: WHEN FND_API.G_EXC_UNEXPECTED_ERROR THEN

Line 1337: l_tmp := fnd_concurrent.set_completion_status('ERROR',sqlerrm || ' in ' || l_proc_name);

1333: errbuf := 'An unexpected error has ocurred: ' || SQLERRM;
1334: WHEN others THEN
1335: retcode := 3;
1336: errbuf := to_char(SQLCODE) || ' ' || SQLERRM;
1337: l_tmp := fnd_concurrent.set_completion_status('ERROR',sqlerrm || ' in ' || l_proc_name);
1338:
1339: END Process_Lc_Adjustments;
1340:
1341: END GMF_LC_ADJ_TRANSACTIONS_PKG;