DBA Data[Home] [Help]

APPS.OKL_COPY_ASSET_PVT dependencies on FA_METHODS

Line 4316: from fa_methods

4312: --Bug# 3621663 : Flat rate support
4313: cursor l_life_in_months_csr (p_deprn_method in varchar2,
4314: p_life_in_months in number) is
4315: select 'Y'
4316: from fa_methods
4317: where method_code = p_deprn_method
4318: and life_in_months = p_life_in_months
4319: and life_in_months is not null;
4320:

Line 4327: fa_methods fm

4323: cursor l_rate_csr (p_deprn_method in varchar2,
4324: p_rate in number) is
4325: select 'Y'
4326: from fa_flat_rates ffr,
4327: fa_methods fm
4328: where fm.method_code = p_deprn_method
4329: and ffr.method_id = fm.method_id
4330: and ffr.adjusted_rate = p_rate
4331: and ffr.adjusting_rate = 0;