DBA Data[Home] [Help]

APPS.FA_RESERVE_TRANSFER_PUB dependencies on FA_CACHE_PKG

Line 90: if NOT fa_cache_pkg.fazcbc(X_book => p_book_type_code,

86: raise rsv_xfr_err;
87: end if;
88:
89: -- call the cache for the primary transaction book
90: if NOT fa_cache_pkg.fazcbc(X_book => p_book_type_code,
91: p_log_level_rec => g_log_level_rec) then
92: raise rsv_xfr_err;
93: end if;
94:

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

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

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

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

Line 128: if not fa_cache_pkg.fazcsob

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

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

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

Line 269: l_rsob_tbl FA_CACHE_PKG.fazcrsob_sob_tbl_type;

265: l_amount number;
266: l_src_primary_cost number; -- ??? use ???
267:
268: l_period_rec FA_API_TYPES.period_rec_type;
269: l_rsob_tbl FA_CACHE_PKG.fazcrsob_sob_tbl_type;
270: l_reporting_flag varchar2(1);
271:
272: l_exchange_rate number;
273: l_avg_rate number;

Line 541: if (NOT fa_cache_pkg.fazcrsob (

537:
538:
539:
540: -- Call the reporting books cache to get rep books.
541: if (NOT fa_cache_pkg.fazcrsob (
542: x_book_type_code => l_src_asset_hdr_rec.book_type_code,
543: x_sob_tbl => l_rsob_tbl,
544: p_log_level_rec => p_log_level_rec)) then
545: raise rsv_xfr_err;

Line 568: if (NOT fa_cache_pkg.fazcbcs (

564: fnd_profile.put('GL_SET_OF_BKS_ID', l_mrc_src_asset_hdr_rec.set_of_books_id);
565: fnd_client_info.set_currency_context (l_mrc_src_asset_hdr_rec.set_of_books_id);
566:
567: -- Need to always call fazcbcs
568: if (NOT fa_cache_pkg.fazcbcs (
569: X_book => l_mrc_src_asset_hdr_rec.book_type_code,
570: p_log_level_rec => p_log_level_rec)) then
571: raise rsv_xfr_err;
572: end if;