DBA Data[Home] [Help]

APPS.AHL_PC_NODE_PUB dependencies on STANDARD

Line 27: -- Standard start of API savepoint

23: l_api_version CONSTANT NUMBER := 1.0;
24: l_return_status VARCHAR2(1);
25:
26: BEGIN
27: -- Standard start of API savepoint
28: SAVEPOINT PROCESS_NODE_PUB;
29:
30: -- Standard call to check for call compatibility
31: IF NOT FND_API.Compatible_API_Call(l_api_version, p_api_version, l_api_name, G_PKG_NAME)

Line 30: -- Standard call to check for call compatibility

26: BEGIN
27: -- Standard start of API savepoint
28: SAVEPOINT PROCESS_NODE_PUB;
29:
30: -- Standard call to check for call compatibility
31: IF NOT FND_API.Compatible_API_Call(l_api_version, p_api_version, l_api_name, G_PKG_NAME)
32: THEN
33: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;
34: END IF;

Line 137: -- Standard check for p_commit

133: IF x_msg_count > 0 THEN
134: RAISE FND_API.G_EXC_ERROR;
135: END IF;
136:
137: -- Standard check for p_commit
138: IF FND_API.To_Boolean (p_commit)
139: THEN
140: COMMIT WORK;
141: END IF;

Line 143: -- Standard call to get message count and if count is 1, get message info

139: THEN
140: COMMIT WORK;
141: END IF;
142:
143: -- Standard call to get message count and if count is 1, get message info
144: FND_MSG_PUB.Count_And_Get ( p_count => x_msg_count,
145: p_data => x_msg_data,
146: p_encoded => fnd_api.g_false );
147: