DBA Data[Home] [Help]

APPS.FA_MASSADD_SPECIAL_PKG dependencies on FA_CACHE_PKG

Line 85: if (fa_cache_pkg.fazcbc_record.amortize_flag <> 'YES') then

81:
82: -- also verify amortized flag (book level and existing trx)
83: -- (from mass_additions_3.S_Amortize_Flag)
84: if (nvl(p_mass_add_rec.amortize_flag, 'NO') = 'YES') then
85: if (fa_cache_pkg.fazcbc_record.amortize_flag <> 'YES') then
86: raise error_found;
87: end if;
88: else
89: if not fa_asset_val_pvt.validate_exp_after_amort

Line 220: if not fa_cache_pkg.fazprof then

216:
217: x_success_count := 0;
218: x_failure_count := 0;
219:
220: if not fa_cache_pkg.fazprof then
221: null;
222: end if;
223:
224: l_batch_size := nvl(fa_cache_pkg.fa_batch_size, 200);

Line 224: l_batch_size := nvl(fa_cache_pkg.fa_batch_size, 200);

220: if not fa_cache_pkg.fazprof then
221: null;
222: end if;
223:
224: l_batch_size := nvl(fa_cache_pkg.fa_batch_size, 200);
225:
226: l_cursor_id := dbms_sql.open_cursor;
227:
228: l_sql_statement := 'select row_id ' ||

Line 263: if not fa_cache_pkg.fazcbc(X_book => l_massadd_rec.book_type_code

259: begin
260:
261: -- bug# 2241114 load the cache if needed
262: if nvl(g_last_book_used, '-NULL') <> l_massadd_rec.book_type_code then
263: if not fa_cache_pkg.fazcbc(X_book => l_massadd_rec.book_type_code
264: ,p_log_level_rec => p_log_level_rec) then
265: raise error_found;
266: end if;
267: G_last_book_used := l_massadd_rec.book_type_code;