DBA Data[Home] [Help]

APPS.PAY_PAYROLL_CONTACT_PKG dependencies on FF_EXEC

Line 107: l_inputs ff_exec.inputs_t;

103: l_assignment_id number;
104: l_bg_id number;
105: l_formula_id number;
106: l_effective_date date;
107: l_inputs ff_exec.inputs_t;
108: l_outputs ff_exec.outputs_t;
109: l_loop_cnt number;
110: l_in_cnt number;
111: l_out_cnt number;

Line 108: l_outputs ff_exec.outputs_t;

104: l_bg_id number;
105: l_formula_id number;
106: l_effective_date date;
107: l_inputs ff_exec.inputs_t;
108: l_outputs ff_exec.outputs_t;
109: l_loop_cnt number;
110: l_in_cnt number;
111: l_out_cnt number;
112: --

Line 136: ff_exec.init_formula(l_formula_id, l_effective_date, l_inputs, l_outputs);

132: close c_asg_id;
133: --
134: -- Initialise the formula.
135: --
136: ff_exec.init_formula(l_formula_id, l_effective_date, l_inputs, l_outputs);
137: --
138: -- We are now in a position to execute the formula.
139: -- Setup the inputs table
140: --

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

149: end loop;
150: --
151: -- run the formula
152: --
153: ff_exec.run_formula(l_inputs, l_outputs);
154: --
155: end if;
156: end process_data;
157: