DBA Data[Home] [Help]

APPS.IGI_IAC_ADJ_AMORT_PKG dependencies on FA_SRVR_MSG

Line 1045: FA_SRVR_MSG.add_message(

1041: WHEN e_latest_trx_not_avail THEN
1042: igi_iac_debug_pkg.debug_other_string(p_level => g_excep_level,
1043: p_full_path => l_path_name,
1044: p_string => 'Latest transaction for the asset could not be retrieved');
1045: FA_SRVR_MSG.add_message(
1046: Calling_Fn => g_calling_fn,
1047: Name => 'IGI_IAC_NO_LATEST_TRX');
1048: RETURN FALSE;
1049:

Line 1054: FA_SRVR_MSG.add_message(

1050: WHEN e_no_period_info_avail THEN
1051: igi_iac_debug_pkg.debug_other_string(p_level => g_excep_level,
1052: p_full_path => l_path_name,
1053: p_string => 'No open period information available for the book');
1054: FA_SRVR_MSG.add_message(
1055: Calling_Fn => g_calling_fn,
1056: Name => 'IGI_IAC_NO_PERIOD_INFO');
1057: RETURN FALSE;
1058:

Line 1063: FA_SRVR_MSG.add_message(

1059: WHEN e_no_gl_info THEN
1060: igi_iac_debug_pkg.debug_other_string(p_level => g_excep_level,
1061: p_full_path => l_path_name,
1062: p_string => 'Could not retrive GL information for Book');
1063: FA_SRVR_MSG.add_message(
1064: Calling_Fn => g_calling_fn,
1065: Name => 'IGI_IAC_NO_GL_INFO');
1066: RETURN FALSE;
1067:

Line 1072: FA_SRVR_MSG.add_message(

1068: WHEN e_no_ccid_found THEN
1069: igi_iac_debug_pkg.debug_other_string(p_level => g_excep_level,
1070: p_full_path => l_path_name,
1071: p_string => 'CCID could not be found');
1072: FA_SRVR_MSG.add_message(
1073: Calling_Fn => g_calling_fn,
1074: Name => 'IGI_IAC_WF_FAILED_CCID');
1075: RETURN FALSE;
1076:

Line 1081: FA_SRVR_MSG.add_message(

1077: WHEN e_no_proration THEN
1078: igi_iac_debug_pkg.debug_other_string(p_level => g_excep_level,
1079: p_full_path => l_path_name,
1080: p_string => 'Amount could not be prorated among the distributions');
1081: FA_SRVR_MSG.add_message(
1082: Calling_Fn => g_calling_fn,
1083: Name => 'IGI_IAC_NO_PRORATION');
1084: RETURN FALSE;
1085:

Line 1090: FA_SRVR_MSG.add_message(

1086: WHEN e_asset_life_err THEN
1087: igi_iac_debug_pkg.debug_other_string(p_level => g_excep_level,
1088: p_full_path => l_path_name,
1089: p_string => 'Asset life could not be checked');
1090: FA_SRVR_MSG.add_message(
1091: Calling_Fn => g_calling_fn,
1092: Name => 'IGI_IAC_ASSET_LIFE_ERR');
1093: RETURN FALSE;
1094:

Line 1099: FA_SRVR_MSG.add_message(

1095: WHEN e_non_dep_asset THEN
1096: igi_iac_debug_pkg.debug_other_string(p_level => g_excep_level,
1097: p_full_path => l_path_name,
1098: p_string => 'No further processing for non-depreciating asset');
1099: FA_SRVR_MSG.add_message(
1100: Calling_Fn => g_calling_fn,
1101: Name => 'IGI_IAC_NON_DEP_ASSET',
1102: Token1 => 'ASSET_NUM',
1103: Value1 => g_asset_num);

Line 1110: FA_SRVR_MSG.add_message(

1106: WHEN e_curr_period_amort THEN
1107: igi_iac_debug_pkg.debug_other_string(p_level => g_excep_level,
1108: p_full_path => l_path_name,
1109: p_string => 'No further processing for current period amortized asset');
1110: FA_SRVR_MSG.add_message(
1111: Calling_Fn => g_calling_fn,
1112: Name => 'IGI_IAC_CURR_PRD_AMORT',
1113: Token1 => 'ASSET_NUM',
1114: Value1 => g_asset_num);

Line 1119: FA_SRVR_MSG.add_sql_error(Calling_Fn => g_calling_fn);

1115: RETURN TRUE;
1116:
1117: WHEN others THEN
1118: igi_iac_debug_pkg.debug_unexpected_msg(p_full_path => l_path_name);
1119: FA_SRVR_MSG.add_sql_error(Calling_Fn => g_calling_fn);
1120: RETURN FALSE;
1121:
1122: END Do_Amort_Deprn_Reval;
1123: