DBA Data[Home] [Help]

APPS.AHL_UMP_SR_GRP dependencies on STANDARD

Line 160: -- Standard IN Parameters :

156: -- .
157: -- Pre-reqs :
158: -- Parameters :
159: --
160: -- Standard IN Parameters :
161: -- p_api_version IN NUMBER Required
162: -- p_init_msg_list IN VARCHAR2 Default FND_API.G_FALSE
163: -- p_commit IN VARCHAR2 Default FND_API.G_FALSE
164: -- p_validation_level IN NUMBER Default FND_API.G_VALID_LEVEL_FULL

Line 166: -- Standard OUT Parameters :

162: -- p_init_msg_list IN VARCHAR2 Default FND_API.G_FALSE
163: -- p_commit IN VARCHAR2 Default FND_API.G_FALSE
164: -- p_validation_level IN NUMBER Default FND_API.G_VALID_LEVEL_FULL
165: --
166: -- Standard OUT Parameters :
167: -- x_return_status OUT VARCHAR2 Required
168: -- x_msg_count OUT NUMBER Required
169: -- x_msg_data OUT VARCHAR2 Required
170: --

Line 211: -- Standard start of API savepoint

207: l_api_name CONSTANT VARCHAR2(30) := 'Process_SR_MR_Associations';
208: L_DEBUG_KEY CONSTANT VARCHAR2(150) := G_LOG_PREFIX || '.Process_SR_MR_Associations';
209:
210: BEGIN
211: -- Standard start of API savepoint
212: SAVEPOINT Process_SR_MR_Associations_pvt;
213:
214: IF (FND_LOG.LEVEL_PROCEDURE >= FND_LOG.G_CURRENT_RUNTIME_LEVEL) THEN
215: FND_LOG.STRING(FND_LOG.LEVEL_PROCEDURE, L_DEBUG_KEY || '.begin', 'Entering Procedure');

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

214: IF (FND_LOG.LEVEL_PROCEDURE >= FND_LOG.G_CURRENT_RUNTIME_LEVEL) THEN
215: FND_LOG.STRING(FND_LOG.LEVEL_PROCEDURE, L_DEBUG_KEY || '.begin', 'Entering Procedure');
216: END IF;
217:
218: -- Standard call to check for call compatibility
219: IF NOT FND_API.Compatible_API_Call(l_api_version, p_api_version, l_api_name, G_PKG_NAME) THEN
220: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;
221: END IF;
222:

Line 251: -- Standard check of p_commit

247: IF (FND_LOG.LEVEL_EVENT >= FND_LOG.G_CURRENT_RUNTIME_LEVEL) THEN
248: FND_LOG.STRING(FND_LOG.LEVEL_EVENT, L_DEBUG_KEY, 'Returned from call to AHL_UMP_SR_PVT.Process_SR_MR_Associations. x_return_status = ' || x_return_status);
249: END IF;
250:
251: -- Standard check of p_commit
252: IF FND_API.TO_BOOLEAN(p_commit) THEN
253: IF (FND_LOG.LEVEL_STATEMENT >= FND_LOG.G_CURRENT_RUNTIME_LEVEL) THEN
254: FND_LOG.STRING(FND_LOG.LEVEL_STATEMENT, L_DEBUG_KEY, 'About to Commit.');
255: END IF;

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

255: END IF;
256: COMMIT WORK;
257: END IF;
258:
259: -- Standard call to get message count and if count is 1, get message info
260: FND_MSG_PUB.Count_And_Get
261: ( p_count => x_msg_count,
262: p_data => x_msg_data,
263: p_encoded => fnd_api.g_false