DBA Data[Home] [Help]

APPS.FA_TAX_RSV_ADJ_PUB dependencies on FA_CACHE_PKG

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

103: end if;
104:
105: -- call the cache for the primary transaction book
106:
107: if NOT fa_cache_pkg.fazcbc(X_book => px_asset_hdr_rec.book_type_code,
108: p_log_level_rec => g_log_level_rec) then
109: raise tax_rsv_adj_err;
110: end if;
111:

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

108: p_log_level_rec => g_log_level_rec) then
109: raise tax_rsv_adj_err;
110: end if;
111:
112: px_asset_hdr_rec.set_of_books_id := fa_cache_pkg.fazcbc_record.set_of_books_id;
113:
114: -- verify the asset exist in the book already
115:
116: if not FA_ASSET_VAL_PVT.validate_asset_book

Line 131: if not fa_cache_pkg.fazcsob

127: -- the book struct
128:
129: -- Get the book type code P,R or N
130:
131: if not fa_cache_pkg.fazcsob
132: (X_set_of_books_id => px_asset_hdr_rec.set_of_books_id,
133: X_mrc_sob_type_code => l_reporting_flag,
134: p_log_level_rec => g_log_level_rec) then
135: raise tax_rsv_adj_err;

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

148:
149:
150: -- load cache fazcbc.
151:
152: if not fa_cache_pkg.fazcbc(X_book => px_asset_hdr_rec.book_type_code,
153: p_log_level_rec => g_log_level_rec) then
154: raise tax_rsv_adj_err;
155: end if;
156: if fa_cache_pkg.fazcbc_record.allow_deprn_adjustments = 'NO' then

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

152: if not fa_cache_pkg.fazcbc(X_book => px_asset_hdr_rec.book_type_code,
153: p_log_level_rec => g_log_level_rec) then
154: raise tax_rsv_adj_err;
155: end if;
156: if fa_cache_pkg.fazcbc_record.allow_deprn_adjustments = 'NO' then
157: -- Bug 5472772 Added fa_srvr_msg call
158: fa_srvr_msg.add_message
159: (calling_fn => l_calling_fn,
160: name => 'FA_ADJ_RSV_ADJ_NOT_ALLOWED'

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

190: -- end of pop structs
191:
192: -- Allow if Tax Book
193:
194: if not fa_cache_pkg.fazcbc_record.book_class = 'TAX' then
195: -- Bug 5472772 Added fa_srvr_msg call
196: fa_srvr_msg.add_message
197: (calling_fn => l_calling_fn,
198: name => 'FA_ADJ_TAX_BOOK'

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

224: end if;
225:
226: -- Check for Tax book, Allow Deprn Adjustment is allowed.
227:
228: if fa_cache_pkg.fazcbc_record.allow_deprn_adjustments = 'NO' then
229: -- Bug 5472772 Added fa_srvr_msg call
230: fa_srvr_msg.add_message
231: (calling_fn => l_calling_fn,
232: name => 'FA_ADJ_RSV_ADJ_NOT_ALLOWED'

Line 441: l_sob_tbl FA_CACHE_PKG.fazcrsob_sob_tbl_type;

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

Line 501: if not FA_CACHE_PKG.fazcrsob

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