DBA Data[Home] [Help]

APPS.PAY_IE_BIK dependencies on FF_GLOBALS_F

Line 13: from ff_globals_f

9: return number is
10:
11: cursor c_global_value_cursor is
12: select global_value
13: from ff_globals_f
14: Where global_name=p_name
15: and legislation_code='IE'
16: and p_effective_date between effective_start_date and effective_end_date;
17:

Line 18: l_global_value ff_globals_f.global_value%type;

14: Where global_name=p_name
15: and legislation_code='IE'
16: and p_effective_date between effective_start_date and effective_end_date;
17:
18: l_global_value ff_globals_f.global_value%type;
19: l_effective_start_date DATE;
20: l_effective_end_date date;
21: l_proc varchar2(72) := 'pay_ie_bik.get_global_value';
22: