DBA Data[Home] [Help]

APPS.IGI_IAC_ADJ_AMORT_PKG dependencies on FA_SRVR_MSG

Line 1020: FA_SRVR_MSG.add_message(

1016: WHEN e_latest_trx_not_avail THEN
1017: igi_iac_debug_pkg.debug_other_string(p_level => g_excep_level,
1018: p_full_path => l_path_name,
1019: p_string => 'Latest transaction for the asset could not be retrieved');
1020: FA_SRVR_MSG.add_message(
1021: Calling_Fn => g_calling_fn,
1022: Name => 'IGI_IAC_NO_LATEST_TRX');
1023: RETURN FALSE;
1024:

Line 1029: FA_SRVR_MSG.add_message(

1025: WHEN e_no_period_info_avail THEN
1026: igi_iac_debug_pkg.debug_other_string(p_level => g_excep_level,
1027: p_full_path => l_path_name,
1028: p_string => 'No open period information available for the book');
1029: FA_SRVR_MSG.add_message(
1030: Calling_Fn => g_calling_fn,
1031: Name => 'IGI_IAC_NO_PERIOD_INFO');
1032: RETURN FALSE;
1033:

Line 1038: FA_SRVR_MSG.add_message(

1034: WHEN e_no_gl_info THEN
1035: igi_iac_debug_pkg.debug_other_string(p_level => g_excep_level,
1036: p_full_path => l_path_name,
1037: p_string => 'Could not retrive GL information for Book');
1038: FA_SRVR_MSG.add_message(
1039: Calling_Fn => g_calling_fn,
1040: Name => 'IGI_IAC_NO_GL_INFO');
1041: RETURN FALSE;
1042:

Line 1047: FA_SRVR_MSG.add_message(

1043: WHEN e_no_ccid_found THEN
1044: igi_iac_debug_pkg.debug_other_string(p_level => g_excep_level,
1045: p_full_path => l_path_name,
1046: p_string => 'CCID could not be found');
1047: FA_SRVR_MSG.add_message(
1048: Calling_Fn => g_calling_fn,
1049: Name => 'IGI_IAC_WF_FAILED_CCID');
1050: RETURN FALSE;
1051:

Line 1056: FA_SRVR_MSG.add_message(

1052: WHEN e_no_proration THEN
1053: igi_iac_debug_pkg.debug_other_string(p_level => g_excep_level,
1054: p_full_path => l_path_name,
1055: p_string => 'Amount could not be prorated among the distributions');
1056: FA_SRVR_MSG.add_message(
1057: Calling_Fn => g_calling_fn,
1058: Name => 'IGI_IAC_NO_PRORATION');
1059: RETURN FALSE;
1060:

Line 1065: FA_SRVR_MSG.add_message(

1061: WHEN e_asset_life_err THEN
1062: igi_iac_debug_pkg.debug_other_string(p_level => g_excep_level,
1063: p_full_path => l_path_name,
1064: p_string => 'Asset life could not be checked');
1065: FA_SRVR_MSG.add_message(
1066: Calling_Fn => g_calling_fn,
1067: Name => 'IGI_IAC_ASSET_LIFE_ERR');
1068: RETURN FALSE;
1069:

Line 1074: FA_SRVR_MSG.add_message(

1070: WHEN e_non_dep_asset THEN
1071: igi_iac_debug_pkg.debug_other_string(p_level => g_excep_level,
1072: p_full_path => l_path_name,
1073: p_string => 'No further processing for non-depreciating asset');
1074: FA_SRVR_MSG.add_message(
1075: Calling_Fn => g_calling_fn,
1076: Name => 'IGI_IAC_NON_DEP_ASSET',
1077: Token1 => 'ASSET_NUM',
1078: Value1 => g_asset_num);

Line 1085: FA_SRVR_MSG.add_message(

1081: WHEN e_curr_period_amort THEN
1082: igi_iac_debug_pkg.debug_other_string(p_level => g_excep_level,
1083: p_full_path => l_path_name,
1084: p_string => 'No further processing for current period amortized asset');
1085: FA_SRVR_MSG.add_message(
1086: Calling_Fn => g_calling_fn,
1087: Name => 'IGI_IAC_CURR_PRD_AMORT',
1088: Token1 => 'ASSET_NUM',
1089: Value1 => g_asset_num);

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

1090: RETURN TRUE;
1091:
1092: WHEN others THEN
1093: igi_iac_debug_pkg.debug_unexpected_msg(p_full_path => l_path_name);
1094: FA_SRVR_MSG.add_sql_error(Calling_Fn => g_calling_fn);
1095: RETURN FALSE;
1096:
1097: END Do_Amort_Deprn_Reval;
1098: