DBA Data[Home] [Help]

APPS.PAY_MX_TRR_PKG dependencies on FND_FILE

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

121: g_debug_flag VARCHAR2(1) ;
122:
123: /*****************************************************************************
124: Name : msg
125: Purpose : Log a message, either using fnd_file, or hr_utility.trace
126: *****************************************************************************/
127:
128: PROCEDURE msg(p_text VARCHAR2)
129: IS

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

129: IS
130: --
131: BEGIN
132: -- Write to the concurrent request log
133: fnd_file.put_line(fnd_file.log, p_text);
134:
135: END msg;
136:
137: /*****************************************************************************

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

135: END msg;
136:
137: /*****************************************************************************
138: Name : dbg
139: Purpose : Log a message, either using fnd_file, or hr_utility.trace
140: IF debuggging is enabled
141: *****************************************************************************/
142: PROCEDURE dbg(p_text VARCHAR2) IS
143:

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

147:
148: IF (g_concurrent_flag = 'Y') THEN
149:
150: -- Write to the concurrent request log
151: fnd_file.put_line(fnd_file.log, p_text);
152:
153: ELSE
154:
155: -- Use HR trace

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

2558:
2559: l_step := 3;
2560: hr_utility.set_location(g_package || l_procedure_name, 30);
2561:
2562: -- FND_FILE.PUT_LINE(FND_FILE.OUTPUT,'');
2563:
2564: FND_FILE.PUT_LINE(FND_FILE.OUTPUT,' 2565: hr_mx_utility.get_IANA_charset || '"?>' ) ;
2566:

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

2560: hr_utility.set_location(g_package || l_procedure_name, 30);
2561:
2562: -- FND_FILE.PUT_LINE(FND_FILE.OUTPUT,'');
2563:
2564: FND_FILE.PUT_LINE(FND_FILE.OUTPUT,' 2565: hr_mx_utility.get_IANA_charset || '"?>' ) ;
2566:
2567: l_step := 4;
2568: hr_utility.set_location(g_package || l_procedure_name, 40);

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

2575:
2576: l_xml_string := convert_into_xml(xml_data_table(l).tag_name,
2577: xml_data_table(l).tag_value,
2578: xml_data_table(l).tag_type);
2579: FND_FILE.PUT_LINE(FND_FILE.OUTPUT,l_xml_string);
2580:
2581: END LOOP ;
2582:
2583: