DBA Data[Home] [Help]

APPS.PAY_MX_TRR_PKG dependencies on FND_FILE

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

104: g_debug_flag VARCHAR2(1) ;
105:
106: /*****************************************************************************
107: Name : msg
108: Purpose : Log a message, either using fnd_file, or hr_utility.trace
109: *****************************************************************************/
110:
111: PROCEDURE msg(p_text VARCHAR2)
112: IS

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

112: IS
113: --
114: BEGIN
115: -- Write to the concurrent request log
116: fnd_file.put_line(fnd_file.log, p_text);
117:
118: END msg;
119:
120: /*****************************************************************************

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

118: END msg;
119:
120: /*****************************************************************************
121: Name : dbg
122: Purpose : Log a message, either using fnd_file, or hr_utility.trace
123: IF debuggging is enabled
124: *****************************************************************************/
125: PROCEDURE dbg(p_text VARCHAR2) IS
126:

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

130:
131: IF (g_concurrent_flag = 'Y') THEN
132:
133: -- Write to the concurrent request log
134: fnd_file.put_line(fnd_file.log, p_text);
135:
136: ELSE
137:
138: -- Use HR trace

Line 2442: -- FND_FILE.PUT_LINE(FND_FILE.OUTPUT,'');

2438:
2439: l_step := 3;
2440: hr_utility.set_location(g_package || l_procedure_name, 30);
2441:
2442: -- FND_FILE.PUT_LINE(FND_FILE.OUTPUT,'');
2443:
2444: FND_FILE.PUT_LINE(FND_FILE.OUTPUT,' 2445: hr_mx_utility.get_IANA_charset || '"?>' ) ;
2446:

Line 2444: FND_FILE.PUT_LINE(FND_FILE.OUTPUT,'

2440: hr_utility.set_location(g_package || l_procedure_name, 30);
2441:
2442: -- FND_FILE.PUT_LINE(FND_FILE.OUTPUT,'');
2443:
2444: FND_FILE.PUT_LINE(FND_FILE.OUTPUT,' 2445: hr_mx_utility.get_IANA_charset || '"?>' ) ;
2446:
2447: l_step := 4;
2448: hr_utility.set_location(g_package || l_procedure_name, 40);

Line 2459: FND_FILE.PUT_LINE(FND_FILE.OUTPUT,l_xml_string);

2455:
2456: l_xml_string := convert_into_xml(xml_data_table(l).tag_name,
2457: xml_data_table(l).tag_value,
2458: xml_data_table(l).tag_type);
2459: FND_FILE.PUT_LINE(FND_FILE.OUTPUT,l_xml_string);
2460:
2461: END LOOP ;
2462:
2463: