DBA Data[Home] [Help]

APPS.PO_AUTOSOURCE_SV dependencies on FND_MSG_PUB

Line 4702: FND_MSG_PUB.add_exc_msg (g_pkg_name,'process_req_qty');

4698: END IF;
4699:
4700: EXCEPTION
4701: WHEN OTHERS THEN
4702: FND_MSG_PUB.add_exc_msg (g_pkg_name,'process_req_qty');
4703: IF g_debug_unexp THEN
4704: PO_DEBUG.debug_exc (l_log_head ,l_progress);
4705: END IF;
4706: RAISE;

Line 5514: FND_MSG_PUB.Count_And_Get

5510: end loop;
5511: exception
5512: when others then
5513: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
5514: FND_MSG_PUB.Count_And_Get
5515: (p_count => x_msg_count
5516: ,p_data => x_msg_data
5517: );
5518: end;

Line 5612: FND_MSG_PUB.Count_And_Get

5608: exception
5609: when others then
5610: x_doc_return := 'N'; -- no rows were obtained from document_sourcing
5611: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
5612: FND_MSG_PUB.Count_And_Get
5613: (p_count => x_msg_count
5614: ,p_data => x_msg_data
5615: );
5616: end blanket_document_sourcing;

Line 6135: FND_MSG_PUB.initialize;

6131:
6132: -- Bug# 3404477: Follow the API standards
6133: IF FND_API.to_boolean(p_init_msg_list) THEN
6134: -- initialize message list
6135: FND_MSG_PUB.initialize;
6136: END IF;
6137:
6138: -- Check for the API version
6139: IF ( NOT FND_API.compatible_api_call(l_api_version,p_api_version,l_api_name,G_PKG_NAME) ) THEN

Line 6548: FND_MSG_PUB.count_and_get(p_count => x_msg_count

6544: EXCEPTION
6545: -- Bug# 3404477: Return msg count and data
6546: WHEN FND_API.G_EXC_ERROR THEN
6547: x_return_status := FND_API.G_RET_STS_ERROR;
6548: FND_MSG_PUB.count_and_get(p_count => x_msg_count
6549: , p_data => x_msg_data);
6550: WHEN OTHERS THEN
6551: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
6552:

Line 6553: IF FND_MSG_PUB.check_msg_level(FND_MSG_PUB.g_msg_lvl_unexp_error) THEN

6549: , p_data => x_msg_data);
6550: WHEN OTHERS THEN
6551: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
6552:
6553: IF FND_MSG_PUB.check_msg_level(FND_MSG_PUB.g_msg_lvl_unexp_error) THEN
6554: FND_MSG_PUB.add_exc_msg(p_pkg_name => g_pkg_name
6555: , p_procedure_name => l_api_name
6556: , p_error_text => 'Progress: '||l_progress||
6557: ' Error: '||SUBSTRB(SQLERRM,1,215));

Line 6554: FND_MSG_PUB.add_exc_msg(p_pkg_name => g_pkg_name

6550: WHEN OTHERS THEN
6551: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
6552:
6553: IF FND_MSG_PUB.check_msg_level(FND_MSG_PUB.g_msg_lvl_unexp_error) THEN
6554: FND_MSG_PUB.add_exc_msg(p_pkg_name => g_pkg_name
6555: , p_procedure_name => l_api_name
6556: , p_error_text => 'Progress: '||l_progress||
6557: ' Error: '||SUBSTRB(SQLERRM,1,215));
6558: END IF;

Line 6559: FND_MSG_PUB.count_and_get(p_count => x_msg_count

6555: , p_procedure_name => l_api_name
6556: , p_error_text => 'Progress: '||l_progress||
6557: ' Error: '||SUBSTRB(SQLERRM,1,215));
6558: END IF;
6559: FND_MSG_PUB.count_and_get(p_count => x_msg_count
6560: , p_data => x_msg_data);
6561:
6562: --
6563: IF g_debug_unexp THEN

Line 6910: FND_MSG_PUB.add_exc_msg (p_pkg_name => g_pkg_name,

6906:
6907: EXCEPTION
6908: WHEN OTHERS THEN
6909: x_return_status := FND_API.g_ret_sts_unexp_error;
6910: FND_MSG_PUB.add_exc_msg (p_pkg_name => g_pkg_name,
6911: p_procedure_name => 'should_return_contract',
6912: p_error_text => 'Progress: '||l_progress||' Error: '||SUBSTRB(SQLERRM,1,215));
6913: IF g_debug_unexp THEN
6914: PO_DEBUG.debug_exc (p_log_head => l_log_head ||'should_return_contract',