DBA Data[Home] [Help]

APPS.HR_US_ACCRUAL_PLANS dependencies on FF_EXEC

Line 115: l_inputs ff_exec.inputs_t;

111: v_semi_days NUMBER(9);
112: v_eligible_date DATE;
113: v_plan_id NUMBER(9);
114: v_formula_id NUMBER(9);
115: l_inputs ff_exec.inputs_t;
116: l_outputs ff_exec.outputs_t;
117:
118: CURSOR plan_for_input_value IS
119: SELECT nvl(ineligible_period_length, 0),

Line 116: l_outputs ff_exec.outputs_t;

112: v_eligible_date DATE;
113: v_plan_id NUMBER(9);
114: v_formula_id NUMBER(9);
115: l_inputs ff_exec.inputs_t;
116: l_outputs ff_exec.outputs_t;
117:
118: CURSOR plan_for_input_value IS
119: SELECT nvl(ineligible_period_length, 0),
120: ineligible_period_type,

Line 284: ff_exec.init_formula

280: -- ineligibility
281: --
282:
283: -- Initialise the Inputs and Outputs tables
284: ff_exec.init_formula
285: ( v_formula_id
286: , p_sess_date
287: , l_inputs
288: , l_outputs );

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

302: end if;
303: end loop;
304:
305: -- Run the formula
306: ff_exec.run_formula( l_inputs, l_outputs );
307:
308: -- Get the result
309: p_eligible := l_outputs(l_outputs.first).value;
310: