DBA Data[Home] [Help]

APPS.OZF_CLAIMS_INT_PUB dependencies on FND_MSG_PUB

Line 21: G_DEBUG BOOLEAN := FND_MSG_PUB.check_msg_level(FND_MSG_PUB.g_msg_lvl_debug_high);

17:
18: G_PKG_NAME CONSTANT VARCHAR2(30):= 'OZF_Claims_Int_PUB';
19: G_FILE_NAME CONSTANT VARCHAR2(12) := 'ozfpcinb.pls';
20:
21: G_DEBUG BOOLEAN := FND_MSG_PUB.check_msg_level(FND_MSG_PUB.g_msg_lvl_debug_high);
22:
23: PROCEDURE Create_Claims_Int(
24: p_api_version_number IN NUMBER,
25: p_init_msg_list IN VARCHAR2 := FND_API.G_FALSE,

Line 60: FND_MSG_PUB.initialize;

56:
57: -- Initialize message list if p_init_msg_list is set to TRUE.
58: IF FND_API.to_Boolean( p_init_msg_list )
59: THEN
60: FND_MSG_PUB.initialize;
61: END IF;
62:
63: -- Debug Message
64: IF g_debug THEN

Line 237: FND_MSG_PUB.Count_And_Get

233: OZF_UTILITY_PVT.debug_message('Public API: ' || l_api_name || 'end');
234: END IF;
235:
236: -- Standard call to get message count and if count is 1, get message info.
237: FND_MSG_PUB.Count_And_Get
238: (p_count => x_msg_count,
239: p_data => x_msg_data
240: );
241: EXCEPTION

Line 251: FND_MSG_PUB.Count_And_Get (

247: WHEN FND_API.G_EXC_ERROR THEN
248: ROLLBACK TO CREATE_Claims_Int_PUB;
249: x_return_status := FND_API.G_RET_STS_ERROR;
250: -- Standard call to get message count and if count=1, get the message
251: FND_MSG_PUB.Count_And_Get (
252: p_encoded => FND_API.G_FALSE,
253: p_count => x_msg_count,
254: p_data => x_msg_data
255: );

Line 261: FND_MSG_PUB.Count_And_Get (

257: WHEN FND_API.G_EXC_UNEXPECTED_ERROR THEN
258: ROLLBACK TO CREATE_Claims_Int_PUB;
259: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
260: -- Standard call to get message count and if count=1, get the message
261: FND_MSG_PUB.Count_And_Get (
262: p_encoded => FND_API.G_FALSE,
263: p_count => x_msg_count,
264: p_data => x_msg_data
265: );

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

266:
267: WHEN OTHERS THEN
268: ROLLBACK TO CREATE_Claims_Int_PUB;
269: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
270: IF FND_MSG_PUB.Check_Msg_Level ( FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
271: THEN
272: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
273: END IF;
274: -- Standard call to get message count and if count=1, get the message

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

268: ROLLBACK TO CREATE_Claims_Int_PUB;
269: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
270: IF FND_MSG_PUB.Check_Msg_Level ( FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
271: THEN
272: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
273: END IF;
274: -- Standard call to get message count and if count=1, get the message
275: FND_MSG_PUB.Count_And_Get (
276: p_encoded => FND_API.G_FALSE,

Line 275: FND_MSG_PUB.Count_And_Get (

271: THEN
272: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
273: END IF;
274: -- Standard call to get message count and if count=1, get the message
275: FND_MSG_PUB.Count_And_Get (
276: p_encoded => FND_API.G_FALSE,
277: p_count => x_msg_count,
278: p_data => x_msg_data
279: );

Line 317: FND_MSG_PUB.initialize;

313:
314: -- Initialize message list if p_init_msg_list is set to TRUE.
315: IF FND_API.to_Boolean( p_init_msg_list )
316: THEN
317: FND_MSG_PUB.initialize;
318: END IF;
319:
320: -- Debug Message
321: IF g_debug THEN

Line 367: FND_MSG_PUB.Count_And_Get

363: OZF_UTILITY_PVT.debug_message('Public API: ' || l_api_name || 'end');
364: END IF;
365:
366: -- Standard call to get message count and if count is 1, get message info.
367: FND_MSG_PUB.Count_And_Get
368: (p_count => x_msg_count,
369: p_data => x_msg_data
370: );
371: EXCEPTION

Line 381: FND_MSG_PUB.Count_And_Get (

377: WHEN FND_API.G_EXC_ERROR THEN
378: ROLLBACK TO UPDATE_Claims_Int_PUB;
379: x_return_status := FND_API.G_RET_STS_ERROR;
380: -- Standard call to get message count and if count=1, get the message
381: FND_MSG_PUB.Count_And_Get (
382: p_encoded => FND_API.G_FALSE,
383: p_count => x_msg_count,
384: p_data => x_msg_data
385: );

Line 391: FND_MSG_PUB.Count_And_Get (

387: WHEN FND_API.G_EXC_UNEXPECTED_ERROR THEN
388: ROLLBACK TO UPDATE_Claims_Int_PUB;
389: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
390: -- Standard call to get message count and if count=1, get the message
391: FND_MSG_PUB.Count_And_Get (
392: p_encoded => FND_API.G_FALSE,
393: p_count => x_msg_count,
394: p_data => x_msg_data
395: );

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

396:
397: WHEN OTHERS THEN
398: ROLLBACK TO UPDATE_Claims_Int_PUB;
399: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
400: IF FND_MSG_PUB.Check_Msg_Level ( FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
401: THEN
402: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
403: END IF;
404: -- Standard call to get message count and if count=1, get the message

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

398: ROLLBACK TO UPDATE_Claims_Int_PUB;
399: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
400: IF FND_MSG_PUB.Check_Msg_Level ( FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
401: THEN
402: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
403: END IF;
404: -- Standard call to get message count and if count=1, get the message
405: FND_MSG_PUB.Count_And_Get (
406: p_encoded => FND_API.G_FALSE,

Line 405: FND_MSG_PUB.Count_And_Get (

401: THEN
402: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
403: END IF;
404: -- Standard call to get message count and if count=1, get the message
405: FND_MSG_PUB.Count_And_Get (
406: p_encoded => FND_API.G_FALSE,
407: p_count => x_msg_count,
408: p_data => x_msg_data
409: );

Line 446: FND_MSG_PUB.initialize;

442:
443: -- Initialize message list if p_init_msg_list is set to TRUE.
444: IF FND_API.to_Boolean( p_init_msg_list )
445: THEN
446: FND_MSG_PUB.initialize;
447: END IF;
448:
449: -- Debug Message
450: IF g_debug THEN

Line 496: FND_MSG_PUB.Count_And_Get

492: OZF_UTILITY_PVT.debug_message('Public API: ' || l_api_name || 'end');
493: END IF;
494:
495: -- Standard call to get message count and if count is 1, get message info.
496: FND_MSG_PUB.Count_And_Get
497: (p_count => x_msg_count,
498: p_data => x_msg_data
499: );
500: EXCEPTION

Line 510: FND_MSG_PUB.Count_And_Get (

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

Line 520: FND_MSG_PUB.Count_And_Get (

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

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

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

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

527: ROLLBACK TO DELETE_Claims_Int_PUB;
528: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
529: IF FND_MSG_PUB.Check_Msg_Level ( FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
530: THEN
531: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
532: END IF;
533: -- Standard call to get message count and if count=1, get the message
534: FND_MSG_PUB.Count_And_Get (
535: p_encoded => FND_API.G_FALSE,

Line 534: FND_MSG_PUB.Count_And_Get (

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

Line 571: FND_MSG_PUB.initialize;

567:
568: -- Initialize message list if p_init_msg_list is set to TRUE.
569: IF FND_API.to_Boolean( p_init_msg_list )
570: THEN
571: FND_MSG_PUB.initialize;
572: END IF;
573:
574: -- Debug Message
575: IF g_debug THEN

Line 623: FND_MSG_PUB.Count_And_Get (

619: WHEN FND_API.G_EXC_ERROR THEN
620: ROLLBACK TO LOCK_Claims_Int_PUB;
621: x_return_status := FND_API.G_RET_STS_ERROR;
622: -- Standard call to get message count and if count=1, get the message
623: FND_MSG_PUB.Count_And_Get (
624: p_encoded => FND_API.G_FALSE,
625: p_count => x_msg_count,
626: p_data => x_msg_data
627: );

Line 633: FND_MSG_PUB.Count_And_Get (

629: WHEN FND_API.G_EXC_UNEXPECTED_ERROR THEN
630: ROLLBACK TO LOCK_Claims_Int_PUB;
631: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
632: -- Standard call to get message count and if count=1, get the message
633: FND_MSG_PUB.Count_And_Get (
634: p_encoded => FND_API.G_FALSE,
635: p_count => x_msg_count,
636: p_data => x_msg_data
637: );

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

638:
639: WHEN OTHERS THEN
640: ROLLBACK TO LOCK_Claims_Int_PUB;
641: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
642: IF FND_MSG_PUB.Check_Msg_Level ( FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
643: THEN
644: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
645: END IF;
646: -- Standard call to get message count and if count=1, get the message

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

640: ROLLBACK TO LOCK_Claims_Int_PUB;
641: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
642: IF FND_MSG_PUB.Check_Msg_Level ( FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
643: THEN
644: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
645: END IF;
646: -- Standard call to get message count and if count=1, get the message
647: FND_MSG_PUB.Count_And_Get (
648: p_encoded => FND_API.G_FALSE,

Line 647: FND_MSG_PUB.Count_And_Get (

643: THEN
644: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
645: END IF;
646: -- Standard call to get message count and if count=1, get the message
647: FND_MSG_PUB.Count_And_Get (
648: p_encoded => FND_API.G_FALSE,
649: p_count => x_msg_count,
650: p_data => x_msg_data
651: );