DBA Data[Home] [Help]

APPS.OZF_CLAIM_LINE_HIST_PVT dependencies on FND_MSG_PUB

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

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

Line 70: FND_MSG_PUB.initialize;

66: END IF;
67:
68: -- Initialize message list if p_init_msg_list is set to TRUE.
69: IF FND_API.to_Boolean(p_init_msg_list) THEN
70: FND_MSG_PUB.initialize;
71: END IF;
72:
73: -- Debug Message
74: IF g_debug THEN

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

240:
241: );
242: EXCEPTION
243: WHEN OTHERS THEN
244: IF FND_MSG_PUB.check_msg_level(FND_MSG_PUB.g_msg_lvl_error) THEN
245: FND_MESSAGE.set_name('OZF', 'OZF_TABLE_HANDLER_ERROR');
246: FND_MSG_PUB.add;
247: END IF;
248: RAISE FND_API.g_exc_error;

Line 246: FND_MSG_PUB.add;

242: EXCEPTION
243: WHEN OTHERS THEN
244: IF FND_MSG_PUB.check_msg_level(FND_MSG_PUB.g_msg_lvl_error) THEN
245: FND_MESSAGE.set_name('OZF', 'OZF_TABLE_HANDLER_ERROR');
246: FND_MSG_PUB.add;
247: END IF;
248: RAISE FND_API.g_exc_error;
249: END;
250:

Line 263: FND_MSG_PUB.Count_And_Get(

259: OZF_UTILITY_PVT.debug_message('Private API: ' || l_api_name || 'end');
260: END IF;
261:
262: -- Standard call to get message count and if count is 1, get message info.
263: FND_MSG_PUB.Count_And_Get(
264: p_count => x_msg_count,
265: p_data => x_msg_data
266: );
267:

Line 277: FND_MSG_PUB.Count_And_Get (

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

Line 287: FND_MSG_PUB.Count_And_Get (

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

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

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

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

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

Line 300: FND_MSG_PUB.Count_And_Get(

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

Line 358: FND_MSG_PUB.initialize;

354: END IF;
355:
356: -- Initialize message list if p_init_msg_list is set to TRUE.
357: IF FND_API.to_Boolean( p_init_msg_list ) THEN
358: FND_MSG_PUB.initialize;
359: END IF;
360:
361: -- Debug Message
362: IF g_debug THEN

Line 372: IF FND_MSG_PUB.Check_Msg_Level (FND_MSG_PUB.g_msg_lvl_error) THEN

368:
369: -- Varify object_version_number
370: IF p_claim_line_hist_rec.object_version_number is NULL or
371: p_claim_line_hist_rec.object_version_number = FND_API.G_MISS_NUM THEN
372: IF FND_MSG_PUB.Check_Msg_Level (FND_MSG_PUB.g_msg_lvl_error) THEN
373: FND_MESSAGE.Set_Name('OZF', 'OZF_API_NO_OBJ_VER_NUM');
374: FND_MSG_PUB.ADD;
375: END IF;
376: RAISE FND_API.G_EXC_ERROR;

Line 374: FND_MSG_PUB.ADD;

370: IF p_claim_line_hist_rec.object_version_number is NULL or
371: p_claim_line_hist_rec.object_version_number = FND_API.G_MISS_NUM THEN
372: IF FND_MSG_PUB.Check_Msg_Level (FND_MSG_PUB.g_msg_lvl_error) THEN
373: FND_MESSAGE.Set_Name('OZF', 'OZF_API_NO_OBJ_VER_NUM');
374: FND_MSG_PUB.ADD;
375: END IF;
376: RAISE FND_API.G_EXC_ERROR;
377: END IF;
378:

Line 384: IF FND_MSG_PUB.Check_Msg_Level (FND_MSG_PUB.g_msg_lvl_error) THEN

380: FETCH csr_line_hist_obj_ver INTO l_object_version_number;
381: CLOSE csr_line_hist_obj_ver;
382:
383: IF l_object_version_number <> p_claim_line_hist_rec.object_version_number THEN
384: IF FND_MSG_PUB.Check_Msg_Level (FND_MSG_PUB.g_msg_lvl_error) THEN
385: FND_MESSAGE.Set_Name('OZF', 'OZF_API_RESOURCE_LOCKED');
386: FND_MSG_PUB.ADD;
387: END IF;
388: RAISE OZF_Utility_PVT.resource_locked;

Line 386: FND_MSG_PUB.ADD;

382:
383: IF l_object_version_number <> p_claim_line_hist_rec.object_version_number THEN
384: IF FND_MSG_PUB.Check_Msg_Level (FND_MSG_PUB.g_msg_lvl_error) THEN
385: FND_MESSAGE.Set_Name('OZF', 'OZF_API_RESOURCE_LOCKED');
386: FND_MSG_PUB.ADD;
387: END IF;
388: RAISE OZF_Utility_PVT.resource_locked;
389: END IF;
390:

Line 419: OZF_UTILITY_PVT.debug_message(FND_MSG_PUB.G_MSG_LVL_DEBUG_LOW, 'Private API: Calling update table handler');

415:
416:
417: -- Debug Message
418: IF g_debug THEN
419: OZF_UTILITY_PVT.debug_message(FND_MSG_PUB.G_MSG_LVL_DEBUG_LOW, 'Private API: Calling update table handler');
420: END IF;
421:
422: BEGIN
423: -- Invoke table handler(OZF_CLAIM_LINES_HIST_PKG.Update_Row)

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

509: p_earnings_end_date => p_claim_line_hist_rec.earnings_end_date
510: );
511: EXCEPTION
512: WHEN OTHERS THEN
513: IF FND_MSG_PUB.check_msg_level(FND_MSG_PUB.g_msg_lvl_error) THEN
514: FND_MESSAGE.set_name('OZF', 'OZF_TABLE_HANDLER_ERROR');
515: FND_MSG_PUB.add;
516: END IF;
517: RAISE FND_API.g_exc_error;

Line 515: FND_MSG_PUB.add;

511: EXCEPTION
512: WHEN OTHERS THEN
513: IF FND_MSG_PUB.check_msg_level(FND_MSG_PUB.g_msg_lvl_error) THEN
514: FND_MESSAGE.set_name('OZF', 'OZF_TABLE_HANDLER_ERROR');
515: FND_MSG_PUB.add;
516: END IF;
517: RAISE FND_API.g_exc_error;
518: END;
519:

Line 531: FND_MSG_PUB.Count_And_Get(

527: OZF_UTILITY_PVT.debug_message('Private API: ' || l_api_name || 'end');
528: END IF;
529:
530: -- Standard call to get message count and if count is 1, get message info.
531: FND_MSG_PUB.Count_And_Get(
532: p_count => x_msg_count,
533: p_data => x_msg_data
534: );
535:

Line 545: FND_MSG_PUB.Count_And_Get (

541: WHEN FND_API.G_EXC_ERROR THEN
542: ROLLBACK TO UPDATE_Claim_Line_Hist_PVT;
543: x_return_status := FND_API.G_RET_STS_ERROR;
544: -- Standard call to get message count and if count=1, get the message
545: FND_MSG_PUB.Count_And_Get (
546: p_encoded => FND_API.G_FALSE,
547: p_count => x_msg_count,
548: p_data => x_msg_data
549: );

Line 555: FND_MSG_PUB.Count_And_Get(

551: WHEN FND_API.G_EXC_UNEXPECTED_ERROR THEN
552: ROLLBACK TO UPDATE_Claim_Line_Hist_PVT;
553: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
554: -- Standard call to get message count and if count=1, get the message
555: FND_MSG_PUB.Count_And_Get(
556: p_encoded => FND_API.G_FALSE,
557: p_count => x_msg_count,
558: p_data => x_msg_data
559: );

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

560:
561: WHEN OTHERS THEN
562: ROLLBACK TO UPDATE_Claim_Line_Hist_PVT;
563: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
564: IF FND_MSG_PUB.Check_Msg_Level(FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR) THEN
565: FND_MSG_PUB.Add_Exc_Msg(G_PKG_NAME,l_api_name);
566: END IF;
567: -- Standard call to get message count and if count=1, get the message
568: FND_MSG_PUB.Count_And_Get (

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

561: WHEN OTHERS THEN
562: ROLLBACK TO UPDATE_Claim_Line_Hist_PVT;
563: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
564: IF FND_MSG_PUB.Check_Msg_Level(FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR) THEN
565: FND_MSG_PUB.Add_Exc_Msg(G_PKG_NAME,l_api_name);
566: END IF;
567: -- Standard call to get message count and if count=1, get the message
568: FND_MSG_PUB.Count_And_Get (
569: p_encoded => FND_API.G_FALSE,

Line 568: FND_MSG_PUB.Count_And_Get (

564: IF FND_MSG_PUB.Check_Msg_Level(FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR) THEN
565: FND_MSG_PUB.Add_Exc_Msg(G_PKG_NAME,l_api_name);
566: END IF;
567: -- Standard call to get message count and if count=1, get the message
568: FND_MSG_PUB.Count_And_Get (
569: p_encoded => FND_API.G_FALSE,
570: p_count => x_msg_count,
571: p_data => x_msg_data
572: );

Line 612: FND_MSG_PUB.initialize;

608: END IF;
609:
610: -- Initialize message list if p_init_msg_list is set to TRUE.
611: IF FND_API.to_Boolean( p_init_msg_list ) THEN
612: FND_MSG_PUB.initialize;
613: END IF;
614:
615: -- Debug Message
616: IF g_debug THEN

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

639: p_claim_line_history_id => p_claim_line_history_id
640: );
641: EXCEPTION
642: WHEN OTHERS THEN
643: IF FND_MSG_PUB.check_msg_level(FND_MSG_PUB.g_msg_lvl_error) THEN
644: FND_MESSAGE.set_name('OZF', 'OZF_API_RECORD_NOT_FOUND');
645: FND_MSG_PUB.add;
646: END IF;
647: RAISE FND_API.g_exc_error;

Line 645: FND_MSG_PUB.add;

641: EXCEPTION
642: WHEN OTHERS THEN
643: IF FND_MSG_PUB.check_msg_level(FND_MSG_PUB.g_msg_lvl_error) THEN
644: FND_MESSAGE.set_name('OZF', 'OZF_API_RECORD_NOT_FOUND');
645: FND_MSG_PUB.add;
646: END IF;
647: RAISE FND_API.g_exc_error;
648: END;
649: ELSE

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

646: END IF;
647: RAISE FND_API.g_exc_error;
648: END;
649: ELSE
650: IF FND_MSG_PUB.check_msg_level(FND_MSG_PUB.g_msg_lvl_error) THEN
651: FND_MESSAGE.set_name('OZF', 'OZF_REC_VERSION_CHANGED');
652: FND_MSG_PUB.add;
653: END IF;
654: RAISE FND_API.g_exc_error;

Line 652: FND_MSG_PUB.add;

648: END;
649: ELSE
650: IF FND_MSG_PUB.check_msg_level(FND_MSG_PUB.g_msg_lvl_error) THEN
651: FND_MESSAGE.set_name('OZF', 'OZF_REC_VERSION_CHANGED');
652: FND_MSG_PUB.add;
653: END IF;
654: RAISE FND_API.g_exc_error;
655: END IF;
656:

Line 668: FND_MSG_PUB.Count_And_Get

664: OZF_UTILITY_PVT.debug_message('Private API: ' || l_api_name || 'end');
665: END IF;
666:
667: -- Standard call to get message count and if count is 1, get message info.
668: FND_MSG_PUB.Count_And_Get
669: (p_count => x_msg_count,
670: p_data => x_msg_data
671: );
672:

Line 682: FND_MSG_PUB.Count_And_Get (

678: WHEN FND_API.G_EXC_ERROR THEN
679: ROLLBACK TO DELETE_Claim_Line_Hist_PVT;
680: x_return_status := FND_API.G_RET_STS_ERROR;
681: -- Standard call to get message count and if count=1, get the message
682: FND_MSG_PUB.Count_And_Get (
683: p_encoded => FND_API.G_FALSE,
684: p_count => x_msg_count,
685: p_data => x_msg_data
686: );

Line 692: FND_MSG_PUB.Count_And_Get (

688: WHEN FND_API.G_EXC_UNEXPECTED_ERROR THEN
689: ROLLBACK TO DELETE_Claim_Line_Hist_PVT;
690: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
691: -- Standard call to get message count and if count=1, get the message
692: FND_MSG_PUB.Count_And_Get (
693: p_encoded => FND_API.G_FALSE,
694: p_count => x_msg_count,
695: p_data => x_msg_data
696: );

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

697:
698: WHEN OTHERS THEN
699: ROLLBACK TO DELETE_Claim_Line_Hist_PVT;
700: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
701: IF FND_MSG_PUB.Check_Msg_Level(FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR) THEN
702: FND_MSG_PUB.Add_Exc_Msg(G_PKG_NAME,l_api_name);
703: END IF;
704: -- Standard call to get message count and if count=1, get the message
705: FND_MSG_PUB.Count_And_Get (

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

698: WHEN OTHERS THEN
699: ROLLBACK TO DELETE_Claim_Line_Hist_PVT;
700: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
701: IF FND_MSG_PUB.Check_Msg_Level(FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR) THEN
702: FND_MSG_PUB.Add_Exc_Msg(G_PKG_NAME,l_api_name);
703: END IF;
704: -- Standard call to get message count and if count=1, get the message
705: FND_MSG_PUB.Count_And_Get (
706: p_encoded => FND_API.G_FALSE,

Line 705: FND_MSG_PUB.Count_And_Get (

701: IF FND_MSG_PUB.Check_Msg_Level(FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR) THEN
702: FND_MSG_PUB.Add_Exc_Msg(G_PKG_NAME,l_api_name);
703: END IF;
704: -- Standard call to get message count and if count=1, get the message
705: FND_MSG_PUB.Count_And_Get (
706: p_encoded => FND_API.G_FALSE,
707: p_count => x_msg_count,
708: p_data => x_msg_data
709: );

Line 746: FND_MSG_PUB.initialize;

742: END IF;
743:
744: -- Initialize message list if p_init_msg_list is set to TRUE.
745: IF FND_API.to_Boolean( p_init_msg_list ) THEN
746: FND_MSG_PUB.initialize;
747: END IF;
748:
749: -- Standard call to check for call compatibility.
750: IF NOT FND_API.Compatible_API_Call ( l_api_version_number,

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

765: OPEN c_Claim_Line_Hist;
766: FETCH c_Claim_Line_Hist INTO l_CLAIM_LINE_HISTORY_ID;
767: IF (c_Claim_Line_Hist%NOTFOUND) THEN
768: CLOSE c_Claim_Line_Hist;
769: IF FND_MSG_PUB.check_msg_level(FND_MSG_PUB.g_msg_lvl_error) THEN
770: FND_MESSAGE.set_name('OZF', 'OZF_API_RECORD_NOT_FOUND');
771: FND_MSG_PUB.add;
772: END IF;
773: RAISE FND_API.g_exc_error;

Line 771: FND_MSG_PUB.add;

767: IF (c_Claim_Line_Hist%NOTFOUND) THEN
768: CLOSE c_Claim_Line_Hist;
769: IF FND_MSG_PUB.check_msg_level(FND_MSG_PUB.g_msg_lvl_error) THEN
770: FND_MESSAGE.set_name('OZF', 'OZF_API_RECORD_NOT_FOUND');
771: FND_MSG_PUB.add;
772: END IF;
773: RAISE FND_API.g_exc_error;
774: END IF;
775: CLOSE c_Claim_Line_Hist;

Line 778: FND_MSG_PUB.count_and_get(

774: END IF;
775: CLOSE c_Claim_Line_Hist;
776:
777: -------------------- finish --------------------------
778: FND_MSG_PUB.count_and_get(
779: p_encoded => FND_API.g_false,
780: p_count => x_msg_count,
781: p_data => x_msg_data
782: );

Line 797: FND_MSG_PUB.Count_And_Get (

793: WHEN FND_API.G_EXC_ERROR THEN
794: ROLLBACK TO LOCK_Claim_Line_Hist_PVT;
795: x_return_status := FND_API.G_RET_STS_ERROR;
796: -- Standard call to get message count and if count=1, get the message
797: FND_MSG_PUB.Count_And_Get (
798: p_encoded => FND_API.G_FALSE,
799: p_count => x_msg_count,
800: p_data => x_msg_data
801: );

Line 807: FND_MSG_PUB.Count_And_Get (

803: WHEN FND_API.G_EXC_UNEXPECTED_ERROR THEN
804: ROLLBACK TO LOCK_Claim_Line_Hist_PVT;
805: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
806: -- Standard call to get message count and if count=1, get the message
807: FND_MSG_PUB.Count_And_Get (
808: p_encoded => FND_API.G_FALSE,
809: p_count => x_msg_count,
810: p_data => x_msg_data
811: );

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

812:
813: WHEN OTHERS THEN
814: ROLLBACK TO LOCK_Claim_Line_Hist_PVT;
815: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
816: IF FND_MSG_PUB.Check_Msg_Level ( FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR) THEN
817: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
818: END IF;
819: -- Standard call to get message count and if count=1, get the message
820: FND_MSG_PUB.Count_And_Get (

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

813: WHEN OTHERS THEN
814: ROLLBACK TO LOCK_Claim_Line_Hist_PVT;
815: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
816: IF FND_MSG_PUB.Check_Msg_Level ( FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR) THEN
817: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
818: END IF;
819: -- Standard call to get message count and if count=1, get the message
820: FND_MSG_PUB.Count_And_Get (
821: p_encoded => FND_API.G_FALSE,

Line 820: FND_MSG_PUB.Count_And_Get (

816: IF FND_MSG_PUB.Check_Msg_Level ( FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR) THEN
817: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
818: END IF;
819: -- Standard call to get message count and if count=1, get the message
820: FND_MSG_PUB.Count_And_Get (
821: p_encoded => FND_API.G_FALSE,
822: p_count => x_msg_count,
823: p_data => x_msg_data
824: );

Line 1854: FND_MSG_PUB.initialize;

1850: END IF;
1851:
1852: -- Initialize message list if p_init_msg_list is set to TRUE.
1853: IF FND_API.to_Boolean( p_init_msg_list ) THEN
1854: FND_MSG_PUB.initialize;
1855: END IF;
1856:
1857: -- Debug Message
1858: IF g_debug THEN

Line 1907: FND_MSG_PUB.Count_And_Get(

1903: OZF_UTILITY_PVT.debug_message('Private API: ' || l_api_name || 'end');
1904: END IF;
1905:
1906: -- Standard call to get message count and if count is 1, get message info.
1907: FND_MSG_PUB.Count_And_Get(
1908: p_count => x_msg_count,
1909: p_data => x_msg_data
1910: );
1911:

Line 1921: FND_MSG_PUB.Count_And_Get (

1917: WHEN FND_API.G_EXC_ERROR THEN
1918: ROLLBACK TO VALIDATE_Claim_Line_Hist_;
1919: x_return_status := FND_API.G_RET_STS_ERROR;
1920: -- Standard call to get message count and if count=1, get the message
1921: FND_MSG_PUB.Count_And_Get (
1922: p_encoded => FND_API.G_FALSE,
1923: p_count => x_msg_count,
1924: p_data => x_msg_data
1925: );

Line 1931: FND_MSG_PUB.Count_And_Get (

1927: WHEN FND_API.G_EXC_UNEXPECTED_ERROR THEN
1928: ROLLBACK TO VALIDATE_Claim_Line_Hist_;
1929: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
1930: -- Standard call to get message count and if count=1, get the message
1931: FND_MSG_PUB.Count_And_Get (
1932: p_encoded => FND_API.G_FALSE,
1933: p_count => x_msg_count,
1934: p_data => x_msg_data
1935: );

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

1936:
1937: WHEN OTHERS THEN
1938: ROLLBACK TO VALIDATE_Claim_Line_Hist_;
1939: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
1940: IF FND_MSG_PUB.Check_Msg_Level (FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR) THEN
1941: FND_MSG_PUB.Add_Exc_Msg(G_PKG_NAME,l_api_name);
1942: END IF;
1943: -- Standard call to get message count and if count=1, get the message
1944: FND_MSG_PUB.Count_And_Get (

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

1937: WHEN OTHERS THEN
1938: ROLLBACK TO VALIDATE_Claim_Line_Hist_;
1939: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
1940: IF FND_MSG_PUB.Check_Msg_Level (FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR) THEN
1941: FND_MSG_PUB.Add_Exc_Msg(G_PKG_NAME,l_api_name);
1942: END IF;
1943: -- Standard call to get message count and if count=1, get the message
1944: FND_MSG_PUB.Count_And_Get (
1945: p_encoded => FND_API.G_FALSE,

Line 1944: FND_MSG_PUB.Count_And_Get (

1940: IF FND_MSG_PUB.Check_Msg_Level (FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR) THEN
1941: FND_MSG_PUB.Add_Exc_Msg(G_PKG_NAME,l_api_name);
1942: END IF;
1943: -- Standard call to get message count and if count=1, get the message
1944: FND_MSG_PUB.Count_And_Get (
1945: p_encoded => FND_API.G_FALSE,
1946: p_count => x_msg_count,
1947: p_data => x_msg_data
1948: );

Line 1965: FND_MSG_PUB.initialize;

1961: IS
1962: BEGIN
1963: -- Initialize message list if p_init_msg_list is set to TRUE.
1964: IF FND_API.to_Boolean( p_init_msg_list ) THEN
1965: FND_MSG_PUB.initialize;
1966: END IF;
1967:
1968: -- Initialize API return status to SUCCESS
1969: x_return_status := FND_API.G_RET_STS_SUCCESS;

Line 1981: FND_MSG_PUB.Count_And_Get(

1977: IF g_debug THEN
1978: OZF_UTILITY_PVT.debug_message('Private API: Validate_dm_model_rec');
1979: END IF;
1980: -- Standard call to get message count and if count is 1, get message info.
1981: FND_MSG_PUB.Count_And_Get(
1982: p_count => x_msg_count,
1983: p_data => x_msg_data
1984: );
1985: END Validate_claim_line_hist_Rec;