DBA Data[Home] [Help]

APPS.PAY_SA_USER_FUNCTION dependencies on HR_UTILITY

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

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

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

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

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

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