DBA Data[Home] [Help]

APPS.WIP_TIME_ENTRY_PUB dependencies on FND_CONCURRENT

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

280: if l_return_status = 1 and l_status =0 then
281: retcode :=1;
282: errbuf := 'The Import program successfully imported all records';
283: wip_ws_util.trace_log(errbuf);
284: l_conc_status := FND_CONCURRENT.SET_COMPLETION_STATUS('NORMAL',errbuf);
285: else
286: retcode := 1;
287: errbuf := 'The Import program marked at least one row as errored';
288: wip_ws_util.trace_log(errbuf);

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

285: else
286: retcode := 1;
287: errbuf := 'The Import program marked at least one row as errored';
288: wip_ws_util.trace_log(errbuf);
289: l_conc_status := FND_CONCURRENT.SET_COMPLETION_STATUS('WARNING',errbuf);
290: end if;
291:
292: exception
293: when e_null_org_id then

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

293: when e_null_org_id then
294: retcode := -1;
295: errbuf := 'Organization parameter cannot be null';
296: wip_ws_util.trace_log(errbuf);
297: l_conc_status := FND_CONCURRENT.SET_COMPLETION_STATUS('ERROR',errbuf);
298: when others then
299: retcode := -1;
300: errbuf := 'Errors encountered in interface txn, please check the log file.';
301: wip_ws_util.trace_log(errbuf);

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

299: retcode := -1;
300: errbuf := 'Errors encountered in interface txn, please check the log file.';
301: wip_ws_util.trace_log(errbuf);
302: wip_ws_util.trace_log(sqlerrm(sqlcode));
303: l_conc_status := FND_CONCURRENT.SET_COMPLETION_STATUS('ERROR',errbuf);
304: end process_interface_records;
305:
306: procedure get_time_preferences(p_organization_id IN NUMBER default null,
307: x_shift_enabled OUT NOCOPY boolean,