DBA Data[Home] [Help]

APPS.FA_DEPRN_ROLLBACK_PUB dependencies on FA_SRVR_MSG

Line 70: fa_srvr_msg.init_server_message;

66:
67: -- Initialize message list if p_init_msg_list is set to TRUE.
68: if (fnd_api.to_boolean(p_init_msg_list)) then
69: -- initialize error message stack.
70: fa_srvr_msg.init_server_message;
71:
72: -- initialize debug message stack.
73: fa_debug_pkg.initialize;
74: end if;

Line 216: fa_srvr_msg.add_message

212: -- set back to original environment when the procedure is finished
213: fnd_profile.put('GL_SET_OF_BKS_ID', l_orig_set_of_books_id);
214: fnd_client_info.set_currency_context (l_orig_currency_context);
215:
216: fa_srvr_msg.add_message
217: (calling_fn => l_calling_fn,
218: p_log_level_rec => g_log_level_rec); -- Bug:5475024
219:
220: FND_MSG_PUB.count_and_get (

Line 235: fa_srvr_msg.add_sql_error

231: -- set back to original environment when the procedure is finished
232: fnd_profile.put('GL_SET_OF_BKS_ID', l_orig_set_of_books_id);
233: fnd_client_info.set_currency_context (l_orig_currency_context);
234:
235: fa_srvr_msg.add_sql_error
236: (calling_fn => l_calling_fn,
237: p_log_level_rec => g_log_level_rec); -- Bug:5475024
238:
239: FND_MSG_PUB.count_and_get (

Line 513: fa_srvr_msg.add_message(calling_fn => l_calling_fn,

509:
510: EXCEPTION
511:
512: WHEN rb_ERR THEN
513: fa_srvr_msg.add_message(calling_fn => l_calling_fn,
514: p_log_level_rec => p_log_level_rec); -- Bug:5475024
515: return FALSE;
516:
517: WHEN OTHERS THEN

Line 518: fa_srvr_msg.add_sql_error(calling_fn => l_calling_fn,

514: p_log_level_rec => p_log_level_rec); -- Bug:5475024
515: return FALSE;
516:
517: WHEN OTHERS THEN
518: fa_srvr_msg.add_sql_error(calling_fn => l_calling_fn,
519: p_log_level_rec => p_log_level_rec); -- Bug:5475024
520: return FALSE;
521:
522: END do_all_books;