DBA Data[Home] [Help]

APPS.AHL_VWP_VISITS_PUB dependencies on STANDARD

Line 77: -- Standard start of API savepoint

73: IF (FND_LOG.level_procedure >= FND_LOG.g_current_runtime_level) THEN
74: FND_LOG.string(FND_LOG.level_procedure, l_full_name || '.begin', 'At the start of the API.');
75: END IF;
76:
77: -- Standard start of API savepoint
78: SAVEPOINT Create_Visit_Pub;
79:
80: -- Initialize Procedure return status to success
81: x_return_status := FND_API.G_RET_STS_SUCCESS;

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

79:
80: -- Initialize Procedure return status to success
81: x_return_status := FND_API.G_RET_STS_SUCCESS;
82:
83: -- Standard call to check for call compatibility
84: IF NOT FND_API.Compatible_API_Call(l_api_version, p_api_version,
85: l_api_name, G_PKG_NAME) THEN
86: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;
87: END IF;

Line 130: -- Standard check of p_commit

126: FND_LOG.string(FND_LOG.level_statement, l_full_name, 'Visit created successfully with name ' ||
127: p_x_visit_rec.VISIT_NAME || ' and id ' || p_x_visit_rec.VISIT_ID);
128: END IF;
129:
130: -- Standard check of p_commit
131: IF FND_API.TO_BOOLEAN(p_commit) THEN
132: COMMIT WORK;
133: END IF;
134:

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

131: IF FND_API.TO_BOOLEAN(p_commit) THEN
132: COMMIT WORK;
133: END IF;
134:
135: -- Standard call to get message count and if count is 1, get message info
136: FND_MSG_PUB.Count_And_Get
137: ( p_count => x_msg_count,
138: p_data => x_msg_data,
139: p_encoded => FND_API.G_FALSE