DBA Data[Home] [Help]

APPS.FA_EXP_PKG dependencies on FA_CACHE_PKG

Line 37: if not fa_cache_pkg.fazccmt

33: h_dummy_bool boolean;
34: h_dummy_varch varchar2(16);
35: begin <>
36:
37: if not fa_cache_pkg.fazccmt
38: (X_fin_info_ptr.method_code,
39: X_fin_info_ptr.life, p_log_level_rec => p_log_level_rec) then
40: fa_srvr_msg.add_message (calling_fn => 'fa_exp_pkg.faxbds', p_log_level_rec => p_log_level_rec);
41: return (FALSE);

Line 44: rate_source_rule := fa_cache_pkg.fazccmt_record.rate_source_rule;

40: fa_srvr_msg.add_message (calling_fn => 'fa_exp_pkg.faxbds', p_log_level_rec => p_log_level_rec);
41: return (FALSE);
42: end if;
43:
44: rate_source_rule := fa_cache_pkg.fazccmt_record.rate_source_rule;
45:
46:
47: X_dpr_ptr.adj_cost := X_fin_info_ptr.adj_cost;
48: X_dpr_ptr.rec_cost := X_fin_info_ptr.rec_cost;

Line 90: last_per_ctr := fa_cache_pkg.fazcbc_record.last_period_counter;

86: --
87: -- note there is no need to call the cache again here as it would already be loaded
88: --
89:
90: last_per_ctr := fa_cache_pkg.fazcbc_record.last_period_counter;
91: cur_fy := fa_cache_pkg.fazcbc_record.current_fiscal_year;
92: cur_per_num := mod((last_per_ctr+1),cur_fy);
93: X_dpr_ptr.calendar_type := fa_cache_pkg.fazcbc_record.deprn_calendar;
94: calendar_type := fa_cache_pkg.fazcbc_record.deprn_calendar;

Line 91: cur_fy := fa_cache_pkg.fazcbc_record.current_fiscal_year;

87: -- note there is no need to call the cache again here as it would already be loaded
88: --
89:
90: last_per_ctr := fa_cache_pkg.fazcbc_record.last_period_counter;
91: cur_fy := fa_cache_pkg.fazcbc_record.current_fiscal_year;
92: cur_per_num := mod((last_per_ctr+1),cur_fy);
93: X_dpr_ptr.calendar_type := fa_cache_pkg.fazcbc_record.deprn_calendar;
94: calendar_type := fa_cache_pkg.fazcbc_record.deprn_calendar;
95: rate_calendar := fa_cache_pkg.fazcbc_record.prorate_calendar;

Line 93: X_dpr_ptr.calendar_type := fa_cache_pkg.fazcbc_record.deprn_calendar;

89:
90: last_per_ctr := fa_cache_pkg.fazcbc_record.last_period_counter;
91: cur_fy := fa_cache_pkg.fazcbc_record.current_fiscal_year;
92: cur_per_num := mod((last_per_ctr+1),cur_fy);
93: X_dpr_ptr.calendar_type := fa_cache_pkg.fazcbc_record.deprn_calendar;
94: calendar_type := fa_cache_pkg.fazcbc_record.deprn_calendar;
95: rate_calendar := fa_cache_pkg.fazcbc_record.prorate_calendar;
96: X_dist_book := fa_cache_pkg.fazcbc_record.distribution_source_book;
97:

Line 94: calendar_type := fa_cache_pkg.fazcbc_record.deprn_calendar;

90: last_per_ctr := fa_cache_pkg.fazcbc_record.last_period_counter;
91: cur_fy := fa_cache_pkg.fazcbc_record.current_fiscal_year;
92: cur_per_num := mod((last_per_ctr+1),cur_fy);
93: X_dpr_ptr.calendar_type := fa_cache_pkg.fazcbc_record.deprn_calendar;
94: calendar_type := fa_cache_pkg.fazcbc_record.deprn_calendar;
95: rate_calendar := fa_cache_pkg.fazcbc_record.prorate_calendar;
96: X_dist_book := fa_cache_pkg.fazcbc_record.distribution_source_book;
97:
98: prorate_jdate := to_number(to_char(X_fin_info_ptr.prorate_date, 'J'));

Line 95: rate_calendar := fa_cache_pkg.fazcbc_record.prorate_calendar;

91: cur_fy := fa_cache_pkg.fazcbc_record.current_fiscal_year;
92: cur_per_num := mod((last_per_ctr+1),cur_fy);
93: X_dpr_ptr.calendar_type := fa_cache_pkg.fazcbc_record.deprn_calendar;
94: calendar_type := fa_cache_pkg.fazcbc_record.deprn_calendar;
95: rate_calendar := fa_cache_pkg.fazcbc_record.prorate_calendar;
96: X_dist_book := fa_cache_pkg.fazcbc_record.distribution_source_book;
97:
98: prorate_jdate := to_number(to_char(X_fin_info_ptr.prorate_date, 'J'));
99: deprn_start_jdate := to_number(to_char(X_fin_info_ptr.deprn_start_date, 'J'));

Line 96: X_dist_book := fa_cache_pkg.fazcbc_record.distribution_source_book;

92: cur_per_num := mod((last_per_ctr+1),cur_fy);
93: X_dpr_ptr.calendar_type := fa_cache_pkg.fazcbc_record.deprn_calendar;
94: calendar_type := fa_cache_pkg.fazcbc_record.deprn_calendar;
95: rate_calendar := fa_cache_pkg.fazcbc_record.prorate_calendar;
96: X_dist_book := fa_cache_pkg.fazcbc_record.distribution_source_book;
97:
98: prorate_jdate := to_number(to_char(X_fin_info_ptr.prorate_date, 'J'));
99: deprn_start_jdate := to_number(to_char(X_fin_info_ptr.deprn_start_date, 'J'));
100: jdate_in_svc := to_number(to_char(X_fin_info_ptr.date_placed_in_svc, 'J'));

Line 102: fy_name := fa_cache_pkg.fazcbc_record.fiscal_year_name;

98: prorate_jdate := to_number(to_char(X_fin_info_ptr.prorate_date, 'J'));
99: deprn_start_jdate := to_number(to_char(X_fin_info_ptr.deprn_start_date, 'J'));
100: jdate_in_svc := to_number(to_char(X_fin_info_ptr.date_placed_in_svc, 'J'));
101:
102: fy_name := fa_cache_pkg.fazcbc_record.fiscal_year_name;
103:
104: if not fa_cache_pkg.fazccp (
105: rate_calendar, fy_name, prorate_jdate,
106: period_num, prorate_fy, start_jdate

Line 104: if not fa_cache_pkg.fazccp (

100: jdate_in_svc := to_number(to_char(X_fin_info_ptr.date_placed_in_svc, 'J'));
101:
102: fy_name := fa_cache_pkg.fazcbc_record.fiscal_year_name;
103:
104: if not fa_cache_pkg.fazccp (
105: rate_calendar, fy_name, prorate_jdate,
106: period_num, prorate_fy, start_jdate
107: , p_log_level_rec => p_log_level_rec) then
108: fa_srvr_msg.add_message (calling_fn => 'fa_exp_pkg.faxbds', p_log_level_rec => p_log_level_rec);

Line 119: if not fa_cache_pkg.fazccp (

115: else
116: use_jdate := deprn_start_jdate;
117: end if;
118:
119: if not fa_cache_pkg.fazccp (
120: calendar_type, fy_name, use_jdate,
121: deprn_period, deprn_fy, start_jdate
122: , p_log_level_rec => p_log_level_rec) then
123: fa_srvr_msg.add_message (calling_fn => 'fa_exp_pkg.faxbds', p_log_level_rec => p_log_level_rec);

Line 127: if not fa_cache_pkg.fazcct (calendar_type, p_log_level_rec => p_log_level_rec) then

123: fa_srvr_msg.add_message (calling_fn => 'fa_exp_pkg.faxbds', p_log_level_rec => p_log_level_rec);
124: return (FALSE);
125: end if;
126:
127: if not fa_cache_pkg.fazcct (calendar_type, p_log_level_rec => p_log_level_rec) then
128: fa_srvr_msg.add_message (calling_fn => 'fa_exp_pkg.faxbds', p_log_level_rec => p_log_level_rec);
129: return (FALSE);
130: end if;
131: pers_per_yr := fa_cache_pkg.fazcct_record.number_per_fiscal_year;

Line 131: pers_per_yr := fa_cache_pkg.fazcct_record.number_per_fiscal_year;

127: if not fa_cache_pkg.fazcct (calendar_type, p_log_level_rec => p_log_level_rec) then
128: fa_srvr_msg.add_message (calling_fn => 'fa_exp_pkg.faxbds', p_log_level_rec => p_log_level_rec);
129: return (FALSE);
130: end if;
131: pers_per_yr := fa_cache_pkg.fazcct_record.number_per_fiscal_year;
132:
133: X_dpr_ptr.prorate_jdate := prorate_jdate;
134: X_dpr_ptr.deprn_start_jdate := deprn_start_jdate;
135: X_dpr_ptr.jdate_retired := 0;

Line 395: if not fa_cache_pkg.fazccmt (

391: return (FALSE);
392: end if;
393: end if;
394:
395: if not fa_cache_pkg.fazccmt (
396: X_fin_info_ptr.method_code,
397: X_fin_info_ptr.life, p_log_level_rec => p_log_level_rec) then
398: fa_srvr_msg.add_message (calling_fn => 'fa_exp_pkg.faxexp', p_log_level_rec => p_log_level_rec);
399: return (FALSE);

Line 402: rate_source_rule := fa_cache_pkg.fazccmt_record.rate_source_rule;

398: fa_srvr_msg.add_message (calling_fn => 'fa_exp_pkg.faxexp', p_log_level_rec => p_log_level_rec);
399: return (FALSE);
400: end if;
401:
402: rate_source_rule := fa_cache_pkg.fazccmt_record.rate_source_rule;
403: deprn_basis_rule := fa_cache_pkg.fazccmt_record.deprn_basis_rule;
404:
405:
406: -- Added for the Depreciable Basis Formula.

Line 403: deprn_basis_rule := fa_cache_pkg.fazccmt_record.deprn_basis_rule;

399: return (FALSE);
400: end if;
401:
402: rate_source_rule := fa_cache_pkg.fazccmt_record.rate_source_rule;
403: deprn_basis_rule := fa_cache_pkg.fazccmt_record.deprn_basis_rule;
404:
405:
406: -- Added for the Depreciable Basis Formula.
407: cur_fy := fa_cache_pkg.fazcbc_record.current_fiscal_year;

Line 407: cur_fy := fa_cache_pkg.fazcbc_record.current_fiscal_year;

403: deprn_basis_rule := fa_cache_pkg.fazccmt_record.deprn_basis_rule;
404:
405:
406: -- Added for the Depreciable Basis Formula.
407: cur_fy := fa_cache_pkg.fazcbc_record.current_fiscal_year;
408: cur_per_num := mod(X_fin_info_ptr.period_ctr,cur_fy);
409:
410: if (fa_cache_pkg.fa_enabled_deprn_basis_formula) then
411: -- Depreciable Basis Formula

Line 410: if (fa_cache_pkg.fa_enabled_deprn_basis_formula) then

406: -- Added for the Depreciable Basis Formula.
407: cur_fy := fa_cache_pkg.fazcbc_record.current_fiscal_year;
408: cur_per_num := mod(X_fin_info_ptr.period_ctr,cur_fy);
409:
410: if (fa_cache_pkg.fa_enabled_deprn_basis_formula) then
411: -- Depreciable Basis Formula
412: -- set h_rule_in paremters
413:
414: h_rule_in.asset_id := X_fin_info_ptr.asset_id;

Line 503: -- cur_fy := fa_cache_pkg.fazcbc_record.current_fiscal_year;

499: (X_fin_info_ptr.Adj_cost = 0 and NOT(X_fin_info_ptr.dep_flag) ) then
500:
501: -- Fixed to bug#1762518 - hsugimot
502:
503: -- cur_fy := fa_cache_pkg.fazcbc_record.current_fiscal_year;
504: -- cur_per_num := mod(X_fin_info_ptr.period_ctr,cur_fy);
505:
506: if (p_log_level_rec.statement_level) then
507: fa_debug_pkg.add('faxexp','X_fin_info_ptr.period_ctr',