DBA Data[Home] [Help]

APPS.OKL_CNTRCT_FIN_EXT_MASTER_PVT dependencies on FND_FILE

Line 14: fnd_file.put_line(fnd_file.log, p_message);

10: p_message IN VARCHAR2
11: ) IS
12: BEGIN
13:
14: fnd_file.put_line(fnd_file.log, p_message);
15: END write_to_log;
16:
17:
18: PROCEDURE write_to_output(

Line 23: fnd_file.put_line(fnd_file.output, p_message);

19: p_message IN VARCHAR2
20: ) IS
21: BEGIN
22:
23: fnd_file.put_line(fnd_file.output, p_message);
24: END write_to_output;
25:
26:
27: /*========================================================================

Line 163: fnd_file.new_line(fnd_file.log,2);

159: -- run again, therefore break out of the loop.
160:
161:
162: -- Add couple of blank lines
163: fnd_file.new_line(fnd_file.log,2);
164: fnd_file.new_line(fnd_file.output,2);
165:
166:
167: write_to_log('l_req_data : '||l_req_data);

Line 164: fnd_file.new_line(fnd_file.output,2);

160:
161:
162: -- Add couple of blank lines
163: fnd_file.new_line(fnd_file.log,2);
164: fnd_file.new_line(fnd_file.output,2);
165:
166:
167: write_to_log('l_req_data : '||l_req_data);
168: