DBA Data[Home] [Help]

APPS.BEN_DM_UTILITY dependencies on FND_FILE

Line 449: FND_FILE.PUT_LINE(FND_FILE.OUTPUT, l_header || ':-:' || l_message);

445:
446: -- send to pipe?
447: IF (INSTRB(g_debug_message_pipe, p_type) <> 0) THEN
448: hr_utility.set_location(l_header || ':-:' || l_message, p_position);
449: FND_FILE.PUT_LINE(FND_FILE.OUTPUT, l_header || ':-:' || l_message);
450: END IF;
451:
452: -- send to log file?
453: IF (INSTRB(g_debug_message_log, p_type) <> 0) THEN

Line 454: FND_FILE.PUT_LINE(FND_FILE.LOG, l_header || ':-:' || l_message);

450: END IF;
451:
452: -- send to log file?
453: IF (INSTRB(g_debug_message_log, p_type) <> 0) THEN
454: FND_FILE.PUT_LINE(FND_FILE.LOG, l_header || ':-:' || l_message);
455: END IF;
456: END IF;
457:
458: