DBA Data[Home] [Help]

APPS.EAM_WOREP_PUB dependencies on FND_FILE

Line 227: FND_FILE.PUT_LINE(FND_FILE.OUTPUT,'' );

223: l_xmldoc := EAM_WorkOrderRep_PVT.getWoReportXML(wip_entity_id_tbl,l_operation,l_material,l_resource,l_direct_item,l_short_attachment,l_long_attachment ,
224: l_file_attachment,l_work_request ,l_meter ,l_quality_plan,l_asset_bom,l_safety_permit,l_safety_clearance);
225: end if;
226: l_encoding := fnd_profile.value('ICX_CLIENT_IANA_ENCODING');
227: FND_FILE.PUT_LINE(FND_FILE.OUTPUT,'' );
228: FND_FILE.PUT_LINE(FND_FILE.OUTPUT, '');
229: l_length := nvl(DBMS_LOB.getlength(l_xmldoc), 0);
230: l_offset := 1;
231:

Line 228: FND_FILE.PUT_LINE(FND_FILE.OUTPUT, '');

224: l_file_attachment,l_work_request ,l_meter ,l_quality_plan,l_asset_bom,l_safety_permit,l_safety_clearance);
225: end if;
226: l_encoding := fnd_profile.value('ICX_CLIENT_IANA_ENCODING');
227: FND_FILE.PUT_LINE(FND_FILE.OUTPUT,'' );
228: FND_FILE.PUT_LINE(FND_FILE.OUTPUT, '');
229: l_length := nvl(DBMS_LOB.getlength(l_xmldoc), 0);
230: l_offset := 1;
231:
232: WHILE (l_offset <= l_length)

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

234: l_char := dbms_lob.substr(l_xmldoc,1,l_offset);
235:
236: IF (l_char = to_char(10))
237: THEN
238: fnd_file.new_line(fnd_file.output, 1);
239: ELSE
240: fnd_file.put(fnd_file.output, l_char);
241: END IF;
242:

Line 240: fnd_file.put(fnd_file.output, l_char);

236: IF (l_char = to_char(10))
237: THEN
238: fnd_file.new_line(fnd_file.output, 1);
239: ELSE
240: fnd_file.put(fnd_file.output, l_char);
241: END IF;
242:
243: l_offset := l_offset + 1;
244: END LOOP;

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

242:
243: l_offset := l_offset + 1;
244: END LOOP;
245:
246: fnd_file.new_line(fnd_file.output, 1);
247:
248: FND_FILE.PUT_LINE(FND_FILE.OUTPUT, '');
249:
250: retcode := 0;

Line 248: FND_FILE.PUT_LINE(FND_FILE.OUTPUT, '');

244: END LOOP;
245:
246: fnd_file.new_line(fnd_file.output, 1);
247:
248: FND_FILE.PUT_LINE(FND_FILE.OUTPUT, '');
249:
250: retcode := 0;
251: EXCEPTION
252: