DBA Data[Home] [Help]

APPS.PAY_MX_ISR_FORMAT37_INFO dependencies on HR_UTILITY

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

10:
11:
12: /******************************************************************************
13: Name : msg
14: Purpose : Log a message, either using fnd_file, or hr_utility.trace
15: ******************************************************************************/
16:
17: PROCEDURE msg(p_text VARCHAR2)
18: IS

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

24: END msg;
25:
26: /******************************************************************************
27: Name : dbg
28: Purpose : Log a message, either using fnd_file, or hr_utility.trace
29: if debuggging is enabled
30: ******************************************************************************/
31: PROCEDURE dbg(p_text VARCHAR2) IS
32:

Line 41: hr_utility.trace(p_text);

37: -- Write to the concurrent request log
38: fnd_file.put_line(fnd_file.log, p_text);
39: ELSE
40: -- Use HR trace
41: hr_utility.trace(p_text);
42: END IF;
43: END IF;
44:
45: END dbg;

Line 321: HR_UTILITY.RAISE_ERROR;

317: exception
318: when OTHERS then
319: dbms_lob.close(l_xml_clob);
320: dbg('sqleerm ' || sqlerrm);
321: HR_UTILITY.RAISE_ERROR;
322:
323: end create_xml_string;
324:
325: