DBA Data[Home] [Help]

APPS.WMS_TASK_ACTION_PVT dependencies on FND_CONCURRENT

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

1309: END IF;
1310: END IF;
1311:
1312: retcode := '0';
1313: ret := fnd_concurrent.set_completion_status('NORMAL', errbuf);
1314: DEBUG( 'Exiting TASK_ACTION_CONC_PROG with status = '||retcode);
1315:
1316: EXCEPTION
1317: WHEN OTHERS

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

1318: THEN
1319: retcode := '2';
1320: errbuf := 'Unexpected error has occured in WMS_TASK_ACTION_PVT.TASK_ACTION_CONC_PROG. '
1321: || 'Oracle error message is ' || SQLERRM;
1322: ret := fnd_concurrent.set_completion_status('ERROR', errbuf);
1323: DEBUG( 'Unexpected error has occured. Oracle error message is '
1324: ||SQLERRM, 'WMS_TASK_ACTION_PVT.TASK_ACTION_CONC_PROG - other error');
1325: END TASK_ACTION_CONC_PROG;
1326: