DBA Data[Home] [Help]

APPS.IGI_IAC_YTD_ENGINE dependencies on IGI_IAC_COMMON_UTILS

Line 32: IF IGI_IAC_COMMON_UTILS.Iac_Round(X_Amount => l_amount, X_Book => p_book_type_code)

28: l_amount_old number := p_amount;
29: --l_path varchar2(150) := g_path||'do_round';
30: begin
31: igi_iac_debug_pkg.debug_other_string(g_state_level,l_path,'--- Inside Round() ---');
32: IF IGI_IAC_COMMON_UTILS.Iac_Round(X_Amount => l_amount, X_Book => p_book_type_code)
33: THEN
34: p_amount := l_amount;
35: igi_iac_debug_pkg.debug_other_string(g_state_level,l_path,'IGI_IAC_COMMON_UTILS.Iac_Round is TRUE');
36: igi_iac_debug_pkg.debug_other_string(g_state_level,l_path,'p_amount = '||p_amount);

Line 35: igi_iac_debug_pkg.debug_other_string(g_state_level,l_path,'IGI_IAC_COMMON_UTILS.Iac_Round is TRUE');

31: igi_iac_debug_pkg.debug_other_string(g_state_level,l_path,'--- Inside Round() ---');
32: IF IGI_IAC_COMMON_UTILS.Iac_Round(X_Amount => l_amount, X_Book => p_book_type_code)
33: THEN
34: p_amount := l_amount;
35: igi_iac_debug_pkg.debug_other_string(g_state_level,l_path,'IGI_IAC_COMMON_UTILS.Iac_Round is TRUE');
36: igi_iac_debug_pkg.debug_other_string(g_state_level,l_path,'p_amount = '||p_amount);
37: ELSE
38: p_amount := round( l_amount, 2);
39: igi_iac_debug_pkg.debug_other_string(g_state_level,l_path,'IGI_IAC_COMMON_UTILS.Iac_Round is FALSE');

Line 39: igi_iac_debug_pkg.debug_other_string(g_state_level,l_path,'IGI_IAC_COMMON_UTILS.Iac_Round is FALSE');

35: igi_iac_debug_pkg.debug_other_string(g_state_level,l_path,'IGI_IAC_COMMON_UTILS.Iac_Round is TRUE');
36: igi_iac_debug_pkg.debug_other_string(g_state_level,l_path,'p_amount = '||p_amount);
37: ELSE
38: p_amount := round( l_amount, 2);
39: igi_iac_debug_pkg.debug_other_string(g_state_level,l_path,'IGI_IAC_COMMON_UTILS.Iac_Round is FALSE');
40: igi_iac_debug_pkg.debug_other_string(g_state_level,l_path,'p_amount = '||p_amount);
41: END IF;
42: exception when others then
43: p_amount := l_amount_old;

Line 101: IF NOT igi_iac_common_utils.get_period_info_for_date(p_book_type_code,

97: FETCH c_get_dpis INTO p_asset_info.date_placed_in_service;
98: CLOSE c_get_dpis;
99: END IF;
100:
101: IF NOT igi_iac_common_utils.get_period_info_for_date(p_book_type_code,
102: p_asset_info.date_placed_in_service,
103: l_dpis_period) THEN
104: RETURN FALSE;
105: END IF;

Line 110: IF NOT igi_iac_common_utils.get_period_info_for_counter(p_book_type_code,

106:
107: IF (p_start_period IS NULL) THEN
108: l_start_period := l_dpis_period;
109: ELSE
110: IF NOT igi_iac_common_utils.get_period_info_for_counter(p_book_type_code,
111: p_start_period,
112: l_start_period) THEN
113: RETURN FALSE;
114: END IF;

Line 117: IF NOT igi_iac_common_utils.get_open_period_info(p_book_type_code,

113: RETURN FALSE;
114: END IF;
115: END IF;
116:
117: IF NOT igi_iac_common_utils.get_open_period_info(p_book_type_code,
118: l_open_period) THEN
119: RETURN FALSE;
120: END IF;
121:

Line 125: IF NOT igi_iac_common_utils.get_period_info_for_counter(p_book_type_code,

121:
122: IF (p_end_period IS NULL) THEN
123: l_end_period := l_open_period;
124: ELSE
125: IF NOT igi_iac_common_utils.get_period_info_for_counter(p_book_type_code,
126: p_end_period,
127: l_end_period) THEN
128: RETURN FALSE;
129: END IF;

Line 153: IF NOT igi_iac_common_utils.get_period_info_for_counter(p_book_type_code,

149: l_deprn_periods_elapsed := l_deprn_periods_current_year;
150: END IF;
151:
152: IF (l_last_period_counter < l_end_period.period_counter) THEN
153: IF NOT igi_iac_common_utils.get_period_info_for_counter(p_book_type_code,
154: l_last_period_counter,
155: l_last_deprn_period) THEN
156: RETURN FALSE;
157: END IF;