DBA Data[Home] [Help]

APPS.PER_MX_SSAFFL_DISPMAG dependencies on FND_FILE

Line 65: Purpose : Log a message, either using fnd_file, or hr_utility.trace

61:
62:
63: /******************************************************************************
64: Name : msg
65: Purpose : Log a message, either using fnd_file, or hr_utility.trace
66: ******************************************************************************/
67:
68: PROCEDURE msg(p_text VARCHAR2)
69: IS

Line 73: fnd_file.put_line(fnd_file.log, p_text);

69: IS
70: --
71: BEGIN
72: -- Write to the concurrent request log
73: fnd_file.put_line(fnd_file.log, p_text);
74:
75: END msg;
76:
77: /******************************************************************************

Line 79: Purpose : Log a message, either using fnd_file, or hr_utility.trace

75: END msg;
76:
77: /******************************************************************************
78: Name : dbg
79: Purpose : Log a message, either using fnd_file, or hr_utility.trace
80: if debuggging is enabled
81: ******************************************************************************/
82: PROCEDURE dbg(p_text VARCHAR2) IS
83:

Line 89: fnd_file.put_line(fnd_file.log, p_text);

85:
86: IF (g_debug_flag = 'Y') THEN
87: IF (g_concurrent_flag = 'Y') THEN
88: -- Write to the concurrent request log
89: fnd_file.put_line(fnd_file.log, p_text);
90: ELSE
91: -- Use HR trace
92: hr_utility.trace(p_text);
93: END IF;