DBA Data[Home] [Help]

APPS.PO_SHARED_PROC_GRP dependencies on FND_MSG_PUB

Line 17: -- FND_MSG_PUB on error.

13: --Name: check_shared_proc_scenario
14: --Pre-reqs:
15: -- None.
16: --Modifies:
17: -- FND_MSG_PUB on error.
18: --Locks:
19: -- None.
20: --Function:
21: -- Determines if it is a Shared Procurement Services (SPS) scenario.

Line 83: FND_MSG_PUB.initialize;

79: END IF;
80:
81: -- Start standard API initialization
82: IF FND_API.to_boolean(p_init_msg_list) THEN
83: FND_MSG_PUB.initialize;
84: END IF;
85:
86: -- Derive the Ship-to-OU ID from the p_ship_to_inv_org_id
87: PO_SHARED_PROC_PVT.get_ou_and_coa_from_inv_org(

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

121: WHEN FND_API.g_exc_unexpected_error THEN
122: x_return_status := FND_API.g_ret_sts_unexp_error;
123: WHEN OTHERS THEN
124: x_return_status := FND_API.g_ret_sts_unexp_error;
125: FND_MSG_PUB.add_exc_msg(p_pkg_name => g_pkg_name,
126: p_procedure_name => l_api_name);
127: END check_shared_proc_scenario;
128:
129: END PO_SHARED_PROC_GRP;