DBA Data[Home] [Help]

APPS.HR_PERSON_FLEX_LOGIC dependencies on FF_EXEC

Line 23: l_inputs ff_exec.inputs_t;

19: ,p_session_date IN DATE)
20: RETURN NUMBER IS
21:
22: l_budget_value number;
23: l_inputs ff_exec.inputs_t;
24: l_outputs ff_exec.outputs_t;
25:
26: BEGIN
27:

Line 24: l_outputs ff_exec.outputs_t;

20: RETURN NUMBER IS
21:
22: l_budget_value number;
23: l_inputs ff_exec.inputs_t;
24: l_outputs ff_exec.outputs_t;
25:
26: BEGIN
27:
28: -- dbms_output.put_line('HR_PERSON_FLEX_LOGIC.GetABV - 10');

Line 32: FF_Exec.Init_Formula

28: -- dbms_output.put_line('HR_PERSON_FLEX_LOGIC.GetABV - 10');
29:
30: -- Initialise the Inputs and Outputs tables
31:
32: FF_Exec.Init_Formula
33: ( p_ABV_formula_id
34: , p_session_date
35: , l_inputs
36: , l_outputs );

Line 74: FF_Exec.Run_Formula (l_inputs, l_outputs);

70: end if;
71:
72: -- Run the formula
73:
74: FF_Exec.Run_Formula (l_inputs, l_outputs);
75:
76: -- Get the result
77:
78: -- dbms_output.put_line('HR_PERSON_FLEX_LOGIC.GetABV - 40');

Line 217: l_inputs ff_exec.inputs_t;

213: ,p_session_date IN DATE
214: ) RETURN VARCHAR2 IS
215:
216: l_asgpertype varchar2(2000);
217: l_inputs ff_exec.inputs_t;
218: l_outputs ff_exec.outputs_t;
219:
220: BEGIN
221:

Line 218: l_outputs ff_exec.outputs_t;

214: ) RETURN VARCHAR2 IS
215:
216: l_asgpertype varchar2(2000);
217: l_inputs ff_exec.inputs_t;
218: l_outputs ff_exec.outputs_t;
219:
220: BEGIN
221:
222: -- dbms_output.put_line('Function GetAsgWorkerType - 20');

Line 225: ff_exec.init_formula(

221:
222: -- dbms_output.put_line('Function GetAsgWorkerType - 20');
223:
224: -- Initialise the Inputs and Outputs tables
225: ff_exec.init_formula(
226: p_AsgWorkerType_formula_id
227: ,p_session_date
228: ,l_inputs
229: ,l_outputs

Line 269: ff_exec.run_formula( l_inputs, l_outputs);

265: end if;
266:
267: -- Run the formula
268:
269: ff_exec.run_formula( l_inputs, l_outputs);
270:
271: for i in l_outputs.first..l_outputs.last
272:
273: loop

Line 439: l_inputs ff_exec.inputs_t;

435: , p_session_date IN DATE)
436: RETURN VARCHAR2 IS
437:
438: l_term_type varchar2(10);
439: l_inputs ff_exec.inputs_t;
440: l_outputs ff_exec.outputs_t;
441:
442: BEGIN
443: -- dbms_output.put_line('Entering HR_PERSON_FLEX_LOGIC.GetTermType - 27');

Line 440: l_outputs ff_exec.outputs_t;

436: RETURN VARCHAR2 IS
437:
438: l_term_type varchar2(10);
439: l_inputs ff_exec.inputs_t;
440: l_outputs ff_exec.outputs_t;
441:
442: BEGIN
443: -- dbms_output.put_line('Entering HR_PERSON_FLEX_LOGIC.GetTermType - 27');
444: -- Initialise the Inputs and Outputs tables

Line 445: FF_Exec.Init_Formula

441:
442: BEGIN
443: -- dbms_output.put_line('Entering HR_PERSON_FLEX_LOGIC.GetTermType - 27');
444: -- Initialise the Inputs and Outputs tables
445: FF_Exec.Init_Formula
446: ( p_term_formula_id
447: , p_session_date
448: , l_inputs
449: , l_outputs );

Line 467: FF_Exec.Run_Formula (l_inputs, l_outputs);

463: end if;
464:
465: -- Run the formula
466: -- dbms_output.put_line('HR_PERSON_FLEX_LOGIC.GetTermType - 30');
467: FF_Exec.Run_Formula (l_inputs, l_outputs);
468:
469: -- Get the result
470: l_term_type := l_outputs(l_outputs.first).value ;
471: