DBA Data[Home] [Help]

APPS.PAY_AE_USER_FUNCTION dependencies on HR_UTILITY

Line 13: hr_utility.set_location('--In Formula ',20);

9: ,p_outputs IN OUT NOCOPY ff_exec.outputs_t) IS
10: l_inputs ff_exec.inputs_t;
11: l_outputs ff_exec.outputs_t;
12: BEGIN
13: hr_utility.set_location('--In Formula ',20);
14: --
15: -- Initialize the formula
16: --
17: ff_exec.init_formula(p_formula_id, p_effective_date , l_inputs, l_outputs);

Line 19: hr_utility.trace('after ff_exec');

15: -- Initialize the formula
16: --
17: ff_exec.init_formula(p_formula_id, p_effective_date , l_inputs, l_outputs);
18: --
19: hr_utility.trace('after ff_exec');
20: -- Set up the input values
21: --
22: IF l_inputs.count > 0 and p_inputs.count > 0 THEN
23: FOR i IN l_inputs.first..l_inputs.last LOOP

Line 35: hr_utility.trace('about to exec');

31: END IF;
32: --
33: -- Run the formula
34: --
35: hr_utility.trace('about to exec');
36: ff_exec.run_formula(l_inputs,l_outputs);
37: --
38: -- Populate the output table
39: --