DBA Data[Home] [Help]

APPS.WIP_TIME_ENTRY_PUB dependencies on FND_CONCURRENT

Line 306: l_conc_status := FND_CONCURRENT.SET_COMPLETION_STATUS('NORMAL',errbuf);

302: if l_return_status = 1 and l_status =0 then
303: retcode :=1;
304: errbuf := 'The Import program successfully imported all records';
305: wip_ws_util.trace_log(errbuf);
306: l_conc_status := FND_CONCURRENT.SET_COMPLETION_STATUS('NORMAL',errbuf);
307: else
308: retcode := 1;
309: errbuf := 'The Import program marked at least one row as errored';
310: wip_ws_util.trace_log(errbuf);

Line 311: l_conc_status := FND_CONCURRENT.SET_COMPLETION_STATUS('WARNING',errbuf);

307: else
308: retcode := 1;
309: errbuf := 'The Import program marked at least one row as errored';
310: wip_ws_util.trace_log(errbuf);
311: l_conc_status := FND_CONCURRENT.SET_COMPLETION_STATUS('WARNING',errbuf);
312: end if;
313:
314: exception
315: when e_null_org_id then

Line 319: l_conc_status := FND_CONCURRENT.SET_COMPLETION_STATUS('ERROR',errbuf);

315: when e_null_org_id then
316: retcode := -1;
317: errbuf := 'Organization parameter cannot be null';
318: wip_ws_util.trace_log(errbuf);
319: l_conc_status := FND_CONCURRENT.SET_COMPLETION_STATUS('ERROR',errbuf);
320: when others then
321: retcode := -1;
322: errbuf := 'Errors encountered in interface txn, please check the log file.';
323: wip_ws_util.trace_log(errbuf);

Line 325: l_conc_status := FND_CONCURRENT.SET_COMPLETION_STATUS('ERROR',errbuf);

321: retcode := -1;
322: errbuf := 'Errors encountered in interface txn, please check the log file.';
323: wip_ws_util.trace_log(errbuf);
324: wip_ws_util.trace_log(sqlerrm(sqlcode));
325: l_conc_status := FND_CONCURRENT.SET_COMPLETION_STATUS('ERROR',errbuf);
326: end process_interface_records;
327:
328: procedure get_time_preferences(p_organization_id IN NUMBER default null,
329: x_shift_enabled OUT NOCOPY boolean,