DBA Data[Home] [Help]

APPS.CST_MOHRULES_PUB dependencies on FND_MSG_PUB

Line 224: fnd_msg_pub.initialize;

220: -- Initialize message list if p_init_msg_list is set to TRUE
221: -------------------------------------------------------------
222: l_stmt_num := 20;
223: IF fnd_api.to_Boolean(p_init_msg_list) then
224: fnd_msg_pub.initialize;
225: end if;
226:
227: -------------------------------------------------------------
228: -- Initialize API return status to Success

Line 345: fnd_msg_pub.count_and_get

341: EXCEPTION
342: WHEN fnd_api.g_exc_error then
343: x_return_status := fnd_api.g_ret_sts_error;
344:
345: fnd_msg_pub.count_and_get
346: ( p_count => x_msg_count,
347: p_data => x_msg_data );
348:
349: WHEN fnd_api.g_exc_unexpected_error then

Line 352: fnd_msg_pub.count_and_get

348:
349: WHEN fnd_api.g_exc_unexpected_error then
350: x_return_status := fnd_api.g_ret_sts_unexp_error;
351:
352: fnd_msg_pub.count_and_get
353: ( p_count => x_msg_count,
354: p_data => x_msg_data );
355:
356: WHEN OTHERS THEN

Line 358: If fnd_msg_pub.check_msg_level(fnd_msg_pub.g_msg_lvl_unexp_error) then

354: p_data => x_msg_data );
355:
356: WHEN OTHERS THEN
357: x_return_status := fnd_api.g_ret_sts_unexp_error ;
358: If fnd_msg_pub.check_msg_level(fnd_msg_pub.g_msg_lvl_unexp_error) then
359: fnd_msg_pub.add_exc_msg
360: ( 'CST_MOH_RULES_PUB','apply_moh : Statement - ' || to_char(l_stmt_num));
361: end if;
362:

Line 359: fnd_msg_pub.add_exc_msg

355:
356: WHEN OTHERS THEN
357: x_return_status := fnd_api.g_ret_sts_unexp_error ;
358: If fnd_msg_pub.check_msg_level(fnd_msg_pub.g_msg_lvl_unexp_error) then
359: fnd_msg_pub.add_exc_msg
360: ( 'CST_MOH_RULES_PUB','apply_moh : Statement - ' || to_char(l_stmt_num));
361: end if;
362:
363: fnd_msg_pub.count_and_get( p_count => x_msg_count,

Line 363: fnd_msg_pub.count_and_get( p_count => x_msg_count,

359: fnd_msg_pub.add_exc_msg
360: ( 'CST_MOH_RULES_PUB','apply_moh : Statement - ' || to_char(l_stmt_num));
361: end if;
362:
363: fnd_msg_pub.count_and_get( p_count => x_msg_count,
364: p_data => x_msg_data );
365:
366: END apply_moh;
367: