DBA Data[Home] [Help]

APPS.PO_AP_INTEGRATION_PVT dependencies on FND_MSG_PUB

Line 12: -- FND_MSG_PUB on error

8: --Name: get_invoice_numbering_options
9: --Pre-reqs:
10: -- p_org_id is not null
11: --Modifies:
12: -- FND_MSG_PUB on error
13: --Locks:
14: -- None
15: --Function:
16: -- Retrieves the invoice numbering options: the gapless invoice numbering

Line 80: x_msg_data := FND_MSG_PUB.GET(p_msg_index => FND_MSG_PUB.G_LAST,

76: WHEN FND_API.G_EXC_UNEXPECTED_ERROR THEN
77: x_gapless_inv_num_flag := 'N';
78: x_buying_company_identifier := NULL;
79: x_return_status := FND_API.g_ret_sts_unexp_error;
80: x_msg_data := FND_MSG_PUB.GET(p_msg_index => FND_MSG_PUB.G_LAST,
81: p_encoded => 'F');
82: WHEN OTHERS THEN
83: x_gapless_inv_num_flag := 'N';
84: x_buying_company_identifier := NULL;

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

82: WHEN OTHERS THEN
83: x_gapless_inv_num_flag := 'N';
84: x_buying_company_identifier := NULL;
85: x_return_status := FND_API.g_ret_sts_unexp_error;
86: IF FND_MSG_PUB.check_msg_level(FND_MSG_PUB.g_msg_lvl_unexp_error) THEN
87: FND_MSG_PUB.add_exc_msg(p_pkg_name => g_pkg_name,
88: p_procedure_name => l_api_name,
89: p_error_text => SUBSTRB(SQLERRM, 1, 200)
90: ||' at location '||l_progress);

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

83: x_gapless_inv_num_flag := 'N';
84: x_buying_company_identifier := NULL;
85: x_return_status := FND_API.g_ret_sts_unexp_error;
86: IF FND_MSG_PUB.check_msg_level(FND_MSG_PUB.g_msg_lvl_unexp_error) THEN
87: FND_MSG_PUB.add_exc_msg(p_pkg_name => g_pkg_name,
88: p_procedure_name => l_api_name,
89: p_error_text => SUBSTRB(SQLERRM, 1, 200)
90: ||' at location '||l_progress);
91: END IF;

Line 92: x_msg_data := FND_MSG_PUB.GET(p_msg_index => FND_MSG_PUB.G_LAST,

88: p_procedure_name => l_api_name,
89: p_error_text => SUBSTRB(SQLERRM, 1, 200)
90: ||' at location '||l_progress);
91: END IF;
92: x_msg_data := FND_MSG_PUB.GET(p_msg_index => FND_MSG_PUB.G_LAST,
93: p_encoded => 'F');
94:
95: END get_invoice_numbering_options;
96: