DBA Data[Home] [Help]

APPS.FA_CIP_PUB dependencies on FA_SRVR_MSG

Line 104: fa_srvr_msg.add_message(calling_fn => l_calling_fn

100: EXCEPTION
101:
102: WHEN CAP_ERR THEN
103:
104: fa_srvr_msg.add_message(calling_fn => l_calling_fn
105: ,p_log_level_rec => g_log_level_rec);
106:
107: -- do not retrieve / clear messaging when this is being called
108: -- from cip-in-taxapi allow calling program to dump them

Line 125: fa_srvr_msg.add_sql_error(calling_fn => l_calling_fn

121: return;
122:
123: WHEN OTHERS THEN
124:
125: fa_srvr_msg.add_sql_error(calling_fn => l_calling_fn
126: ,p_log_level_rec => g_log_level_rec);
127:
128: -- do not retrieve / clear messaging when this is being called
129: -- from cip-in-taxapi allow calling program to dump them

Line 206: fa_srvr_msg.add_message(calling_fn => l_calling_fn

202: EXCEPTION
203:
204: WHEN REV_ERR THEN
205:
206: fa_srvr_msg.add_message(calling_fn => l_calling_fn
207: ,p_log_level_rec => g_log_level_rec);
208:
209: -- do not retrieve / clear messaging when this is being called
210: -- from cip-in-taxapi allow calling program to dump them

Line 227: fa_srvr_msg.add_sql_error(calling_fn => l_calling_fn

223: return;
224:
225: WHEN OTHERS THEN
226:
227: fa_srvr_msg.add_sql_error(calling_fn => l_calling_fn
228: ,p_log_level_rec => g_log_level_rec);
229:
230: -- do not retrieve / clear messaging when this is being called
231: -- from cip-in-taxapi allow calling program to dump them

Line 318: fa_srvr_msg.init_server_message;

314:
315: -- Initialize message list if p_init_msg_list is set to TRUE.
316: if (fnd_api.to_boolean(p_init_msg_list)) then
317: -- initialize error message stack.
318: fa_srvr_msg.init_server_message;
319:
320: -- initialize debug message stack.
321: fa_debug_pkg.initialize;
322: end if;

Line 343: fa_srvr_msg.add_message

339: fetch c_corp_book into px_asset_hdr_rec.book_type_code;
340: close c_corp_book;
341:
342: if px_asset_hdr_rec.book_type_code is null then
343: fa_srvr_msg.add_message
344: (calling_fn => l_calling_fn,
345: name => 'FA_EXP_GET_ASSET_INFO'
346: ,p_log_level_rec => p_log_level_rec);
347: raise cap_rev_err;

Line 365: -- fa_srvr_msg.add_message

361: -- (the if condition for book class for the cip-tax loop
362: -- will also become obsolete)
363: --
364: -- if (fa_cache_pkg.fazcbc_record.book_class <> 'CORPORATE') then
365: -- fa_srvr_msg.add_message
366: -- (calling_fn => l_calling_fn,
367: -- name => '**FA_NO_DIR_CAP_TAX***');
368: -- raise cap_rev_err;
369: -- end if;

Line 413: fa_srvr_msg.add_message

409: -- Error out if the program is submitted from the Reporting Responsibility
410: -- No transaction permitted directly on reporting books.
411:
412: IF l_reporting_flag = 'R' THEN
413: fa_srvr_msg.add_message
414: (calling_fn => l_calling_fn,
415: name => 'MRC_OSP_INVALID_BOOK_TYPE'
416: ,p_log_level_rec => p_log_level_rec);
417: raise cap_rev_err;

Line 430: fa_srvr_msg.add_message

426:
427: elsif p_cap_rev = 'REVERSE' then
428: px_trans_rec.transaction_type_code := 'CIP REVERSE';
429: else
430: fa_srvr_msg.add_message
431: (calling_fn => l_calling_fn,
432: name => '***INVALID_TRX_TYPE***'
433: ,p_log_level_rec => p_log_level_rec);
434: raise cap_rev_err;

Line 473: fa_srvr_msg.add_message

469: ((l_asset_type_rec.asset_type = 'CAPITALIZED') and
470: (px_trans_rec.transaction_type_code = 'ADDITION')) or
471: (l_asset_type_rec.asset_type = 'EXPENSED')) then
472:
473: fa_srvr_msg.add_message
474: (calling_fn => l_calling_fn,
475: name => '***INVALID_COMBO***'
476: ,p_log_level_rec => p_log_level_rec);
477: raise cap_rev_err;

Line 681: fa_srvr_msg.add_message(calling_fn => l_calling_fn

677:
678: fnd_profile.put('GL_SET_OF_BKS_ID', l_orig_set_of_books_id);
679: fnd_client_info.set_currency_context (l_orig_currency_context);
680:
681: fa_srvr_msg.add_message(calling_fn => l_calling_fn
682: ,p_log_level_rec => p_log_level_rec);
683:
684: x_return_status := FND_API.G_RET_STS_ERROR;
685:

Line 694: fa_srvr_msg.add_sql_error(calling_fn => l_calling_fn

690:
691: fnd_profile.put('GL_SET_OF_BKS_ID', l_orig_set_of_books_id);
692: fnd_client_info.set_currency_context (l_orig_currency_context);
693:
694: fa_srvr_msg.add_sql_error(calling_fn => l_calling_fn
695: ,p_log_level_rec => p_log_level_rec);
696:
697: x_return_status := FND_API.G_RET_STS_ERROR;
698:

Line 1138: fa_srvr_msg.add_message(calling_fn => l_calling_fn

1134:
1135: EXCEPTION
1136:
1137: WHEN CAP_REV_ERR THEN
1138: fa_srvr_msg.add_message(calling_fn => l_calling_fn
1139: ,p_log_level_rec => p_log_level_rec);
1140: return FALSE;
1141:
1142: WHEN OTHERS THEN

Line 1143: fa_srvr_msg.add_sql_error(CALLING_FN => l_calling_fn

1139: ,p_log_level_rec => p_log_level_rec);
1140: return FALSE;
1141:
1142: WHEN OTHERS THEN
1143: fa_srvr_msg.add_sql_error(CALLING_FN => l_calling_fn
1144: ,p_log_level_rec => p_log_level_rec);
1145: return FALSE;
1146:
1147: END do_all_books;