DBA Data[Home] [Help]

APPS.PQP_GB_CPX_EXTRACT_FUNCTIONS dependencies on HR_UTILITY

Line 35: hr_utility.set_location (

31: LENGTH (p_trace_message),
32: l_max_message_length
33: )
34: );
35: hr_utility.set_location (
36: l_padding
37: || SUBSTR (
38: p_trace_message,
39: GREATEST (-LENGTH (p_trace_message), -l_max_message_length)

Line 44: hr_utility.TRACE (SUBSTR (p_trace_message, 1, 250));

40: ),
41: p_trace_location
42: );
43: ELSE
44: hr_utility.TRACE (SUBSTR (p_trace_message, 1, 250));
45: END IF;
46: --
47:
48: END DEBUG;

Line 130: hr_utility.trace_on (NULL, 'REQID'); -- Pipe name REQIDnnnnnn

126:
127: IF NVL (p_trace_on, 'N') = 'Y'
128: OR g_trace = 'Y'
129: THEN
130: hr_utility.trace_on (NULL, 'REQID'); -- Pipe name REQIDnnnnnn
131: END IF; -- NVL(p_trace_on,'N') = 'Y'
132: --
133: END IF; -- if nested level = 0
134:

Line 168: hr_utility.trace_off;

164: -- Also turn off tracing when the override flag of p_trace_off has been passed as Y
165: IF (g_nested_level = 0 AND g_trace = 'Y')
166: OR NVL (p_trace_off, 'N') = 'Y'
167: THEN
168: hr_utility.trace_off;
169: END IF; -- (g_nested_level = 0
170: END debug_exit;
171:
172: