DBA Data[Home] [Help]

APPS.PAY_FR_GENERAL dependencies on FF_EXEC

Line 2037: l_inputs ff_exec.inputs_t;

2033: l_days_in_week number := 5;
2034: l_months_in_year number := 12;
2035: l_weeks_in_year number := 52;
2036: l_weeks_in_month number := l_weeks_in_year/l_months_in_year;
2037: l_inputs ff_exec.inputs_t;
2038: l_outputs ff_exec.outputs_t;
2039: l_formula_id number;
2040: l_start_date date;
2041: l_hourly_value number;

Line 2038: l_outputs ff_exec.outputs_t;

2034: l_months_in_year number := 12;
2035: l_weeks_in_year number := 52;
2036: l_weeks_in_month number := l_weeks_in_year/l_months_in_year;
2037: l_inputs ff_exec.inputs_t;
2038: l_outputs ff_exec.outputs_t;
2039: l_formula_id number;
2040: l_start_date date;
2041: l_hourly_value number;
2042: --

Line 2062: ff_exec.init_formula (l_formula_id,

2058: ,p_effective_start_date => l_start_date);
2059:
2060: If l_formula_id <> -1 then
2061: -- Initialise the formula
2062: ff_exec.init_formula (l_formula_id,
2063: l_start_date,
2064: l_inputs,
2065: l_outputs);
2066: --

Line 2085: ff_exec.run_formula (l_inputs

2081: end if;
2082: end loop;
2083: --
2084: hr_utility.set_location(' Prior to execute the formula',8);
2085: ff_exec.run_formula (l_inputs
2086: ,l_outputs);
2087: --
2088: hr_utility.set_location(' End run formula',9);
2089: --

Line 2189: l_inputs ff_exec.inputs_t;

2185: param_tab param_tab_type;
2186: --
2187:
2188: --
2189: l_inputs ff_exec.inputs_t;
2190: l_outputs ff_exec.outputs_t;
2191: l_formula_id number;
2192: l_start_date date;
2193: --

Line 2190: l_outputs ff_exec.outputs_t;

2186: --
2187:
2188: --
2189: l_inputs ff_exec.inputs_t;
2190: l_outputs ff_exec.outputs_t;
2191: l_formula_id number;
2192: l_start_date date;
2193: --
2194: l_proc varchar2(72) := g_package||'.get_pay_rate';

Line 2269: ff_exec.init_formula (l_formula_id,

2265: j := j + 1;
2266: end loop;
2267: end if;
2268: -- Initialise the formula
2269: ff_exec.init_formula (l_formula_id,
2270: l_start_date,
2271: l_inputs,
2272: l_outputs);
2273: --

Line 2297: ff_exec.run_formula (l_inputs

2293: end if;
2294: --
2295: hr_utility.set_location(' Prior to execute the formula',8);
2296: hr_utility.set_location(l_proc,30);
2297: ff_exec.run_formula (l_inputs
2298: ,l_outputs);
2299: --
2300: hr_utility.set_location(l_proc,40);
2301: hr_utility.set_location(' End run formula',9);