DBA Data[Home] [Help]

APPS.MSC_UTIL dependencies on FND_FILE

Line 24: FND_FILE.PUT_LINE(FND_FILE.LOG, buf); -- add a line of text to the log file and

20:
21: PROCEDURE Print_Msg (buf IN VARCHAR2)
22: IS
23: BEGIN
24: FND_FILE.PUT_LINE(FND_FILE.LOG, buf); -- add a line of text to the log file and
25: EXCEPTION
26: WHEN OTHERS THEN
27: NULL; --suppressing the exceptions
28: END Print_Msg;

Line 303: FND_FILE.PUT_LINE(FND_FILE.LOG, buf);

299: return;
300: END IF;
301: -- add a line of text to the log file and
302:
303: FND_FILE.PUT_LINE(FND_FILE.LOG, buf);
304:
305: return;
306:
307: EXCEPTION

Line 318: FND_FILE.PUT_LINE(FND_FILE.LOG, buf);

314: IS
315: BEGIN
316:
317: -- log the message
318: FND_FILE.PUT_LINE(FND_FILE.LOG, buf);
319:
320: return;
321:
322: EXCEPTION

Line 333: FND_FILE.PUT_LINE(FND_FILE.OUTPUT, buf);

329: IS
330: BEGIN
331: -- add a line of text to the output file and
332: -- add the line terminator
333: FND_FILE.PUT_LINE(FND_FILE.OUTPUT, buf);
334: FND_FILE.NEW_LINE(FND_FILE.OUTPUT,1);
335:
336: return;
337:

Line 334: FND_FILE.NEW_LINE(FND_FILE.OUTPUT,1);

330: BEGIN
331: -- add a line of text to the output file and
332: -- add the line terminator
333: FND_FILE.PUT_LINE(FND_FILE.OUTPUT, buf);
334: FND_FILE.NEW_LINE(FND_FILE.OUTPUT,1);
335:
336: return;
337:
338: EXCEPTION