DBA Data[Home] [Help]

APPS.PA_DISTRIBUTION_LIST_UTILS dependencies on FND_MSG_PUB

Line 290: fnd_msg_pub.add_exc_msg(p_pkg_name => 'PA_OBJECT_DIST_LISTS_UTILS',

286: x_return_status := 'E';
287:
288: WHEN OTHERS THEN
289: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
290: fnd_msg_pub.add_exc_msg(p_pkg_name => 'PA_OBJECT_DIST_LISTS_UTILS',
291: p_procedure_name => 'GET_ACCESS_LEVEL',
292: p_error_text => SUBSTRB(SQLERRM,1,240));
293: END get_access_level;
294:

Line 456: fnd_msg_pub.add_exc_msg(p_pkg_name => 'PA_OBJECT_DIST_LISTS_UTILS',

452: x_return_status := 'E';
453: WHEN OTHERS THEN
454: --dbms_output.put_line('unhandled exception');
455: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
456: fnd_msg_pub.add_exc_msg(p_pkg_name => 'PA_OBJECT_DIST_LISTS_UTILS',
457: p_procedure_name => 'GET_ACCESS_LEVEL',
458: p_error_text => SUBSTRB(SQLERRM,1,240));
459: END get_dist_list;
460:

Line 642: fnd_msg_pub.add_exc_msg(p_pkg_name => 'PA_OBJECT_DIST_LISTS_UTILS',

638: WHEN FND_API.G_EXC_ERROR THEN
639: x_return_status := 'E';
640: WHEN OTHERS THEN
641: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
642: fnd_msg_pub.add_exc_msg(p_pkg_name => 'PA_OBJECT_DIST_LISTS_UTILS',
643: p_procedure_name => 'GET_DIST_LIST_EMAIL',
644: p_error_text => SUBSTRB(SQLERRM,1,240));
645: END get_dist_list_email;
646:

Line 722: fnd_msg_pub.add();

718: IF get_list_id_to%FOUND THEN
719: CLOSE get_list_id_to;
720: x_return_status := FND_API.G_RET_STS_ERROR;
721: fnd_message.set_name('PA','PA_DL_LIST_ID_INV');
722: fnd_msg_pub.add();
723: fnd_msg_pub.count_and_get(p_count => x_msg_count,
724: p_data => x_msg_data);
725: return;
726: END IF;

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

719: CLOSE get_list_id_to;
720: x_return_status := FND_API.G_RET_STS_ERROR;
721: fnd_message.set_name('PA','PA_DL_LIST_ID_INV');
722: fnd_msg_pub.add();
723: fnd_msg_pub.count_and_get(p_count => x_msg_count,
724: p_data => x_msg_data);
725: return;
726: END IF;
727: CLOSE get_list_id_to;