DBA Data[Home] [Help]

APPS.PAY_MX_ISR_FORMAT37 dependencies on FND_FILE

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

32:
33:
34: /******************************************************************************
35: Name : msg
36: Purpose : Log a message, either using fnd_file, or hr_utility.trace
37: ******************************************************************************/
38:
39: PROCEDURE msg(p_text VARCHAR2)
40: IS

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

40: IS
41: --
42: BEGIN
43: -- Write to the concurrent request log
44: fnd_file.put_line(fnd_file.log, p_text);
45:
46: END msg;
47:
48: /******************************************************************************

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

46: END msg;
47:
48: /******************************************************************************
49: Name : dbg
50: Purpose : Log a message, either using fnd_file, or hr_utility.trace
51: if debuggging is enabled
52: ******************************************************************************/
53: PROCEDURE dbg(p_text VARCHAR2) IS
54:

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

56:
57: IF (g_debug_flag = 'Y') THEN
58: IF (g_concurrent_flag = 'Y') THEN
59: -- Write to the concurrent request log
60: fnd_file.put_line(fnd_file.log, p_text);
61: ELSE
62: -- Use HR trace
63: hr_utility.trace(p_text);
64: END IF;