DBA Data[Home] [Help]

APPS.FF_FORMULA_WEBUI_PKG dependencies on FF_EXEC

Line 731: v_inputs ff_exec.inputs_t;

727: p_return_status out nocopy varchar2
728: )
729: is
730: --
731: v_inputs ff_exec.inputs_t;
732: v_outputs ff_exec.outputs_t;
733: v_output_name varchar2(240);
734: --
735: begin

Line 732: v_outputs ff_exec.outputs_t;

728: )
729: is
730: --
731: v_inputs ff_exec.inputs_t;
732: v_outputs ff_exec.outputs_t;
733: v_output_name varchar2(240);
734: --
735: begin
736: --

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

740: --
741: -- Enable multi-messaging
742: hr_multi_message.enable_message_list;
743: --
744: ff_exec.init_formula(p_formula_id, p_session_date, v_inputs, v_outputs);
745: --
746: -- Check to see if any errors occurred, if so the
747: -- hr_multi_message.error_message_exist exception will be raised
748: hr_multi_message.end_validation_set;

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

822: end if;
823: --
824: end loop;
825: --
826: ff_exec.run_formula(v_inputs, v_outputs);
827: --
828: -- Now obtain the return values.
829: for i in v_outputs.first..v_outputs.last loop
830: --

Line 916: ff_exec.reset_caches;

912: --
913: exception
914: --
915: when hr_multi_message.error_message_exist then
916: ff_exec.reset_caches;
917: p_return_status := hr_multi_message.get_return_status_disable;
918: --
919: when others then
920: ff_exec.reset_caches;

Line 920: ff_exec.reset_caches;

916: ff_exec.reset_caches;
917: p_return_status := hr_multi_message.get_return_status_disable;
918: --
919: when others then
920: ff_exec.reset_caches;
921: hr_multi_message.add;
922: p_return_status := hr_multi_message.get_return_status_disable;
923: --
924: end run_formula;