DBA Data[Home] [Help]

APPS.PER_CAGR_UTILITY_PKG dependencies on FND_FILE

Line 842: -- and also to host file system via FND_FILE, if run from SRS.

838: --
839: PROCEDURE write_log_file (p_cagr_request_id IN NUMBER)IS
840:
841: -- Writes text held in pl/sql log table to PER_CAGR_LOG table,
842: -- and also to host file system via FND_FILE, if run from SRS.
843:
844: l_proc constant varchar2(61) := g_pkg || '.write_log_file';
845:
846: --

Line 885: -- log is additionally written out via FND_FILE,

881:
882: hr_utility.set_location(l_proc, 20);
883:
884: if fnd_global.conc_request_id <> -1 then
885: -- log is additionally written out via FND_FILE,
886: -- for visibility from view SRS window.
887:
888: for i in g_log_text_table.first .. g_log_text_table.last loop
889: fnd_file.put_line(which => fnd_file.log, -- Bug 2719987

Line 889: fnd_file.put_line(which => fnd_file.log, -- Bug 2719987

885: -- log is additionally written out via FND_FILE,
886: -- for visibility from view SRS window.
887:
888: for i in g_log_text_table.first .. g_log_text_table.last loop
889: fnd_file.put_line(which => fnd_file.log, -- Bug 2719987
890: buff => g_log_text_table(i));
891: end loop;
892: end if;
893: