DBA Data[Home] [Help]

APPS.FA_ADDITION_PUB dependencies on FA_SRVR_MSG

Line 125: fa_srvr_msg.init_server_message;

121:
122: -- Initialize message list if p_init_msg_list is set to TRUE.
123: if (fnd_api.to_boolean(p_init_msg_list)) then
124: -- initialize error message stack.
125: fa_srvr_msg.init_server_message;
126:
127: -- initialize debug message stack.
128: fa_debug_pkg.initialize;
129: end if;

Line 921: fa_srvr_msg.add_message

917: -- set back to original environment when the procedure is finished
918: fnd_profile.put('GL_SET_OF_BKS_ID', l_orig_set_of_books_id);
919: fnd_client_info.set_currency_context (l_orig_currency_context);
920:
921: fa_srvr_msg.add_message
922: (calling_fn => 'fa_addition_pub.do_addition'
923: ,p_log_level_rec => g_log_level_rec);
924:
925: FND_MSG_PUB.count_and_get (

Line 941: fa_srvr_msg.add_message

937: -- set back to original environment when the procedure is finished
938: fnd_profile.put('GL_SET_OF_BKS_ID', l_orig_set_of_books_id);
939: fnd_client_info.set_currency_context (l_orig_currency_context);
940:
941: fa_srvr_msg.add_message
942: (calling_fn => 'fa_addition_pub.do_addition'
943: ,p_log_level_rec => g_log_level_rec);
944:
945: FND_MSG_PUB.count_and_get (

Line 958: fa_srvr_msg.add_message(calling_fn => l_calling_fn

954: -- set back to original environment when the procedure is finished
955: fnd_profile.put('GL_SET_OF_BKS_ID', l_orig_set_of_books_id);
956: fnd_client_info.set_currency_context (l_orig_currency_context);
957:
958: fa_srvr_msg.add_message(calling_fn => l_calling_fn
959: ,p_log_level_rec => g_log_level_rec);
960:
961: FND_MSG_PUB.count_and_get (
962: p_count => x_msg_count,

Line 977: fa_srvr_msg.add_sql_error

973: -- set back to original environment when the procedure is finished
974: fnd_profile.put('GL_SET_OF_BKS_ID', l_orig_set_of_books_id);
975: fnd_client_info.set_currency_context (l_orig_currency_context);
976:
977: fa_srvr_msg.add_sql_error
978: (calling_fn => 'fa_addition_pub.do_addition'
979: ,p_log_level_rec => g_log_level_rec);
980:
981: FND_MSG_PUB.count_and_get (

Line 1235: fa_srvr_msg.add_message(

1231: return TRUE;
1232:
1233: exception
1234: when all_books_err then
1235: fa_srvr_msg.add_message(
1236: calling_fn => 'fa_addition_pub.do_all_books'
1237: ,p_log_level_rec => p_log_level_rec);
1238: x_return_status := FND_API.G_RET_STS_ERROR;
1239:

Line 1242: fa_srvr_msg.add_sql_error(

1238: x_return_status := FND_API.G_RET_STS_ERROR;
1239:
1240: return FALSE;
1241: when others then
1242: fa_srvr_msg.add_sql_error(
1243: calling_fn => 'fa_addition_pub.do_all_books'
1244: ,p_log_level_rec => p_log_level_rec);
1245: x_return_status := FND_API.G_RET_STS_ERROR;
1246: