DBA Data[Home] [Help]

APPS.FA_SHORT_TAX_YEARS_PKG dependencies on FA_CACHE_PKG

Line 200: if (not fa_cache_pkg.fazccmt (

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

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

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

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

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

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

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

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

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