DBA Data[Home] [Help]

APPS.AR_CUMULATIVE_BALANCE_REPORT dependencies on FND_FILE

Line 154: fnd_file.put_line (

150: BEGIN
151:
152: IF (p_mode = 'ALWAYS') THEN
153:
154: fnd_file.put_line (
155: which => fnd_file.log,
156: buff => p_string);
157:
158: ELSIF pg_debug IN ('Y', 'C') THEN

Line 155: which => fnd_file.log,

151:
152: IF (p_mode = 'ALWAYS') THEN
153:
154: fnd_file.put_line (
155: which => fnd_file.log,
156: buff => p_string);
157:
158: ELSIF pg_debug IN ('Y', 'C') THEN
159:

Line 160: fnd_file.put_line (

156: buff => p_string);
157:
158: ELSIF pg_debug IN ('Y', 'C') THEN
159:
160: fnd_file.put_line (
161: which => fnd_file.log,
162: buff => p_string);
163:
164: END IF;

Line 161: which => fnd_file.log,

157:
158: ELSIF pg_debug IN ('Y', 'C') THEN
159:
160: fnd_file.put_line (
161: which => fnd_file.log,
162: buff => p_string);
163:
164: END IF;
165:

Line 218: fnd_file.put(

214: l_offset_temp := DBMS_LOB.INSTR(l_chunk,'>',l_offset_temp,1);
215: l_chunk1 := dbms_lob.substr (l_chunk, l_offset_temp, 1);
216: l_chunk2 := dbms_lob.substr (l_chunk, l_chunk_size-l_offset_temp, l_offset_temp+1);
217:
218: fnd_file.put(
219: which => fnd_file.output,
220: buff => l_chunk1);
221: fnd_file.new_line(fnd_file.output);
222: fnd_file.put(

Line 219: which => fnd_file.output,

215: l_chunk1 := dbms_lob.substr (l_chunk, l_offset_temp, 1);
216: l_chunk2 := dbms_lob.substr (l_chunk, l_chunk_size-l_offset_temp, l_offset_temp+1);
217:
218: fnd_file.put(
219: which => fnd_file.output,
220: buff => l_chunk1);
221: fnd_file.new_line(fnd_file.output);
222: fnd_file.put(
223: which => fnd_file.output,

Line 221: fnd_file.new_line(fnd_file.output);

217:
218: fnd_file.put(
219: which => fnd_file.output,
220: buff => l_chunk1);
221: fnd_file.new_line(fnd_file.output);
222: fnd_file.put(
223: which => fnd_file.output,
224: buff => l_chunk2);
225:

Line 222: fnd_file.put(

218: fnd_file.put(
219: which => fnd_file.output,
220: buff => l_chunk1);
221: fnd_file.new_line(fnd_file.output);
222: fnd_file.put(
223: which => fnd_file.output,
224: buff => l_chunk2);
225:
226: /*fnd_file.put(

Line 223: which => fnd_file.output,

219: which => fnd_file.output,
220: buff => l_chunk1);
221: fnd_file.new_line(fnd_file.output);
222: fnd_file.put(
223: which => fnd_file.output,
224: buff => l_chunk2);
225:
226: /*fnd_file.put(
227: which => fnd_file.output,

Line 226: /*fnd_file.put(

222: fnd_file.put(
223: which => fnd_file.output,
224: buff => l_chunk2);
225:
226: /*fnd_file.put(
227: which => fnd_file.output,
228: buff => l_chunk);*/
229:
230: -- Bug 6696706 ends

Line 227: which => fnd_file.output,

223: which => fnd_file.output,
224: buff => l_chunk2);
225:
226: /*fnd_file.put(
227: which => fnd_file.output,
228: buff => l_chunk);*/
229:
230: -- Bug 6696706 ends
231:

Line 237: fnd_file.new_line(fnd_file.output,1);

233: l_offset := l_offset + l_chunk_size;
234:
235: END LOOP;
236:
237: fnd_file.new_line(fnd_file.output,1);
238:
239: debug('ar_cumulative_balance_report.process_clob(-)');
240:
241: EXCEPTION