DBA Data[Home] [Help]

APPS.FA_REVALUATION_PUB dependencies on FA_CACHE_PKG

Line 11: g_release number := fa_cache_pkg.fazarel_release;

7: G_API_NAME CONSTANT varchar2(30) := 'Revaluation API';
8: G_API_VERSION CONSTANT number := 1.0;
9:
10: g_log_level_rec fa_api_types.log_level_rec_type;
11: g_release number := fa_cache_pkg.fazarel_release;
12:
13: --*********************** Private functions ******************************--
14:
15: -- private declaration for books (mrc) wrapper

Line 73: g_release := fa_cache_pkg.fazarel_release;

69: raise reval_err;
70: end if;
71: end if;
72:
73: g_release := fa_cache_pkg.fazarel_release;
74:
75: -- Initialize message list if p_init_msg_list is set to TRUE.
76: if (fnd_api.to_boolean(p_init_msg_list)) then
77: -- initialize error message stack.

Line 97: if NOT fa_cache_pkg.fazcbc(X_book => px_asset_hdr_rec.book_type_code, p_log_level_rec => g_log_level_rec) then

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

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

97: if NOT fa_cache_pkg.fazcbc(X_book => px_asset_hdr_rec.book_type_code, p_log_level_rec => g_log_level_rec) then
98: raise reval_err;
99: end if;
100:
101: px_asset_hdr_rec.set_of_books_id := fa_cache_pkg.fazcbc_record.set_of_books_id;
102:
103: -- verify the book allows revaluation
104: if (nvl(fa_cache_pkg.fazcbc_record.allow_reval_flag, 'NO') = 'NO') then
105: fa_srvr_msg.add_message

Line 104: if (nvl(fa_cache_pkg.fazcbc_record.allow_reval_flag, 'NO') = 'NO') then

100:
101: px_asset_hdr_rec.set_of_books_id := fa_cache_pkg.fazcbc_record.set_of_books_id;
102:
103: -- verify the book allows revaluation
104: if (nvl(fa_cache_pkg.fazcbc_record.allow_reval_flag, 'NO') = 'NO') then
105: fa_srvr_msg.add_message
106: (calling_fn => l_calling_fn,
107: name => 'FA_BOOK_REVAL_NOT_ALLOW', p_log_level_rec => g_log_level_rec);
108: raise reval_err;

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 => px_asset_hdr_rec.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 reval_err;

Line 281: l_sob_tbl FA_CACHE_PKG.fazcrsob_sob_tbl_type;

277:
278: l_reporting_flag varchar2(1);
279:
280: l_period_rec FA_API_TYPES.period_rec_type;
281: l_sob_tbl FA_CACHE_PKG.fazcrsob_sob_tbl_type;
282:
283: l_transaction_date date;
284: l_return_status NUMBER;
285:

Line 325: if not FA_CACHE_PKG.fazcrsob

321: end if;
322:
323:
324: -- call the sob cache to get the table of sob_ids
325: if not FA_CACHE_PKG.fazcrsob
326: (x_book_type_code => px_asset_hdr_rec.book_type_code,
327: x_sob_tbl => l_sob_tbl, p_log_level_rec => p_log_level_rec) then
328: raise reval_err;
329: end if;

Line 348: if NOT fa_cache_pkg.fazcbcs(X_book => px_asset_hdr_rec.book_type_code,

344: end if;
345:
346: -- call the cache to set the sob_id used for rounding and other lower
347: -- level code for each book.
348: if NOT fa_cache_pkg.fazcbcs(X_book => px_asset_hdr_rec.book_type_code,
349: X_set_of_books_id => l_asset_hdr_rec.set_of_books_id,
350: p_log_level_rec => p_log_level_rec) then
351: raise reval_err;
352: end if;