DBA Data[Home] [Help]

APPS.PO_AP_INTEGRATION_GRP 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 83: x_msg_data := FND_MSG_PUB.GET(p_msg_index => FND_MSG_PUB.G_LAST,

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

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

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

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

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

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

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