DBA Data[Home] [Help]

APPS.FA_ASSET_TRACE_PVT dependencies on FND_FILE

Line 1110: fnd_file.put(FND_FILE.OUTPUT, l_header);

1106:
1107: if (p_use_utl_file = 'Y') then
1108: UTL_FILE.PUT_LINE(g_outfile, l_header);
1109: else
1110: fnd_file.put(FND_FILE.OUTPUT, l_header);
1111: end if;
1112:
1113: build_anchors(g_anchor_tbl);
1114:

Line 1124: fnd_file.put(FND_FILE.OUTPUT,g_anchor);

1120: UTL_FILE.PUT_LINE(g_outfile,g_output_tbl(i));
1121: --UTL_FILE.NEW_LINE(g_outfile,1);
1122: END LOOP;
1123: else
1124: fnd_file.put(FND_FILE.OUTPUT,g_anchor);
1125: FOR i IN g_output_tbl.first .. g_output_tbl.last LOOP
1126: fnd_file.put(FND_FILE.OUTPUT,g_output_tbl(i));
1127: fnd_file.new_line(FND_FILE.OUTPUT,1);
1128: END LOOP;

Line 1126: fnd_file.put(FND_FILE.OUTPUT,g_output_tbl(i));

1122: END LOOP;
1123: else
1124: fnd_file.put(FND_FILE.OUTPUT,g_anchor);
1125: FOR i IN g_output_tbl.first .. g_output_tbl.last LOOP
1126: fnd_file.put(FND_FILE.OUTPUT,g_output_tbl(i));
1127: fnd_file.new_line(FND_FILE.OUTPUT,1);
1128: END LOOP;
1129: end if;
1130:

Line 1127: fnd_file.new_line(FND_FILE.OUTPUT,1);

1123: else
1124: fnd_file.put(FND_FILE.OUTPUT,g_anchor);
1125: FOR i IN g_output_tbl.first .. g_output_tbl.last LOOP
1126: fnd_file.put(FND_FILE.OUTPUT,g_output_tbl(i));
1127: fnd_file.new_line(FND_FILE.OUTPUT,1);
1128: END LOOP;
1129: end if;
1130:
1131: l_no_rec := l_no_rec ||'The following table(s) contain no data for this asset:';

Line 1143: fnd_file.put(FND_FILE.OUTPUT,l_no_rec);

1139: l_no_rec := substr(l_no_rec, 1, length(l_no_rec) -4)||'';
1140: if p_use_utl_file = 'Y' then
1141: UTL_FILE.PUT_LINE(g_outfile,l_no_rec);
1142: else
1143: fnd_file.put(FND_FILE.OUTPUT,l_no_rec);
1144: end if;
1145:
1146: END IF;
1147:

Line 1154: fnd_file.put(FND_FILE.OUTPUT,' ');

1150: log(l_calling_fn, 'Trying to close out file');
1151: ocfile (g_outfile, null,'C');
1152: --g_use_utl_file := 'N'; /* have no clue why resetting this generates an error; so, leaving alone for now. */
1153: else
1154: fnd_file.put(FND_FILE.OUTPUT,' ');
1155: end if;
1156: g_output_tbl.delete; g_no_rec_tbl.delete;
1157: log(l_calling_fn, 'Successfully leaving save_output');
1158:

Line 1188: Fnd_File.Put_Line (Fnd_File.Log, p_calling_fn|| ': '||p_msg);

1184:
1185: if ((g_use_utl_file = 'Y') and (utl_file.is_open(g_logfile) = TRUE)) then
1186: UTL_FILE.PUT_LINE(g_logfile,p_calling_fn|| ': '||p_msg);
1187: else
1188: Fnd_File.Put_Line (Fnd_File.Log, p_calling_fn|| ': '||p_msg);
1189: end if;
1190: --
1191: IF (FND_LOG.LEVEL_STATEMENT >= FND_LOG.G_CURRENT_RUNTIME_LEVEL) THEN
1192: l_module := FND_GLOBAL.APPLICATION_SHORT_NAME||'.PLSQL.'||p_calling_fn;