DBA Data[Home] [Help]

APPS.FF_FORMULA_WEBUI_PKG dependencies on FF_EXEC

Line 712: v_inputs ff_exec.inputs_t;

708: p_return_status out nocopy varchar2
709: )
710: is
711: --
712: v_inputs ff_exec.inputs_t;
713: v_outputs ff_exec.outputs_t;
714: v_output_name varchar2(240);
715: --
716: begin

Line 713: v_outputs ff_exec.outputs_t;

709: )
710: is
711: --
712: v_inputs ff_exec.inputs_t;
713: v_outputs ff_exec.outputs_t;
714: v_output_name varchar2(240);
715: --
716: begin
717: --

Line 725: ff_exec.init_formula(p_formula_id, p_session_date, v_inputs, v_outputs);

721: --
722: -- Enable multi-messaging
723: hr_multi_message.enable_message_list;
724: --
725: ff_exec.init_formula(p_formula_id, p_session_date, v_inputs, v_outputs);
726: --
727: -- Check to see if any errors occurred, if so the
728: -- hr_multi_message.error_message_exist exception will be raised
729: hr_multi_message.end_validation_set;

Line 807: ff_exec.run_formula(v_inputs, v_outputs);

803: end if;
804: --
805: end loop;
806: --
807: ff_exec.run_formula(v_inputs, v_outputs);
808: --
809: -- Now obtain the return values.
810: for i in v_outputs.first..v_outputs.last loop
811: --

Line 897: ff_exec.reset_caches;

893: --
894: exception
895: --
896: when hr_multi_message.error_message_exist then
897: ff_exec.reset_caches;
898: p_return_status := hr_multi_message.get_return_status_disable;
899: --
900: when others then
901: ff_exec.reset_caches;

Line 901: ff_exec.reset_caches;

897: ff_exec.reset_caches;
898: p_return_status := hr_multi_message.get_return_status_disable;
899: --
900: when others then
901: ff_exec.reset_caches;
902: hr_multi_message.add;
903: p_return_status := hr_multi_message.get_return_status_disable;
904: --
905: end run_formula;