DBA Data[Home] [Help]

APPS.HRFASTANSWERS dependencies on FF_EXEC

Line 253: l_inputs ff_exec.inputs_t;

249: , p_session_date IN DATE)
250: RETURN NUMBER IS
251:
252: l_budget_value number;
253: l_inputs ff_exec.inputs_t;
254: l_outputs ff_exec.outputs_t;
255:
256: BEGIN
257: -- Initialise the Inputs and Outputs tables

Line 254: l_outputs ff_exec.outputs_t;

250: RETURN NUMBER IS
251:
252: l_budget_value number;
253: l_inputs ff_exec.inputs_t;
254: l_outputs ff_exec.outputs_t;
255:
256: BEGIN
257: -- Initialise the Inputs and Outputs tables
258: FF_Exec.Init_Formula

Line 258: FF_Exec.Init_Formula

254: l_outputs ff_exec.outputs_t;
255:
256: BEGIN
257: -- Initialise the Inputs and Outputs tables
258: FF_Exec.Init_Formula
259: ( p_budget_metric_formula_id
260: , p_session_date
261: , l_inputs
262: , l_outputs );

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

276: end loop;
277: end if;
278:
279: -- Run the formula
280: FF_Exec.Run_Formula (l_inputs, l_outputs);
281:
282: -- Get the result
283: l_budget_value := to_number( l_outputs(l_outputs.first).value );
284:

Line 380: l_inputs ff_exec.inputs_t;

376: ,p_session_date IN DATE
377: ) RETURN NUMBER IS
378: --
379: l_hours_value number;
380: l_inputs ff_exec.inputs_t;
381: l_outputs ff_exec.outputs_t;
382: --
383: BEGIN
384: --

Line 381: l_outputs ff_exec.outputs_t;

377: ) RETURN NUMBER IS
378: --
379: l_hours_value number;
380: l_inputs ff_exec.inputs_t;
381: l_outputs ff_exec.outputs_t;
382: --
383: BEGIN
384: --
385: -- Initialise the Inputs and Outputs tables

Line 386: ff_exec.init_formula( p_formula_id

382: --
383: BEGIN
384: --
385: -- Initialise the Inputs and Outputs tables
386: ff_exec.init_formula( p_formula_id
387: ,p_session_date
388: ,l_inputs
389: ,l_outputs
390: );

Line 411: ff_exec.run_formula( l_inputs, l_outputs, FALSE );

407: --
408: end if;
409: --
410: -- Run the formula
411: ff_exec.run_formula( l_inputs, l_outputs, FALSE );
412: --
413: -- Get the result
414: l_hours_value := to_number( l_outputs(l_outputs.first).value );
415: --

Line 1435: l_ff_inputs FF_Exec.Inputs_t;

1431: l_days Number := 0;
1432: l_hours Number := 0;
1433: l_seconds Number := 0;
1434:
1435: l_ff_inputs FF_Exec.Inputs_t;
1436: l_ff_outputs FF_Exec.Outputs_t;
1437:
1438: begin
1439: if (p_uom like 'H_DECIMAL%') or (p_uom = 'H_HH')

Line 1436: l_ff_outputs FF_Exec.Outputs_t;

1432: l_hours Number := 0;
1433: l_seconds Number := 0;
1434:
1435: l_ff_inputs FF_Exec.Inputs_t;
1436: l_ff_outputs FF_Exec.Outputs_t;
1437:
1438: begin
1439: if (p_uom like 'H_DECIMAL%') or (p_uom = 'H_HH')
1440: then

Line 1458: FF_Exec.Init_Formula

1454: then
1455: l_days := to_number(p_screen_value);
1456:
1457: -- Initialise the Inputs and Outputs tables
1458: FF_Exec.Init_Formula
1459: ( p_formula_id => p_formula_id
1460: , p_effective_date => p_session_date
1461: , p_inputs => l_ff_inputs
1462: , p_outputs => l_ff_outputs );

Line 1485: FF_Exec.Run_Formula

1481:
1482: end loop;
1483:
1484: -- Run the formula and get the return value
1485: FF_Exec.Run_Formula
1486: ( p_inputs => l_ff_inputs
1487: , p_outputs => l_ff_outputs);
1488:
1489: l_hours := to_number(l_ff_outputs(l_ff_outputs.first).value);

Line 1513: l_inputs FF_Exec.Inputs_T;

1509: , p_activity_version_name In Varchar2
1510: , p_event_name In Varchar2
1511: , p_session_date In Date )
1512: RETURN NUMBER IS
1513: l_inputs FF_Exec.Inputs_T;
1514: l_outputs FF_Exec.Outputs_T;
1515:
1516: BEGIN
1517: -- Initialise the Inputs and Outputs tables

Line 1514: l_outputs FF_Exec.Outputs_T;

1510: , p_event_name In Varchar2
1511: , p_session_date In Date )
1512: RETURN NUMBER IS
1513: l_inputs FF_Exec.Inputs_T;
1514: l_outputs FF_Exec.Outputs_T;
1515:
1516: BEGIN
1517: -- Initialise the Inputs and Outputs tables
1518: FF_Exec.Init_Formula

Line 1518: FF_Exec.Init_Formula

1514: l_outputs FF_Exec.Outputs_T;
1515:
1516: BEGIN
1517: -- Initialise the Inputs and Outputs tables
1518: FF_Exec.Init_Formula
1519: ( p_formula_id
1520: , p_session_date
1521: , l_inputs
1522: , l_outputs );

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

1546: end loop;
1547: end if;
1548:
1549: -- Run the formula
1550: FF_Exec.Run_Formula (l_inputs, l_outputs);
1551:
1552: return (to_number(l_outputs(l_outputs.first).value));
1553:
1554: END TrainingConvertDuration;