DBA Data[Home] [Help]

APPS.FF_UTILS dependencies on HR_UTILITY

Line 25: hr_utility.set_message(801, 'FFPLU01_ASSERTION_FAILED');

21: p_location in varchar2
22: ) is
23: begin
24: if(not p_expression) then
25: hr_utility.set_message(801, 'FFPLU01_ASSERTION_FAILED');
26: hr_utility.set_message_token('1', p_location);
27: hr_utility.raise_error;
28: end if;
29: end assert;

Line 26: hr_utility.set_message_token('1', p_location);

22: ) is
23: begin
24: if(not p_expression) then
25: hr_utility.set_message(801, 'FFPLU01_ASSERTION_FAILED');
26: hr_utility.set_message_token('1', p_location);
27: hr_utility.raise_error;
28: end if;
29: end assert;
30:

Line 27: hr_utility.raise_error;

23: begin
24: if(not p_expression) then
25: hr_utility.set_message(801, 'FFPLU01_ASSERTION_FAILED');
26: hr_utility.set_message_token('1', p_location);
27: hr_utility.raise_error;
28: end if;
29: end assert;
30:
31: /*

Line 48: hr_utility.trace('In : ' || p_procedure_name);

44:
45: -- Now check that the specific debug level has been set.
46: if(bitand(g_debug_level, ff_utils.ROUTING) <> 0) then
47: -- Tell the world that we have entered a function.
48: hr_utility.trace('In : ' || p_procedure_name);
49: end if;
50:
51: end entry;
52:

Line 70: hr_utility.trace('Out : ' || p_procedure_name);

66:
67: -- Now check that the specific debug level has been set.
68: if(bitand(g_debug_level, ff_utils.ROUTING) <> 0) then
69: -- Tell the world that we have entered a function.
70: hr_utility.trace('Out : ' || p_procedure_name);
71: end if;
72:
73: end exit;
74: