DBA Data[Home] [Help]

APPS.IGS_FI_CREDITS_API_PUB dependencies on FND_MSG_PUB

Line 279: --then call the Initialize program of the fnd_msg_pub package.

275: END IF;
276:
277: --If the calling program has passed the parameter for initializing the message list.
278: IF fnd_api.to_boolean(p_init_msg_list) THEN
279: --then call the Initialize program of the fnd_msg_pub package.
280: fnd_msg_pub.initialize;
281: END IF;
282:
283: l_credit_rec.p_credit_status := p_credit_status;

Line 280: fnd_msg_pub.initialize;

276:
277: --If the calling program has passed the parameter for initializing the message list.
278: IF fnd_api.to_boolean(p_init_msg_list) THEN
279: --then call the Initialize program of the fnd_msg_pub package.
280: fnd_msg_pub.initialize;
281: END IF;
282:
283: l_credit_rec.p_credit_status := p_credit_status;
284: l_credit_rec.p_credit_source := p_credit_source;

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

333: EXCEPTION
334: WHEN fnd_api.g_exc_error THEN
335: ROLLBACK TO create_credit_pub;
336: x_return_status := fnd_api.g_ret_sts_error;
337: fnd_msg_pub.count_and_get( p_count => x_msg_count,
338: p_data => x_msg_data);
339:
340: WHEN fnd_api.g_exc_unexpected_error THEN
341: ROLLBACK TO create_credit_pub;

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

339:
340: WHEN fnd_api.g_exc_unexpected_error THEN
341: ROLLBACK TO create_credit_pub;
342: x_return_status := fnd_api.g_ret_sts_unexp_error;
343: fnd_msg_pub.count_and_get( p_count => x_msg_count,
344: p_data => x_msg_data);
345:
346: WHEN OTHERS THEN
347: ROLLBACK TO create_credit_pub;

Line 349: IF fnd_msg_pub.check_msg_level(fnd_msg_pub.g_msg_lvl_unexp_error) THEN

345:
346: WHEN OTHERS THEN
347: ROLLBACK TO create_credit_pub;
348: x_return_status := fnd_api.g_ret_sts_unexp_error;
349: IF fnd_msg_pub.check_msg_level(fnd_msg_pub.g_msg_lvl_unexp_error) THEN
350: fnd_msg_pub.add_exc_msg(l_pkg_name,
351: l_api_name);
352: END IF;
353: fnd_msg_pub.count_and_get( p_count => x_msg_count,

Line 350: fnd_msg_pub.add_exc_msg(l_pkg_name,

346: WHEN OTHERS THEN
347: ROLLBACK TO create_credit_pub;
348: x_return_status := fnd_api.g_ret_sts_unexp_error;
349: IF fnd_msg_pub.check_msg_level(fnd_msg_pub.g_msg_lvl_unexp_error) THEN
350: fnd_msg_pub.add_exc_msg(l_pkg_name,
351: l_api_name);
352: END IF;
353: fnd_msg_pub.count_and_get( p_count => x_msg_count,
354: p_data => x_msg_data);

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

349: IF fnd_msg_pub.check_msg_level(fnd_msg_pub.g_msg_lvl_unexp_error) THEN
350: fnd_msg_pub.add_exc_msg(l_pkg_name,
351: l_api_name);
352: END IF;
353: fnd_msg_pub.count_and_get( p_count => x_msg_count,
354: p_data => x_msg_data);
355: END create_credit;
356:
357: