DBA Data[Home] [Help]

APPS.OKC_OUTCOME_INIT_PVT dependencies on FND_FILE

Line 868: fnd_file.put_line(fnd_file.log,'Total Queue Size '||l_queue_size);

864: END LOOP;
865:
866: COMMIT;
867:
868: fnd_file.put_line(fnd_file.log,'Total Queue Size '||l_queue_size);
869: fnd_file.put_line(fnd_file.log,'Total Contracts picked from interface table '||l_oks_cnt);
870:
871: ---call the custom hook
872: oks_code_hook.custom_da_prc(l_oks_cnt,x_hook);

Line 869: fnd_file.put_line(fnd_file.log,'Total Contracts picked from interface table '||l_oks_cnt);

865:
866: COMMIT;
867:
868: fnd_file.put_line(fnd_file.log,'Total Queue Size '||l_queue_size);
869: fnd_file.put_line(fnd_file.log,'Total Contracts picked from interface table '||l_oks_cnt);
870:
871: ---call the custom hook
872: oks_code_hook.custom_da_prc(l_oks_cnt,x_hook);
873:

Line 875: fnd_file.put_line(fnd_file.log,'Error in the custom hook oks_code_hook.custom_da_prc ');

871: ---call the custom hook
872: oks_code_hook.custom_da_prc(l_oks_cnt,x_hook);
873:
874: IF x_hook = -1 THEN
875: fnd_file.put_line(fnd_file.log,'Error in the custom hook oks_code_hook.custom_da_prc ');
876: retcode :=2;
877: errbuf :=substr('Error in custom hook OKS_CODE_HOOK.CUSTOM_DA_PRC ',1,200);
878: END IF;
879:

Line 883: fnd_file.put_line(fnd_file.log,'Error in the procedure OKC_OUTCOME_INIT_PVT.SUBMIT_DA_WF_MGR '||sqlerrm);

879:
880: EXCEPTION
881: WHEN OTHERS THEN
882:
883: fnd_file.put_line(fnd_file.log,'Error in the procedure OKC_OUTCOME_INIT_PVT.SUBMIT_DA_WF_MGR '||sqlerrm);
884: retcode := 2;
885: errbuf := substr(sqlerrm,1,200);
886:
887: END submit_da_wf_mgr;