DBA Data[Home] [Help]

APPS.PER_CHECKLIST_EVENTS dependencies on FND_FILE

Line 648: fnd_file.put_line(FND_FILE.LOG, ' Allocate Tasks Process Started');

644: --l_events pending_events%rowtype;
645: --
646: begin
647: --
648: fnd_file.put_line(FND_FILE.LOG, ' Allocate Tasks Process Started');
649: --
650: g_debug := hr_utility.debug_enabled;
651: if g_debug then
652: l_proc := g_package||'Allocate_Tasks';

Line 700: fnd_file.put_line(FND_FILE.LOG, ' Allocate Tasks Process Completed');

696: end if;
697: --
698: commit;
699: --
700: fnd_file.put_line(FND_FILE.LOG, ' Allocate Tasks Process Completed');
701: retcode := 0;
702: --
703: exception
704: when others then

Line 706: fnd_file.put_line(FND_FILE.LOG, ' Allocate Tasks Process Errored');

702: --
703: exception
704: when others then
705: --
706: fnd_file.put_line(FND_FILE.LOG, ' Allocate Tasks Process Errored');
707: errbuf := substr(sqlerrm,0,240);
708: retcode := sqlcode;
709: --
710: fnd_file.put_line(fnd_file.log,sqlerrm||' '||sqlcode);

Line 710: fnd_file.put_line(fnd_file.log,sqlerrm||' '||sqlcode);

706: fnd_file.put_line(FND_FILE.LOG, ' Allocate Tasks Process Errored');
707: errbuf := substr(sqlerrm,0,240);
708: retcode := sqlcode;
709: --
710: fnd_file.put_line(fnd_file.log,sqlerrm||' '||sqlcode);
711: --
712: raise;
713: end allocate_tasks;
714: --