DBA Data[Home] [Help]

APPS.FA_SHORT_TAX_YEARS_PKG dependencies on FA_CACHE_PKG

Line 201: if (not fa_cache_pkg.fazccmt (

197: -- Not a short-tax year asset but uses FORMULA method.
198: -- Set remaining_life1..2 to be based from the current fiscal year
199: -- start date.
200:
201: if (not fa_cache_pkg.fazccmt (
202: X_Method => X_Method_Code,
203: X_Life => X_Life_In_Months
204: , p_log_level_rec => p_log_level_rec)) then
205: RAISE cache_exception;

Line 208: h_deprn_basis_rule_name := fa_cache_pkg.fazcdbr_record.rule_name;

204: , p_log_level_rec => p_log_level_rec)) then
205: RAISE cache_exception;
206: end if;
207:
208: h_deprn_basis_rule_name := fa_cache_pkg.fazcdbr_record.rule_name;
209:
210: -- Bug4169773: Relocated to outside of following if because it
211: -- is used in else as well.
212: if (not fa_cache_pkg.fazcbc(X_Book_Type_Code, p_log_level_rec => p_log_level_rec)) then

Line 212: if (not fa_cache_pkg.fazcbc(X_Book_Type_Code, p_log_level_rec => p_log_level_rec)) then

208: h_deprn_basis_rule_name := fa_cache_pkg.fazcdbr_record.rule_name;
209:
210: -- Bug4169773: Relocated to outside of following if because it
211: -- is used in else as well.
212: if (not fa_cache_pkg.fazcbc(X_Book_Type_Code, p_log_level_rec => p_log_level_rec)) then
213: RAISE cache_exception;
214: end if;
215:
216: h_calendar_type := fa_cache_pkg.fazcbc_record.deprn_calendar;

Line 216: h_calendar_type := fa_cache_pkg.fazcbc_record.deprn_calendar;

212: if (not fa_cache_pkg.fazcbc(X_Book_Type_Code, p_log_level_rec => p_log_level_rec)) then
213: RAISE cache_exception;
214: end if;
215:
216: h_calendar_type := fa_cache_pkg.fazcbc_record.deprn_calendar;
217:
218: if (h_deprn_basis_rule_name in ('PERIOD END AVERAGE', 'BEGINNING PERIOD')) then
219:
220: h_fy_name := fa_cache_pkg.fazcbc_record.fiscal_year_name;

Line 220: h_fy_name := fa_cache_pkg.fazcbc_record.fiscal_year_name;

216: h_calendar_type := fa_cache_pkg.fazcbc_record.deprn_calendar;
217:
218: if (h_deprn_basis_rule_name in ('PERIOD END AVERAGE', 'BEGINNING PERIOD')) then
219:
220: h_fy_name := fa_cache_pkg.fazcbc_record.fiscal_year_name;
221: open get_cp_date;
222: fetch get_cp_date into h_cp_open_date;
223: close get_cp_date;
224: