DBA Data[Home] [Help]

APPS.PO_RESCHEDULE_PKG dependencies on FND_MSG_PUB

Line 595: FND_MSG_PUB.initialize;

591:
592: IF (l_return_status <> FND_API.G_RET_STS_SUCCESS) THEN
593: x_error_count := x_error_message.Count; --bug9693292
594: -- PO Change API returned some errors. Add them to the API message list.
595: FND_MSG_PUB.initialize;
596: FOR i IN 1..l_api_errors.message_text.COUNT LOOP
597: add_error_to_msg_list ( p_api_name => l_api_name,
598: p_message => l_api_errors.message_text(i) );
599: --bug9693292

Line 716: FND_MSG_PUB.initialize;

712:
713: EXCEPTION
714: WHEN OTHERS THEN
715: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
716: FND_MSG_PUB.initialize;
717: add_error_to_msg_list (
718: p_api_name => l_api_name,
719: p_message => 'Can not update estimated_pickup_date and ship_method on requisitions');
720:

Line 747: FND_MSG_PUB.add;

743: BEGIN
744: -- Add a generic error to the API message list.
745: FND_MESSAGE.set_name ('PO', 'PO_GENERIC_ERROR');
746: FND_MESSAGE.set_token ('ERROR_TEXT', p_message);
747: FND_MSG_PUB.add;
748:
749: -- Also add it to the FND log, if enabled.
750: IF (g_fnd_debug = 'Y') THEN
751: IF (FND_LOG.G_CURRENT_RUNTIME_LEVEL <= FND_LOG.LEVEL_ERROR) THEN