DBA Data[Home] [Help]

APPS.MSC_UTIL dependencies on FND_FILE

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

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

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

284: return;
285: END IF;
286: -- add a line of text to the log file and
287:
288: FND_FILE.PUT_LINE(FND_FILE.LOG, buf);
289:
290: return;
291:
292: EXCEPTION

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

299: IS
300: BEGIN
301:
302: -- log the message
303: FND_FILE.PUT_LINE(FND_FILE.LOG, buf);
304:
305: return;
306:
307: EXCEPTION

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

314: IS
315: BEGIN
316: -- add a line of text to the output file and
317: -- add the line terminator
318: FND_FILE.PUT_LINE(FND_FILE.OUTPUT, buf);
319: FND_FILE.NEW_LINE(FND_FILE.OUTPUT,1);
320:
321: return;
322:

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

315: BEGIN
316: -- add a line of text to the output file and
317: -- add the line terminator
318: FND_FILE.PUT_LINE(FND_FILE.OUTPUT, buf);
319: FND_FILE.NEW_LINE(FND_FILE.OUTPUT,1);
320:
321: return;
322:
323: EXCEPTION