DBA Data[Home] [Help]

APPS.WMS_TASK_ACTION_PVT dependencies on FND_CONCURRENT

Line 1288: ret := fnd_concurrent.set_completion_status('NORMAL', errbuf);

1284: END IF;
1285: END IF;
1286:
1287: retcode := '0';
1288: ret := fnd_concurrent.set_completion_status('NORMAL', errbuf);
1289: DEBUG( 'Exiting TASK_ACTION_CONC_PROG with status = '||retcode);
1290:
1291: EXCEPTION
1292: WHEN OTHERS

Line 1297: ret := fnd_concurrent.set_completion_status('ERROR', errbuf);

1293: THEN
1294: retcode := '2';
1295: errbuf := 'Unexpected error has occured in WMS_TASK_ACTION_PVT.TASK_ACTION_CONC_PROG. '
1296: || 'Oracle error message is ' || SQLERRM;
1297: ret := fnd_concurrent.set_completion_status('ERROR', errbuf);
1298: DEBUG( 'Unexpected error has occured. Oracle error message is '
1299: ||SQLERRM, 'WMS_TASK_ACTION_PVT.TASK_ACTION_CONC_PROG - other error');
1300: END TASK_ACTION_CONC_PROG;
1301: