DBA Data[Home] [Help]

APPS.PAY_MX_SSAFFL_SALARY dependencies on FND_FILE

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

76:
77:
78: /******************************************************************************
79: Name : msg
80: Purpose : Log a message, either using fnd_file, or hr_utility.trace
81: ******************************************************************************/
82:
83: PROCEDURE msg(p_text VARCHAR2)
84: IS

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

84: IS
85: --
86: BEGIN
87: -- Write to the concurrent request log
88: fnd_file.put_line(fnd_file.log, p_text);
89:
90: END msg;
91:
92: /******************************************************************************

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

90: END msg;
91:
92: /******************************************************************************
93: Name : dbg
94: Purpose : Log a message, either using fnd_file, or hr_utility.trace
95: if debuggging is enabled
96: ******************************************************************************/
97: PROCEDURE dbg(p_text VARCHAR2) IS
98:

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

100:
101: IF (g_debug_flag = 'Y') THEN
102: IF (g_concurrent_flag = 'Y') THEN
103: -- Write to the concurrent request log
104: fnd_file.put_line(fnd_file.log, p_text);
105: ELSE
106: -- Use HR trace
107: hr_utility.trace(p_text);
108: END IF;