DBA Data[Home] [Help]

APPS.AMS_DMPERFORMANCE_PUB dependencies on FND_MSG_PUB

Line 61: FND_MSG_PUB.initialize;

57:
58: -- Initialize message list if p_init_msg_list is set to TRUE.
59: IF FND_API.to_Boolean( p_init_msg_list )
60: THEN
61: FND_MSG_PUB.initialize;
62: END IF;
63:
64: -- Debug Message
65: AMS_UTILITY_PVT.debug_message('Public API: ' || l_api_name || 'start');

Line 118: FND_MSG_PUB.Count_And_Get

114: -- Debug Message
115: AMS_UTILITY_PVT.debug_message('Public API: ' || l_api_name || 'end');
116:
117: -- Standard call to get message count and if count is 1, get message info.
118: FND_MSG_PUB.Count_And_Get
119: (p_count => x_msg_count,
120: p_data => x_msg_data
121: );
122: EXCEPTION

Line 126: IF FND_MSG_PUB.check_msg_level(FND_MSG_PUB.g_msg_lvl_error) THEN

122: EXCEPTION
123:
124: WHEN AMS_Utility_PVT.resource_locked THEN
125: x_return_status := FND_API.g_ret_sts_error;
126: IF FND_MSG_PUB.check_msg_level(FND_MSG_PUB.g_msg_lvl_error) THEN
127: FND_MESSAGE.set_name('AMS', 'AMS_API_RESOURCE_LOCKED');
128: FND_MSG_PUB.add;
129: END IF;
130:

Line 128: FND_MSG_PUB.add;

124: WHEN AMS_Utility_PVT.resource_locked THEN
125: x_return_status := FND_API.g_ret_sts_error;
126: IF FND_MSG_PUB.check_msg_level(FND_MSG_PUB.g_msg_lvl_error) THEN
127: FND_MESSAGE.set_name('AMS', 'AMS_API_RESOURCE_LOCKED');
128: FND_MSG_PUB.add;
129: END IF;
130:
131: WHEN FND_API.G_EXC_ERROR THEN
132: ROLLBACK TO Create_Performance_PUB;

Line 135: FND_MSG_PUB.Count_And_Get (

131: WHEN FND_API.G_EXC_ERROR THEN
132: ROLLBACK TO Create_Performance_PUB;
133: x_return_status := FND_API.G_RET_STS_ERROR;
134: -- Standard call to get message count and if count=1, get the message
135: FND_MSG_PUB.Count_And_Get (
136: p_encoded => FND_API.G_FALSE,
137: p_count => x_msg_count,
138: p_data => x_msg_data
139: );

Line 145: FND_MSG_PUB.Count_And_Get (

141: WHEN FND_API.G_EXC_UNEXPECTED_ERROR THEN
142: ROLLBACK TO Create_Performance_PUB;
143: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
144: -- Standard call to get message count and if count=1, get the message
145: FND_MSG_PUB.Count_And_Get (
146: p_encoded => FND_API.G_FALSE,
147: p_count => x_msg_count,
148: p_data => x_msg_data
149: );

Line 154: IF FND_MSG_PUB.Check_Msg_Level ( FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)

150:
151: WHEN OTHERS THEN
152: ROLLBACK TO Create_Performance_PUB;
153: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
154: IF FND_MSG_PUB.Check_Msg_Level ( FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
155: THEN
156: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
157: END IF;
158: -- Standard call to get message count and if count=1, get the message

Line 156: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);

152: ROLLBACK TO Create_Performance_PUB;
153: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
154: IF FND_MSG_PUB.Check_Msg_Level ( FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
155: THEN
156: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
157: END IF;
158: -- Standard call to get message count and if count=1, get the message
159: FND_MSG_PUB.Count_And_Get (
160: p_encoded => FND_API.G_FALSE,

Line 159: FND_MSG_PUB.Count_And_Get (

155: THEN
156: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
157: END IF;
158: -- Standard call to get message count and if count=1, get the message
159: FND_MSG_PUB.Count_And_Get (
160: p_encoded => FND_API.G_FALSE,
161: p_count => x_msg_count,
162: p_data => x_msg_data
163: );

Line 200: FND_MSG_PUB.initialize;

196:
197: -- Initialize message list if p_init_msg_list is set to TRUE.
198: IF FND_API.to_Boolean( p_init_msg_list )
199: THEN
200: FND_MSG_PUB.initialize;
201: END IF;
202:
203: -- Debug Message
204: AMS_UTILITY_PVT.debug_message('Public API: ' || l_api_name || 'start');

Line 257: FND_MSG_PUB.Count_And_Get

253: -- Debug Message
254: AMS_UTILITY_PVT.debug_message('Public API: ' || l_api_name || 'end');
255:
256: -- Standard call to get message count and if count is 1, get message info.
257: FND_MSG_PUB.Count_And_Get
258: (p_count => x_msg_count,
259: p_data => x_msg_data
260: );
261: EXCEPTION

Line 265: IF FND_MSG_PUB.check_msg_level(FND_MSG_PUB.g_msg_lvl_error) THEN

261: EXCEPTION
262:
263: WHEN AMS_Utility_PVT.resource_locked THEN
264: x_return_status := FND_API.g_ret_sts_error;
265: IF FND_MSG_PUB.check_msg_level(FND_MSG_PUB.g_msg_lvl_error) THEN
266: FND_MESSAGE.set_name('AMS', 'AMS_API_RESOURCE_LOCKED');
267: FND_MSG_PUB.add;
268: END IF;
269:

Line 267: FND_MSG_PUB.add;

263: WHEN AMS_Utility_PVT.resource_locked THEN
264: x_return_status := FND_API.g_ret_sts_error;
265: IF FND_MSG_PUB.check_msg_level(FND_MSG_PUB.g_msg_lvl_error) THEN
266: FND_MESSAGE.set_name('AMS', 'AMS_API_RESOURCE_LOCKED');
267: FND_MSG_PUB.add;
268: END IF;
269:
270: WHEN FND_API.G_EXC_ERROR THEN
271: ROLLBACK TO Update_Performance_PUB;

Line 274: FND_MSG_PUB.Count_And_Get (

270: WHEN FND_API.G_EXC_ERROR THEN
271: ROLLBACK TO Update_Performance_PUB;
272: x_return_status := FND_API.G_RET_STS_ERROR;
273: -- Standard call to get message count and if count=1, get the message
274: FND_MSG_PUB.Count_And_Get (
275: p_encoded => FND_API.G_FALSE,
276: p_count => x_msg_count,
277: p_data => x_msg_data
278: );

Line 284: FND_MSG_PUB.Count_And_Get (

280: WHEN FND_API.G_EXC_UNEXPECTED_ERROR THEN
281: ROLLBACK TO Update_Performance_PUB;
282: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
283: -- Standard call to get message count and if count=1, get the message
284: FND_MSG_PUB.Count_And_Get (
285: p_encoded => FND_API.G_FALSE,
286: p_count => x_msg_count,
287: p_data => x_msg_data
288: );

Line 293: IF FND_MSG_PUB.Check_Msg_Level ( FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)

289:
290: WHEN OTHERS THEN
291: ROLLBACK TO Update_Performance_PUB;
292: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
293: IF FND_MSG_PUB.Check_Msg_Level ( FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
294: THEN
295: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
296: END IF;
297: -- Standard call to get message count and if count=1, get the message

Line 295: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);

291: ROLLBACK TO Update_Performance_PUB;
292: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
293: IF FND_MSG_PUB.Check_Msg_Level ( FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
294: THEN
295: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
296: END IF;
297: -- Standard call to get message count and if count=1, get the message
298: FND_MSG_PUB.Count_And_Get (
299: p_encoded => FND_API.G_FALSE,

Line 298: FND_MSG_PUB.Count_And_Get (

294: THEN
295: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
296: END IF;
297: -- Standard call to get message count and if count=1, get the message
298: FND_MSG_PUB.Count_And_Get (
299: p_encoded => FND_API.G_FALSE,
300: p_count => x_msg_count,
301: p_data => x_msg_data
302: );

Line 336: FND_MSG_PUB.initialize;

332:
333: -- Initialize message list if p_init_msg_list is set to TRUE.
334: IF FND_API.to_Boolean( p_init_msg_list )
335: THEN
336: FND_MSG_PUB.initialize;
337: END IF;
338:
339: -- Debug Message
340: AMS_UTILITY_PVT.debug_message('Public API: ' || l_api_name || 'start');

Line 383: FND_MSG_PUB.Count_And_Get

379: -- Debug Message
380: AMS_UTILITY_PVT.debug_message('Public API: ' || l_api_name || 'end');
381:
382: -- Standard call to get message count and if count is 1, get message info.
383: FND_MSG_PUB.Count_And_Get
384: (p_count => x_msg_count,
385: p_data => x_msg_data
386: );
387: EXCEPTION

Line 391: IF FND_MSG_PUB.check_msg_level(FND_MSG_PUB.g_msg_lvl_error) THEN

387: EXCEPTION
388:
389: WHEN AMS_Utility_PVT.resource_locked THEN
390: x_return_status := FND_API.g_ret_sts_error;
391: IF FND_MSG_PUB.check_msg_level(FND_MSG_PUB.g_msg_lvl_error) THEN
392: FND_MESSAGE.set_name('AMS', 'AMS_API_RESOURCE_LOCKED');
393: FND_MSG_PUB.add;
394: END IF;
395:

Line 393: FND_MSG_PUB.add;

389: WHEN AMS_Utility_PVT.resource_locked THEN
390: x_return_status := FND_API.g_ret_sts_error;
391: IF FND_MSG_PUB.check_msg_level(FND_MSG_PUB.g_msg_lvl_error) THEN
392: FND_MESSAGE.set_name('AMS', 'AMS_API_RESOURCE_LOCKED');
393: FND_MSG_PUB.add;
394: END IF;
395:
396: WHEN FND_API.G_EXC_ERROR THEN
397: ROLLBACK TO Delete_Performance_PUB;

Line 400: FND_MSG_PUB.Count_And_Get (

396: WHEN FND_API.G_EXC_ERROR THEN
397: ROLLBACK TO Delete_Performance_PUB;
398: x_return_status := FND_API.G_RET_STS_ERROR;
399: -- Standard call to get message count and if count=1, get the message
400: FND_MSG_PUB.Count_And_Get (
401: p_encoded => FND_API.G_FALSE,
402: p_count => x_msg_count,
403: p_data => x_msg_data
404: );

Line 410: FND_MSG_PUB.Count_And_Get (

406: WHEN FND_API.G_EXC_UNEXPECTED_ERROR THEN
407: ROLLBACK TO Delete_Performance_PUB;
408: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
409: -- Standard call to get message count and if count=1, get the message
410: FND_MSG_PUB.Count_And_Get (
411: p_encoded => FND_API.G_FALSE,
412: p_count => x_msg_count,
413: p_data => x_msg_data
414: );

Line 419: IF FND_MSG_PUB.Check_Msg_Level ( FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)

415:
416: WHEN OTHERS THEN
417: ROLLBACK TO Delete_Performance_PUB;
418: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
419: IF FND_MSG_PUB.Check_Msg_Level ( FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
420: THEN
421: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
422: END IF;
423: -- Standard call to get message count and if count=1, get the message

Line 421: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);

417: ROLLBACK TO Delete_Performance_PUB;
418: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
419: IF FND_MSG_PUB.Check_Msg_Level ( FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
420: THEN
421: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
422: END IF;
423: -- Standard call to get message count and if count=1, get the message
424: FND_MSG_PUB.Count_And_Get (
425: p_encoded => FND_API.G_FALSE,

Line 424: FND_MSG_PUB.Count_And_Get (

420: THEN
421: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
422: END IF;
423: -- Standard call to get message count and if count=1, get the message
424: FND_MSG_PUB.Count_And_Get (
425: p_encoded => FND_API.G_FALSE,
426: p_count => x_msg_count,
427: p_data => x_msg_data
428: );

Line 459: FND_MSG_PUB.initialize;

455:
456: -- Initialize message list if p_init_msg_list is set to TRUE.
457: IF FND_API.to_Boolean( p_init_msg_list )
458: THEN
459: FND_MSG_PUB.initialize;
460: END IF;
461:
462: -- Debug Message
463: AMS_UTILITY_PVT.debug_message('Public API: ' || l_api_name || 'start');

Line 501: IF FND_MSG_PUB.check_msg_level(FND_MSG_PUB.g_msg_lvl_error) THEN

497: EXCEPTION
498:
499: WHEN AMS_Utility_PVT.resource_locked THEN
500: x_return_status := FND_API.g_ret_sts_error;
501: IF FND_MSG_PUB.check_msg_level(FND_MSG_PUB.g_msg_lvl_error) THEN
502: FND_MESSAGE.set_name('AMS', 'AMS_API_RESOURCE_LOCKED');
503: FND_MSG_PUB.add;
504: END IF;
505:

Line 503: FND_MSG_PUB.add;

499: WHEN AMS_Utility_PVT.resource_locked THEN
500: x_return_status := FND_API.g_ret_sts_error;
501: IF FND_MSG_PUB.check_msg_level(FND_MSG_PUB.g_msg_lvl_error) THEN
502: FND_MESSAGE.set_name('AMS', 'AMS_API_RESOURCE_LOCKED');
503: FND_MSG_PUB.add;
504: END IF;
505:
506: WHEN FND_API.G_EXC_ERROR THEN
507: x_return_status := FND_API.G_RET_STS_ERROR;

Line 509: FND_MSG_PUB.Count_And_Get (

505:
506: WHEN FND_API.G_EXC_ERROR THEN
507: x_return_status := FND_API.G_RET_STS_ERROR;
508: -- Standard call to get message count and if count=1, get the message
509: FND_MSG_PUB.Count_And_Get (
510: p_encoded => FND_API.G_FALSE,
511: p_count => x_msg_count,
512: p_data => x_msg_data
513: );

Line 518: FND_MSG_PUB.Count_And_Get (

514:
515: WHEN FND_API.G_EXC_UNEXPECTED_ERROR THEN
516: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
517: -- Standard call to get message count and if count=1, get the message
518: FND_MSG_PUB.Count_And_Get (
519: p_encoded => FND_API.G_FALSE,
520: p_count => x_msg_count,
521: p_data => x_msg_data
522: );

Line 526: IF FND_MSG_PUB.Check_Msg_Level ( FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)

522: );
523:
524: WHEN OTHERS THEN
525: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
526: IF FND_MSG_PUB.Check_Msg_Level ( FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
527: THEN
528: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
529: END IF;
530: -- Standard call to get message count and if count=1, get the message

Line 528: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);

524: WHEN OTHERS THEN
525: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
526: IF FND_MSG_PUB.Check_Msg_Level ( FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
527: THEN
528: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
529: END IF;
530: -- Standard call to get message count and if count=1, get the message
531: FND_MSG_PUB.Count_And_Get (
532: p_encoded => FND_API.G_FALSE,

Line 531: FND_MSG_PUB.Count_And_Get (

527: THEN
528: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
529: END IF;
530: -- Standard call to get message count and if count=1, get the message
531: FND_MSG_PUB.Count_And_Get (
532: p_encoded => FND_API.G_FALSE,
533: p_count => x_msg_count,
534: p_data => x_msg_data
535: );

Line 638: IF FND_MSG_PUB.Check_Msg_Level ( FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR) THEN

634: WHEN FND_API.G_EXC_UNEXPECTED_ERROR THEN
635: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
636: WHEN OTHERS THEN
637: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
638: IF FND_MSG_PUB.Check_Msg_Level ( FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR) THEN
639: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
640: END IF;
641: END Create_Performance;
642:

Line 639: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);

635: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
636: WHEN OTHERS THEN
637: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
638: IF FND_MSG_PUB.Check_Msg_Level ( FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR) THEN
639: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
640: END IF;
641: END Create_Performance;
642:
643: