DBA Data[Home] [Help]

APPS.FA_RETIREMENT_ADJUSTMENT_PUB dependencies on FA_CACHE_PKG

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

94: raise ret_adj_err;
95: end if;
96:
97: -- call the cache for the primary transaction book
98: if NOT fa_cache_pkg.fazcbc(X_book => px_asset_hdr_rec.book_type_code,
99: p_log_level_rec => g_log_level_rec) then
100: raise ret_adj_err;
101: end if;
102:

Line 118: fnd_profile.put('GL_SET_OF_BKS_ID', fa_cache_pkg.fazcbc_record.set_of_books_id);

114:
115: fnd_profile.get ('GL_SET_OF_BKS_ID',l_orig_set_of_books_id);
116: l_orig_currency_context := SUBSTRB(USERENV('CLIENT_INFO'),45,10);
117:
118: fnd_profile.put('GL_SET_OF_BKS_ID', fa_cache_pkg.fazcbc_record.set_of_books_id);
119: fnd_client_info.set_currency_context (fa_cache_pkg.fazcbc_record.set_of_books_id);
120:
121: -- Account for transaction submitted from a responsibility
122: -- that is not tied to a SOB_ID by getting the value from

Line 119: fnd_client_info.set_currency_context (fa_cache_pkg.fazcbc_record.set_of_books_id);

115: fnd_profile.get ('GL_SET_OF_BKS_ID',l_orig_set_of_books_id);
116: l_orig_currency_context := SUBSTRB(USERENV('CLIENT_INFO'),45,10);
117:
118: fnd_profile.put('GL_SET_OF_BKS_ID', fa_cache_pkg.fazcbc_record.set_of_books_id);
119: fnd_client_info.set_currency_context (fa_cache_pkg.fazcbc_record.set_of_books_id);
120:
121: -- Account for transaction submitted from a responsibility
122: -- that is not tied to a SOB_ID by getting the value from
123: -- the book struct

Line 126: if not fa_cache_pkg.fazcsob

122: -- that is not tied to a SOB_ID by getting the value from
123: -- the book struct
124:
125: -- Get the book type code P,R or N
126: if not fa_cache_pkg.fazcsob
127: (X_set_of_books_id => fa_cache_pkg.fazcbc_record.set_of_books_id,
128: X_mrc_sob_type_code => l_reporting_flag,
129: p_log_level_rec => g_log_level_rec) then
130: raise ret_adj_err;

Line 127: (X_set_of_books_id => fa_cache_pkg.fazcbc_record.set_of_books_id,

123: -- the book struct
124:
125: -- Get the book type code P,R or N
126: if not fa_cache_pkg.fazcsob
127: (X_set_of_books_id => fa_cache_pkg.fazcbc_record.set_of_books_id,
128: X_mrc_sob_type_code => l_reporting_flag,
129: p_log_level_rec => g_log_level_rec) then
130: raise ret_adj_err;
131: end if;

Line 245: l_rsob_tbl FA_CACHE_PKG.fazcrsob_sob_tbl_type;

241:
242: l_primary_cost number; -- ??? use ???
243:
244: l_period_rec FA_API_TYPES.period_rec_type;
245: l_rsob_tbl FA_CACHE_PKG.fazcrsob_sob_tbl_type;
246: l_reporting_flag varchar2(1);
247:
248: l_exchange_rate number;
249: l_avg_rate number;

Line 337: if (NOT fa_cache_pkg.fazcrsob (

333: raise ret_adj_err;
334: end if;
335:
336: -- Call the reporting books cache to get rep books.
337: if (NOT fa_cache_pkg.fazcrsob (
338: x_book_type_code => l_asset_hdr_rec.book_type_code,
339: x_sob_tbl => l_rsob_tbl,
340: p_log_level_rec => p_log_level_rec)) then
341: raise ret_adj_err;

Line 394: if (NOT fa_cache_pkg.fazcbcs (

390: fnd_profile.put('GL_SET_OF_BKS_ID', l_mrc_asset_hdr_rec.set_of_books_id);
391: fnd_client_info.set_currency_context (l_mrc_asset_hdr_rec.set_of_books_id);
392:
393: -- Need to always call fazcbcs
394: if (NOT fa_cache_pkg.fazcbcs (
395: X_book => l_mrc_asset_hdr_rec.book_type_code,
396: p_log_level_rec => p_log_level_rec)) then
397: raise ret_adj_err;
398: end if;