DBA Data[Home] [Help]

APPS.HR_DM_UTILITY dependencies on FND_FILE

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

611:
612: -- send to pipe?
613: IF (INSTRB(g_debug_message_pipe, p_type) <> 0) THEN
614: hr_utility.set_location(l_header || ':-:' || l_message, p_position);
615: FND_FILE.PUT_LINE(FND_FILE.OUTPUT, l_header || ':-:' || l_message);
616: END IF;
617:
618: -- send to log file?
619: IF (INSTRB(g_debug_message_log, p_type) <> 0) THEN

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

616: END IF;
617:
618: -- send to log file?
619: IF (INSTRB(g_debug_message_log, p_type) <> 0) THEN
620: FND_FILE.PUT_LINE(FND_FILE.LOG, l_header || ':-:' || l_message);
621: END IF;
622: END IF;
623:
624: