DBA Data[Home] [Help]

APPS.FLM_KANBAN_PLANNING_UTIL dependencies on FND_CONCURRENT

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

860: if l_return_status = 1 then
861: retcode :=1;
862: errbuf := 'The Import program successfully imported all records';
863: fnd_file.put_line(fnd_file.log,errbuf);
864: l_conc_status := FND_CONCURRENT.SET_COMPLETION_STATUS('NORMAL',errbuf);
865: else
866: retcode := 1;
867: errbuf := 'The Import program marked at least one row as errored';
868: fnd_file.put_line(fnd_file.log,errbuf);

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

865: else
866: retcode := 1;
867: errbuf := 'The Import program marked at least one row as errored';
868: fnd_file.put_line(fnd_file.log,errbuf);
869: l_conc_status := FND_CONCURRENT.SET_COMPLETION_STATUS('WARNING',errbuf);
870: end if;
871:
872: exception
873: when e_null_org_id then

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

873: when e_null_org_id then
874: retcode := -1;
875: errbuf := 'Organization parameter cannot be null';
876: fnd_file.put_line(fnd_file.log,errbuf);
877: l_conc_status := FND_CONCURRENT.SET_COMPLETION_STATUS('ERROR',errbuf);
878: when others then
879: retcode := -1;
880: errbuf := 'Errors encountered in interface txn, please check the log file.';
881: fnd_file.put_line(fnd_file.log,errbuf);

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

879: retcode := -1;
880: errbuf := 'Errors encountered in interface txn, please check the log file.';
881: fnd_file.put_line(fnd_file.log,errbuf);
882: fnd_file.put_line(fnd_file.log,sqlerrm(sqlcode));
883: l_conc_status := FND_CONCURRENT.SET_COMPLETION_STATUS('ERROR',errbuf);
884: end process_interface_records;
885:
886: function get_item_id(p_org_id in number,
887: p_item_segments in varchar2)