DBA Data[Home] [Help]

APPS.FA_TAX_RSV_ADJ_PUB dependencies on FA_CACHE_PKG

Line 113: if NOT fa_cache_pkg.fazcbc(X_book => px_asset_hdr_rec.book_type_code,

109: end if;
110:
111: -- call the cache for the primary transaction book
112:
113: if NOT fa_cache_pkg.fazcbc(X_book => px_asset_hdr_rec.book_type_code,
114: p_log_level_rec => g_log_level_rec) then
115: raise tax_rsv_adj_err;
116: end if;
117:

Line 118: px_asset_hdr_rec.set_of_books_id := fa_cache_pkg.fazcbc_record.set_of_books_id;

114: p_log_level_rec => g_log_level_rec) then
115: raise tax_rsv_adj_err;
116: end if;
117:
118: px_asset_hdr_rec.set_of_books_id := fa_cache_pkg.fazcbc_record.set_of_books_id;
119:
120: -- verify the asset exist in the book already
121:
122: if not FA_ASSET_VAL_PVT.validate_asset_book

Line 142: if not fa_cache_pkg.fazcsob

138: -- the book struct
139:
140: -- Get the book type code P,R or N
141:
142: if not fa_cache_pkg.fazcsob
143: (X_set_of_books_id => px_asset_hdr_rec.set_of_books_id,
144: X_mrc_sob_type_code => l_reporting_flag,
145: p_log_level_rec => g_log_level_rec) then
146: raise tax_rsv_adj_err;

Line 163: if not fa_cache_pkg.fazcbc(X_book => px_asset_hdr_rec.book_type_code,

159:
160:
161: -- load cache fazcbc.
162:
163: if not fa_cache_pkg.fazcbc(X_book => px_asset_hdr_rec.book_type_code,
164: p_log_level_rec => g_log_level_rec) then
165: raise tax_rsv_adj_err;
166: end if;
167: if fa_cache_pkg.fazcbc_record.allow_deprn_adjustments = 'NO' then

Line 167: if fa_cache_pkg.fazcbc_record.allow_deprn_adjustments = 'NO' then

163: if not fa_cache_pkg.fazcbc(X_book => px_asset_hdr_rec.book_type_code,
164: p_log_level_rec => g_log_level_rec) then
165: raise tax_rsv_adj_err;
166: end if;
167: if fa_cache_pkg.fazcbc_record.allow_deprn_adjustments = 'NO' then
168: -- Bug 5472772 Added fa_srvr_msg call
169: fa_srvr_msg.add_message
170: (calling_fn => l_calling_fn,
171: name => 'FA_ADJ_RSV_ADJ_NOT_ALLOWED'

Line 205: if not fa_cache_pkg.fazcbc_record.book_class = 'TAX' then

201: -- end of pop structs
202:
203: -- Allow if Tax Book
204:
205: if not fa_cache_pkg.fazcbc_record.book_class = 'TAX' then
206: -- Bug 5472772 Added fa_srvr_msg call
207: fa_srvr_msg.add_message
208: (calling_fn => l_calling_fn,
209: name => 'FA_ADJ_TAX_BOOK'

Line 239: if fa_cache_pkg.fazcbc_record.allow_deprn_adjustments = 'NO' then

235: end if;
236:
237: -- Check for Tax book, Allow Deprn Adjustment is allowed.
238:
239: if fa_cache_pkg.fazcbc_record.allow_deprn_adjustments = 'NO' then
240: -- Bug 5472772 Added fa_srvr_msg call
241: fa_srvr_msg.add_message
242: (calling_fn => l_calling_fn,
243: name => 'FA_ADJ_RSV_ADJ_NOT_ALLOWED'

Line 438: l_sob_tbl FA_CACHE_PKG.fazcrsob_sob_tbl_type;

434: l_period_rec FA_API_TYPES.period_rec_type;
435:
436: l_transaction_date date;
437: l_fully_rsv boolean;
438: l_sob_tbl FA_CACHE_PKG.fazcrsob_sob_tbl_type;
439:
440: l_reporting_flag varchar2(1);
441: l_exchange_rate number;
442: l_avg_rate number;

Line 498: if not FA_CACHE_PKG.fazcrsob

494: end if;
495:
496: -- call the sob cache to get the table of sob_ids
497:
498: if not FA_CACHE_PKG.fazcrsob
499: (x_book_type_code => px_asset_hdr_rec.book_type_code,
500: x_sob_tbl => l_sob_tbl,
501: p_log_level_rec => p_log_level_rec) then
502: raise tax_rsv_adj_err;