DBA Data[Home] [Help]

APPS.IGI_IAC_ROLLBACK_DEPRN_PKG dependencies on IGI_IAC_REVAL_ASSET_RULES

Line 54: FROM igi_iac_revaluations r,igi_iac_reval_asset_rules a

50: /* Bug 2425914 vgadde 21/06/2002 */
51: /* Modified query to fecth records created by ADDITION only */
52: CURSOR c_get_revaluation_info(p_asset_id igi_iac_det_balances.asset_id%TYPE) IS
53: SELECT a.revaluation_id
54: FROM igi_iac_revaluations r,igi_iac_reval_asset_rules a
55: WHERE a.revaluation_id = r.revaluation_id
56: AND a.book_type_code = p_book_type_code
57: AND a.asset_id = p_asset_id
58: AND r.calling_program = 'ADDITION';

Line 196: /* Delete records from igi_iac_reval_asset_rules */

192: CLOSE c_get_revaluation_info;
193: igi_iac_debug_pkg.debug_other_string(p_level => g_state_level,
194: p_full_path => l_path_name,
195: p_string => ' Revaluation Id :'||to_char(l_revaluation_id));
196: /* Delete records from igi_iac_reval_asset_rules */
197: IF (l_revaluation_id IS NOT NULL) THEN
198: igi_iac_debug_pkg.debug_other_string(p_level => g_state_level,
199: p_full_path => l_path_name,
200: p_string => ' Deleting records from igi_iac_reval_asset_rules');

Line 200: p_string => ' Deleting records from igi_iac_reval_asset_rules');

196: /* Delete records from igi_iac_reval_asset_rules */
197: IF (l_revaluation_id IS NOT NULL) THEN
198: igi_iac_debug_pkg.debug_other_string(p_level => g_state_level,
199: p_full_path => l_path_name,
200: p_string => ' Deleting records from igi_iac_reval_asset_rules');
201: igi_iac_reval_asset_rules_pkg.delete_row(
202: x_asset_id => l_asset_info.asset_id,
203: x_book_type_code => p_book_type_code,
204: x_revaluation_id => l_revaluation_id);

Line 201: igi_iac_reval_asset_rules_pkg.delete_row(

197: IF (l_revaluation_id IS NOT NULL) THEN
198: igi_iac_debug_pkg.debug_other_string(p_level => g_state_level,
199: p_full_path => l_path_name,
200: p_string => ' Deleting records from igi_iac_reval_asset_rules');
201: igi_iac_reval_asset_rules_pkg.delete_row(
202: x_asset_id => l_asset_info.asset_id,
203: x_book_type_code => p_book_type_code,
204: x_revaluation_id => l_revaluation_id);
205: /* Delete records from igi_iac_revaluations */