DBA Data[Home] [Help]

APPS.PO_INTERFACE_ERRORS_PVT dependencies on FND_API

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

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

Line 79: x_return_status := FND_API.G_RET_STS_SUCCESS;

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

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

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

Line 85: IF (NOT FND_API.Compatible_API_Call

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

Line 93: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;

89: p_pkg_name => g_pkg_name
90: )
91: ) THEN
92:
93: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;
94: END IF;
95:
96: IF (p_rec.interface_transaction_id IS NULL) THEN
97: SELECT po_interface_errors_s.NEXTVAL

Line 155: IF (FND_API.to_boolean(p_commit)) THEN

151: x_row_id;
152:
153: l_progress := '010';
154:
155: IF (FND_API.to_boolean(p_commit)) THEN
156: COMMIT;
157: END IF;
158:
159: EXCEPTION

Line 161: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;

157: END IF;
158:
159: EXCEPTION
160: WHEN OTHERS THEN
161: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
162:
163: FND_MSG_PUB.add_exc_msg
164: ( p_pkg_name => G_PKG_NAME,
165: p_procedure_name => l_api_name || '.' || l_progress