DBA Data[Home] [Help]

APPS.FA_QUERY_BALANCES_PKG dependencies on FA_CACHE_PKG

Line 97: if (nvl(fa_cache_pkg.fazcbc_record.book_type_code, '-NULL') <> X_book) then

93: -- either stale or not populated, since this routine
94: -- is only called on an asset by asset basis from the
95: -- form, performance is not a huge concern.
96:
97: if (nvl(fa_cache_pkg.fazcbc_record.book_type_code, '-NULL') <> X_book) then
98: if not fa_cache_pkg.fazcbc(X_BOOK => X_BOOK
99: ,p_log_level_rec => p_log_level_rec) then
100: raise error_found;
101: end if;

Line 98: if not fa_cache_pkg.fazcbc(X_BOOK => X_BOOK

94: -- is only called on an asset by asset basis from the
95: -- form, performance is not a huge concern.
96:
97: if (nvl(fa_cache_pkg.fazcbc_record.book_type_code, '-NULL') <> X_book) then
98: if not fa_cache_pkg.fazcbc(X_BOOK => X_BOOK
99: ,p_log_level_rec => p_log_level_rec) then
100: raise error_found;
101: end if;
102: end if;

Line 229: h_curr_period_counter := fa_cache_pkg.fazcbc_record.last_period_counter + 1;

225: -- This change is done by Sujit Dalai when YTD revaluation was implemented .
226: -- Fix for 947800. Added h_dummy to avoid ORA-1403.
227:
228: if (X_ADJ_DRS.BOOK is not null) then
229: h_curr_period_counter := fa_cache_pkg.fazcbc_record.last_period_counter + 1;
230: h_dummy := 1;
231: end if;
232:
233: -- Get adjustment amount from fa_adjustment when adjustment_type is 'EXPENSE'

Line 664: X_CUR_PER_CTR := fa_cache_pkg.fazcbc_record.last_period_counter + 1;

660:
661: -- select period counter, number of periods
662: -- per fiscal year, and the current fiscal year
663:
664: X_CUR_PER_CTR := fa_cache_pkg.fazcbc_record.last_period_counter + 1;
665: X_CUR_FY := fa_cache_pkg.fazcbc_record.current_fiscal_year;
666:
667: if not fa_cache_pkg.fazcct
668: (X_calendar => fa_cache_pkg.fazcbc_record.deprn_calendar, p_log_level_rec => p_log_level_rec) then

Line 665: X_CUR_FY := fa_cache_pkg.fazcbc_record.current_fiscal_year;

661: -- select period counter, number of periods
662: -- per fiscal year, and the current fiscal year
663:
664: X_CUR_PER_CTR := fa_cache_pkg.fazcbc_record.last_period_counter + 1;
665: X_CUR_FY := fa_cache_pkg.fazcbc_record.current_fiscal_year;
666:
667: if not fa_cache_pkg.fazcct
668: (X_calendar => fa_cache_pkg.fazcbc_record.deprn_calendar, p_log_level_rec => p_log_level_rec) then
669: raise error_found;

Line 667: if not fa_cache_pkg.fazcct

663:
664: X_CUR_PER_CTR := fa_cache_pkg.fazcbc_record.last_period_counter + 1;
665: X_CUR_FY := fa_cache_pkg.fazcbc_record.current_fiscal_year;
666:
667: if not fa_cache_pkg.fazcct
668: (X_calendar => fa_cache_pkg.fazcbc_record.deprn_calendar, p_log_level_rec => p_log_level_rec) then
669: raise error_found;
670: end if;
671:

Line 668: (X_calendar => fa_cache_pkg.fazcbc_record.deprn_calendar, p_log_level_rec => p_log_level_rec) then

664: X_CUR_PER_CTR := fa_cache_pkg.fazcbc_record.last_period_counter + 1;
665: X_CUR_FY := fa_cache_pkg.fazcbc_record.current_fiscal_year;
666:
667: if not fa_cache_pkg.fazcct
668: (X_calendar => fa_cache_pkg.fazcbc_record.deprn_calendar, p_log_level_rec => p_log_level_rec) then
669: raise error_found;
670: end if;
671:
672: X_NUM_PERS_FY := fa_cache_pkg.fazcct_record.number_per_fiscal_year;

Line 672: X_NUM_PERS_FY := fa_cache_pkg.fazcct_record.number_per_fiscal_year;

668: (X_calendar => fa_cache_pkg.fazcbc_record.deprn_calendar, p_log_level_rec => p_log_level_rec) then
669: raise error_found;
670: end if;
671:
672: X_NUM_PERS_FY := fa_cache_pkg.fazcct_record.number_per_fiscal_year;
673: X_SUCCESS := TRUE;
674:
675: EXCEPTION
676: when error_found then

Line 1829: X_ADJ_ROW.period_ctr := fa_cache_pkg.fazcbc_record.last_period_counter + 1;

1825: if (nvl(X_ADJ_ROW.period_ctr,0) = 0) then
1826:
1827: h_mesg_name := 'FA_EXP_GET_CUR_PERIOD_INFO';
1828:
1829: X_ADJ_ROW.period_ctr := fa_cache_pkg.fazcbc_record.last_period_counter + 1;
1830: end if;
1831:
1832: -- If running in ADJUSTED mode (querying from TAX book) then we're
1833: -- also interested in tax book's deprn adjustments. If in

Line 1843: h_book_class := fa_cache_pkg.fazcbc_record.book_class;

1839: h_mode_str := 'STANDARD';
1840: end if;
1841:
1842: -- Get book class
1843: h_book_class := fa_cache_pkg.fazcbc_record.book_class;
1844:
1845: -- Look for adjustments... sum the amounts under each
1846: -- adjustment type.
1847: -- bonus Implemented.