DBA Data[Home] [Help]

APPS.PO_INTERFACE_ERRORS_GRP dependencies on FND_API

Line 28: -- status of the procedure (FND_API.G_RET_STS_SUCCESS indicates a success,

24: -- See Notes for its usage
25: --IN OUT:
26: --OUT:
27: --x_return_status
28: -- status of the procedure (FND_API.G_RET_STS_SUCCESS indicates a success,
29: -- otherwise there is an error occurred)
30: --x_msg_count
31: -- Number of messages in the stack
32: --x_msg_data

Line 78: x_return_status := FND_API.G_RET_STS_SUCCESS;

74:
75: BEGIN
76:
77: l_progress := '000';
78: x_return_status := FND_API.G_RET_STS_SUCCESS;
79:
80: IF (FND_API.to_boolean(p_init_msg_list)) THEN
81: FND_MSG_PUB.initialize;
82: END IF;

Line 80: IF (FND_API.to_boolean(p_init_msg_list)) THEN

76:
77: l_progress := '000';
78: x_return_status := FND_API.G_RET_STS_SUCCESS;
79:
80: IF (FND_API.to_boolean(p_init_msg_list)) THEN
81: FND_MSG_PUB.initialize;
82: END IF;
83:
84: IF (NOT FND_API.Compatible_API_Call

Line 84: IF (NOT FND_API.Compatible_API_Call

80: IF (FND_API.to_boolean(p_init_msg_list)) THEN
81: FND_MSG_PUB.initialize;
82: END IF;
83:
84: IF (NOT FND_API.Compatible_API_Call
85: ( p_current_version_number => l_api_version,
86: p_caller_version_number => p_api_version,
87: p_api_name => l_api_name,
88: p_pkg_name => g_pkg_name

Line 92: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;

88: p_pkg_name => g_pkg_name
89: )
90: ) THEN
91:
92: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;
93: END IF;
94:
95: l_progress := '010';
96:

Line 99: p_init_msg_list => FND_API.G_FALSE,

95: l_progress := '010';
96:
97: PO_INTERFACE_ERRORS_PVT.insert_row
98: ( p_api_version => 1.0,
99: p_init_msg_list => FND_API.G_FALSE,
100: p_commit => FND_API.G_FALSE,
101: x_return_status => x_return_status,
102: x_msg_count => x_msg_count,
103: x_msg_data => x_msg_data,

Line 100: p_commit => FND_API.G_FALSE,

96:
97: PO_INTERFACE_ERRORS_PVT.insert_row
98: ( p_api_version => 1.0,
99: p_init_msg_list => FND_API.G_FALSE,
100: p_commit => FND_API.G_FALSE,
101: x_return_status => x_return_status,
102: x_msg_count => x_msg_count,
103: x_msg_data => x_msg_data,
104: p_rec => p_rec,

Line 116: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;

112: EXCEPTION
113: WHEN OTHERS THEN
114: ROLLBACK;
115:
116: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
117:
118: FND_MSG_PUB.add_exc_msg
119: ( p_pkg_name => G_PKG_NAME,
120: p_procedure_name => l_api_name || '.' || l_progress