DBA Data[Home] [Help]

APPS.PO_RESCHEDULE_PKG dependencies on FND_MSG_PUB

Line 517: FND_MSG_PUB.initialize;

513: -- debug
514:
515: IF (l_return_status <> FND_API.G_RET_STS_SUCCESS) THEN
516: -- PO Change API returned some errors. Add them to the API message list.
517: FND_MSG_PUB.initialize;
518: FOR i IN 1..l_api_errors.message_text.COUNT LOOP
519: add_error_to_msg_list ( p_api_name => l_api_name,
520: p_message => l_api_errors.message_text(i) );
521: END LOOP;

Line 634: FND_MSG_PUB.initialize;

630:
631: EXCEPTION
632: WHEN OTHERS THEN
633: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
634: FND_MSG_PUB.initialize;
635: add_error_to_msg_list (
636: p_api_name => l_api_name,
637: p_message => 'Can not update estimated_pickup_date and ship_method on requisitions');
638:

Line 665: FND_MSG_PUB.add;

661: BEGIN
662: -- Add a generic error to the API message list.
663: FND_MESSAGE.set_name ('PO', 'PO_GENERIC_ERROR');
664: FND_MESSAGE.set_token ('ERROR_TEXT', p_message);
665: FND_MSG_PUB.add;
666:
667: -- Also add it to the FND log, if enabled.
668: IF (g_fnd_debug = 'Y') THEN
669: IF (FND_LOG.G_CURRENT_RUNTIME_LEVEL <= FND_LOG.LEVEL_ERROR) THEN