DBA Data[Home] [Help]

APPS.AHL_UMP_UNITMAINT_PVT dependencies on STANDARD

Line 130: -- Standard IN Parameters :

126: -- Function : Manages Create/Modify/Delete operations for unit maintenance requirements.
127: -- Pre-reqs :
128: -- Parameters :
129: --
130: -- Standard IN Parameters :
131: -- p_api_version IN NUMBER Required
132: -- p_init_msg_list IN VARCHAR2 Default FND_API.G_FALSE
133: -- p_commit IN VARCHAR2 Default FND_API.G_FALSE
134: -- p_validation_level IN NUMBER Default FND_API.G_VALID_LEVEL_FULL

Line 139: -- Standard OUT Parameters :

135: -- p_default IN VARCHAR2 Default FND_API.G_TRUE
136: -- Based on this flag, the API will set the default attributes.
137: -- p_module_type In VARCHAR2 Default NULL
138: -- This will be null.
139: -- Standard OUT Parameters :
140: -- x_return_status OUT VARCHAR2 Required
141: -- x_msg_count OUT NUMBER Required
142: -- x_msg_data OUT VARCHAR2 Required
143: --

Line 186: -- Standard start of API savepoint

182: l_msg_count NUMBER;
183:
184:
185: BEGIN
186: -- Standard start of API savepoint
187: SAVEPOINT Process_UnitEffectivity_PVT;
188:
189: -- Standard call to check for call compatibility
190: IF NOT FND_API.Compatible_API_Call(l_api_version, p_api_version, l_api_name,

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

185: BEGIN
186: -- Standard start of API savepoint
187: SAVEPOINT Process_UnitEffectivity_PVT;
188:
189: -- Standard call to check for call compatibility
190: IF NOT FND_API.Compatible_API_Call(l_api_version, p_api_version, l_api_name,
191: G_PKG_NAME) THEN
192: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;
193: END IF;

Line 273: -- Standard check of p_commit

269: ELSIF x_return_status = FND_API.G_RET_STS_UNEXP_ERROR THEN
270: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;
271: END IF;
272:
273: -- Standard check of p_commit
274: IF FND_API.TO_BOOLEAN(p_commit) THEN
275: COMMIT WORK;
276: END IF;
277:

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

274: IF FND_API.TO_BOOLEAN(p_commit) THEN
275: COMMIT WORK;
276: END IF;
277:
278: -- Standard call to get message count and if count is 1, get message info
279: FND_MSG_PUB.Count_And_Get
280: ( p_count => x_msg_count,
281: p_data => x_msg_data,
282: p_encoded => fnd_api.g_false

Line 337: -- Standard OUT Parameters :

333: --
334: -- Pre-reqs :
335: -- Parameters :
336: --
337: -- Standard OUT Parameters :
338: -- x_return_status OUT VARCHAR2 Required
339: -- x_msg_count OUT NUMBER Required
340: -- x_msg_data OUT VARCHAR2 Required
341: --

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

500: ELSIF l_return_status = FND_API.G_RET_STS_UNEXP_ERROR THEN
501: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;
502: END IF;
503:
504: -- Standard call to get message count and if count is 1, get message info
505: FND_MSG_PUB.Count_And_Get
506: ( p_count => x_msg_count,
507: p_data => x_msg_data,
508: p_encoded => fnd_api.g_false

Line 591: -- Standard start of API savepoint

587: l_temp_return_status VARCHAR2(30);
588:
589: BEGIN
590:
591: -- Standard start of API savepoint
592: SAVEPOINT Capture_MR_Updates_pvt;
593:
594: -- Standard call to check for call compatibility
595: IF NOT FND_API.Compatible_API_Call(l_api_version, p_api_version, l_api_name,

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

590:
591: -- Standard start of API savepoint
592: SAVEPOINT Capture_MR_Updates_pvt;
593:
594: -- Standard call to check for call compatibility
595: IF NOT FND_API.Compatible_API_Call(l_api_version, p_api_version, l_api_name,
596: G_PKG_NAME) THEN
597: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;
598: END IF;

Line 754: -- Standard check of p_commit

750: IF x_msg_count > 0 THEN
751: RAISE FND_API.G_EXC_ERROR;
752: END IF;
753:
754: -- Standard check of p_commit
755: IF FND_API.TO_BOOLEAN(p_commit) THEN
756: COMMIT WORK;
757: END IF;
758:

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

755: IF FND_API.TO_BOOLEAN(p_commit) THEN
756: COMMIT WORK;
757: END IF;
758:
759: -- Standard call to get message count and if count is 1, get message info
760: FND_MSG_PUB.Count_And_Get
761: ( p_count => x_msg_count,
762: p_data => x_msg_data,
763: p_encoded => fnd_api.g_false

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

859: BEGIN
860: --IF G_DEBUG='Y' THEN
861: -- AHL_DEBUG_PUB.enable_debug;
862: --END IF;
863: -- Standard call to check for call compatibility
864: IF NOT FND_API.Compatible_API_Call(l_api_version, p_api_version, l_api_name,
865: G_PKG_NAME) THEN
866: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;
867: END IF;

Line 4093: -- Standard start of API savepoint

4089:
4090:
4091: BEGIN
4092:
4093: -- Standard start of API savepoint
4094: SAVEPOINT Terminate_MR_Instances_pvt;
4095:
4096: -- Enable Debug (optional)
4097: IF G_DEBUG='Y' THEN

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

4100:
4101: IF G_DEBUG='Y' THEN
4102: AHL_DEBUG_PUB.debug('Beginning Processing... ', 'UMP-TERMINATE: ');
4103: END IF;
4104: -- Standard call to check for call compatibility
4105: IF NOT FND_API.Compatible_API_Call(l_api_version, p_api_version, l_api_name,
4106: G_PKG_NAME) THEN
4107: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;
4108: END IF;

Line 4734: -- Standard check of p_commit

4730: END IF; -- call fmp if
4731: END IF; -- count > 0
4732: END IF;
4733:
4734: -- Standard check of p_commit
4735: IF FND_API.TO_BOOLEAN(p_commit) THEN
4736: COMMIT WORK;
4737: IF G_DEBUG='Y' THEN
4738: AHL_DEBUG_PUB.debug('Committed Changes', 'UMP');

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

4773: END IF;
4774: END IF;
4775: */
4776:
4777: -- Standard call to get message count and if count is 1, get message info
4778: FND_MSG_PUB.Count_And_Get
4779: ( p_count => x_msg_count,
4780: p_data => x_msg_data,
4781: p_encoded => fnd_api.g_false

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

5355:
5356: -- Initialize error message stack by default
5357: FND_MSG_PUB.Initialize;
5358:
5359: -- Standard call to check for call compatibility
5360: IF NOT FND_API.Compatible_API_Call(l_api_version, p_api_version, l_api_name, G_PKG_NAME)
5361: THEN
5362: retcode := 2;
5363: errbuf := FND_MSG_PUB.Get;

Line 5446: -- standard call to check for call compatibility

5442:
5443: -- initialize error message stack
5444: FND_MSG_PUB.Initialize;
5445:
5446: -- standard call to check for call compatibility
5447: IF NOT FND_API.Compatible_API_Call(l_api_version, p_api_version,
5448: l_api_name, G_PKG_NAME) THEN
5449: IF (FND_LOG.level_statement >= FND_LOG.g_current_runtime_level) THEN
5450: FND_LOG.string(FND_LOG.level_statement,l_full_name,

Line 5609: -- Standard call to get message count.

5605: IF G_DEBUG = 'Y' THEN
5606: AHL_DEBUG_PUB.Debug('Start log error messages');
5607: END IF;
5608:
5609: -- Standard call to get message count.
5610: l_msg_count := FND_MSG_PUB.Count_Msg;
5611:
5612: FOR i IN 1..l_msg_count LOOP
5613: FND_MSG_PUB.get (