DBA Data[Home] [Help]

APPS.FA_RETIREMENT_ADJUSTMENT_PUB dependencies on FA_SRVR_MSG

Line 80: fa_srvr_msg.init_server_message;

76:
77: -- Initialize message list if p_init_msg_list is set to TRUE.
78: if (fnd_api.to_boolean(p_init_msg_list)) then
79: -- initialize error message stack.
80: fa_srvr_msg.init_server_message;
81:
82: -- initialize debug message stack.
83: fa_debug_pkg.initialize;
84: end if;

Line 137: fa_srvr_msg.add_message

133: -- Error out if the program is submitted from the Reporting Responsibility
134: -- No transaction permitted directly on reporting books.
135:
136: IF l_reporting_flag = 'R' THEN
137: fa_srvr_msg.add_message
138: (calling_fn => l_calling_fn,
139: name => 'MRC_OSP_INVALID_BOOK_TYPE',
140: p_log_level_rec => g_log_level_rec);
141: raise ret_adj_err;

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

174:
175: fnd_profile.put('GL_SET_OF_BKS_ID', l_orig_set_of_books_id);
176: fnd_client_info.set_currency_context (l_orig_currency_context);
177:
178: fa_srvr_msg.add_message(calling_fn => l_calling_fn,
179: p_log_level_rec => g_log_level_rec);
180:
181: -- do not retrieve / clear messaging when this is being called
182: -- from reclass api - allow calling util to dump them

Line 195: fa_srvr_msg.add_sql_error(calling_fn => l_calling_fn

191:
192: fnd_profile.put('GL_SET_OF_BKS_ID', l_orig_set_of_books_id);
193: fnd_client_info.set_currency_context (l_orig_currency_context);
194:
195: fa_srvr_msg.add_sql_error(calling_fn => l_calling_fn
196: ,p_log_level_rec => g_log_level_rec);
197:
198: -- do not retrieve / clear messaging when this is being called
199: -- from reclass api - allow calling util to dump them

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

501:
502: EXCEPTION
503:
504: WHEN ret_adj_err THEN
505: fa_srvr_msg.add_message(calling_fn => l_calling_fn,
506: p_log_level_rec => p_log_level_rec);
507: return FALSE;
508:
509: WHEN OTHERS THEN

Line 510: fa_srvr_msg.add_sql_error(calling_fn => l_calling_fn

506: p_log_level_rec => p_log_level_rec);
507: return FALSE;
508:
509: WHEN OTHERS THEN
510: fa_srvr_msg.add_sql_error(calling_fn => l_calling_fn
511: ,p_log_level_rec => p_log_level_rec);
512: return FALSE;
513:
514: