DBA Data[Home] [Help]

APPS.FA_MASS_REVAL_PKG dependencies on FA_CACHE_PKG

Line 292: if (fa_cache_pkg.fazcbc_record.allow_reval_flag <> 'YES') then

288: raise massrvl_err;
289: end if;
290:
291: -- initial book control validation
292: if (fa_cache_pkg.fazcbc_record.allow_reval_flag <> 'YES') then
293: fa_srvr_msg.add_message
294: (calling_fn => l_calling_fn,
295: name => 'FA_BOOK_REVAL_NOT_ALLOW',
296: p_log_level_rec => g_log_level_rec);

Line 298: elsif (fa_cache_pkg.fazcbc_record.date_ineffective is not null) then

294: (calling_fn => l_calling_fn,
295: name => 'FA_BOOK_REVAL_NOT_ALLOW',
296: p_log_level_rec => g_log_level_rec);
297: raise massrvl_err;
298: elsif (fa_cache_pkg.fazcbc_record.date_ineffective is not null) then
299: fa_srvr_msg.add_message
300: (calling_fn => l_calling_fn,
301: name => 'FA_DATA_ERR_MASS_REVAL'
302: ,p_log_level_rec => g_log_level_rec);

Line 813: if not fa_cache_pkg.fazcbc(X_book => g_book_type_code,

809: end if;
810: close c_mass_reval_info;
811:
812: -- get book information
813: if not fa_cache_pkg.fazcbc(X_book => g_book_type_code,
814: p_log_level_rec => g_log_level_rec) then
815: raise massrvl_err;
816: end if;
817:

Line 826: G_batch_size := nvl(fa_cache_pkg.fa_batch_size, 1000);

822: x_period_rec => G_period_rec
823: ) then raise massrvl_err;
824: end if;
825:
826: G_batch_size := nvl(fa_cache_pkg.fa_batch_size, 1000);
827:
828: return true;
829:
830: EXCEPTION