DBA Data[Home] [Help]

APPS.FA_ADDITION_PUB dependencies on FA_SRVR_MSG

Line 130: fa_srvr_msg.init_server_message;

126:
127: -- Initialize message list if p_init_msg_list is set to TRUE.
128: if (fnd_api.to_boolean(p_init_msg_list)) then
129: -- initialize error message stack.
130: fa_srvr_msg.init_server_message;
131:
132: -- initialize debug message stack.
133: fa_debug_pkg.initialize;
134: end if;

Line 976: fa_srvr_msg.add_message(calling_fn => 'fa_addition_pub.do_addition',

972: when add_err1 then
973:
974: ROLLBACK TO do_addition;
975:
976: fa_srvr_msg.add_message(calling_fn => 'fa_addition_pub.do_addition',
977: p_log_level_rec => g_log_level_rec);
978:
979: FND_MSG_PUB.count_and_get (
980: p_count => x_msg_count,

Line 991: fa_srvr_msg.add_message(calling_fn => 'fa_addition_pub.do_addition',

987: when add_err2 then
988:
989: ROLLBACK TO do_addition;
990:
991: fa_srvr_msg.add_message(calling_fn => 'fa_addition_pub.do_addition',
992: p_log_level_rec => g_log_level_rec);
993:
994: FND_MSG_PUB.count_and_get (
995: p_count => x_msg_count,

Line 1003: fa_srvr_msg.add_sql_error(calling_fn => 'fa_addition_pub.do_addition',

999: when others then
1000:
1001: ROLLBACK TO do_addition;
1002:
1003: fa_srvr_msg.add_sql_error(calling_fn => 'fa_addition_pub.do_addition',
1004: p_log_level_rec => g_log_level_rec);
1005:
1006: FND_MSG_PUB.count_and_get (
1007: p_count => x_msg_count,

Line 1291: fa_srvr_msg.add_message(calling_fn => 'fa_addition_pub.do_all_books',

1287: return TRUE;
1288:
1289: exception
1290: when all_books_err then
1291: fa_srvr_msg.add_message(calling_fn => 'fa_addition_pub.do_all_books',
1292: p_log_level_rec => p_log_level_rec);
1293: x_return_status := FND_API.G_RET_STS_ERROR;
1294:
1295: return FALSE;

Line 1297: fa_srvr_msg.add_sql_error(calling_fn => 'fa_addition_pub.do_all_books',

1293: x_return_status := FND_API.G_RET_STS_ERROR;
1294:
1295: return FALSE;
1296: when others then
1297: fa_srvr_msg.add_sql_error(calling_fn => 'fa_addition_pub.do_all_books',
1298: p_log_level_rec => p_log_level_rec);
1299: x_return_status := FND_API.G_RET_STS_ERROR;
1300:
1301: return FALSE;