DBA Data[Home] [Help]

APPS.HRI_OLTP_DISC_TRAINING dependencies on FF_EXEC

Line 874: l_inputs FF_Exec.Inputs_T;

870: RETURN NUMBER IS
871:
872: l_to_duration NUMBER := 0;
873:
874: l_inputs FF_Exec.Inputs_T;
875: l_outputs FF_Exec.Outputs_T;
876:
877: BEGIN
878:

Line 875: l_outputs FF_Exec.Outputs_T;

871:
872: l_to_duration NUMBER := 0;
873:
874: l_inputs FF_Exec.Inputs_T;
875: l_outputs FF_Exec.Outputs_T;
876:
877: BEGIN
878:
879: -- Check whether all mandatory parameters have been supplied

Line 890: FF_Exec.Init_Formula(

886: RETURN(0);
887: END IF;
888:
889: -- Initialise the Inputs and Outputs tables
890: FF_Exec.Init_Formula(
891: p_formula_id => p_formula_id
892: ,p_effective_date => sysdate
893: ,p_inputs => l_inputs
894: ,p_outputs => l_outputs);

Line 924: FF_Exec.Run_Formula(

920:
921: END IF;
922:
923: -- Run the Fast Formula
924: FF_Exec.Run_Formula(
925: p_inputs => l_inputs
926: ,p_outputs => l_outputs);
927:
928: l_to_duration := to_number(l_outputs(l_outputs.first).value);