DBA Data[Home] [Help]

APPS.PO_AUTOSOURCE_SV dependencies on FND_MSG_PUB

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

4736: END IF;
4737:
4738: EXCEPTION
4739: WHEN OTHERS THEN
4740: FND_MSG_PUB.add_exc_msg (g_pkg_name,'process_req_qty');
4741: IF g_debug_unexp THEN
4742: PO_DEBUG.debug_exc (l_log_head ,l_progress);
4743: END IF;
4744: RAISE;

Line 5591: FND_MSG_PUB.Count_And_Get

5587: end loop;
5588: exception
5589: when others then
5590: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
5591: FND_MSG_PUB.Count_And_Get
5592: (p_count => x_msg_count
5593: ,p_data => x_msg_data
5594: );
5595: end;

Line 5689: FND_MSG_PUB.Count_And_Get

5685: exception
5686: when others then
5687: x_doc_return := 'N'; -- no rows were obtained from document_sourcing
5688: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
5689: FND_MSG_PUB.Count_And_Get
5690: (p_count => x_msg_count
5691: ,p_data => x_msg_data
5692: );
5693: end blanket_document_sourcing;

Line 6212: FND_MSG_PUB.initialize;

6208:
6209: -- Bug# 3404477: Follow the API standards
6210: IF FND_API.to_boolean(p_init_msg_list) THEN
6211: -- initialize message list
6212: FND_MSG_PUB.initialize;
6213: END IF;
6214:
6215: -- Check for the API version
6216: IF ( NOT FND_API.compatible_api_call(l_api_version,p_api_version,l_api_name,G_PKG_NAME) ) THEN

Line 6625: FND_MSG_PUB.count_and_get(p_count => x_msg_count

6621: EXCEPTION
6622: -- Bug# 3404477: Return msg count and data
6623: WHEN FND_API.G_EXC_ERROR THEN
6624: x_return_status := FND_API.G_RET_STS_ERROR;
6625: FND_MSG_PUB.count_and_get(p_count => x_msg_count
6626: , p_data => x_msg_data);
6627: WHEN OTHERS THEN
6628: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
6629:

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

6626: , p_data => x_msg_data);
6627: WHEN OTHERS THEN
6628: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
6629:
6630: IF FND_MSG_PUB.check_msg_level(FND_MSG_PUB.g_msg_lvl_unexp_error) THEN
6631: FND_MSG_PUB.add_exc_msg(p_pkg_name => g_pkg_name
6632: , p_procedure_name => l_api_name
6633: , p_error_text => 'Progress: '||l_progress||
6634: ' Error: '||SUBSTRB(SQLERRM,1,215));

Line 6631: FND_MSG_PUB.add_exc_msg(p_pkg_name => g_pkg_name

6627: WHEN OTHERS THEN
6628: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
6629:
6630: IF FND_MSG_PUB.check_msg_level(FND_MSG_PUB.g_msg_lvl_unexp_error) THEN
6631: FND_MSG_PUB.add_exc_msg(p_pkg_name => g_pkg_name
6632: , p_procedure_name => l_api_name
6633: , p_error_text => 'Progress: '||l_progress||
6634: ' Error: '||SUBSTRB(SQLERRM,1,215));
6635: END IF;

Line 6636: FND_MSG_PUB.count_and_get(p_count => x_msg_count

6632: , p_procedure_name => l_api_name
6633: , p_error_text => 'Progress: '||l_progress||
6634: ' Error: '||SUBSTRB(SQLERRM,1,215));
6635: END IF;
6636: FND_MSG_PUB.count_and_get(p_count => x_msg_count
6637: , p_data => x_msg_data);
6638:
6639: --
6640: IF g_debug_unexp THEN

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

6991:
6992: EXCEPTION
6993: WHEN OTHERS THEN
6994: x_return_status := FND_API.g_ret_sts_unexp_error;
6995: FND_MSG_PUB.add_exc_msg (p_pkg_name => g_pkg_name,
6996: p_procedure_name => 'should_return_contract',
6997: p_error_text => 'Progress: '||l_progress||' Error: '||SUBSTRB(SQLERRM,1,215));
6998: IF g_debug_unexp THEN
6999: PO_DEBUG.debug_exc (p_log_head => l_log_head ||'should_return_contract',