DBA Data[Home] [Help]

APPS.PV_PARTNER_GEO_MATCH_PVT dependencies on FND_MSG_PUB

Line 60: PV_DEBUG_HIGH_ON CONSTANT boolean := FND_MSG_PUB.CHECK_MSG_LEVEL(FND_MSG_PUB.G_MSG_LVL_DEBUG_HIGH);

56: --
57: -- End of Comments
58: -- ==============================================================================
59:
60: PV_DEBUG_HIGH_ON CONSTANT boolean := FND_MSG_PUB.CHECK_MSG_LEVEL(FND_MSG_PUB.G_MSG_LVL_DEBUG_HIGH);
61: PV_DEBUG_LOW_ON CONSTANT boolean := FND_MSG_PUB.CHECK_MSG_LEVEL(FND_MSG_PUB.G_MSG_LVL_DEBUG_LOW);
62: PV_DEBUG_MEDIUM_ON CONSTANT boolean := FND_MSG_PUB.CHECK_MSG_LEVEL(FND_MSG_PUB.G_MSG_LVL_DEBUG_MEDIUM);
63:
64: PROCEDURE Get_Matched_Geo_Hierarchy_Id(

Line 61: PV_DEBUG_LOW_ON CONSTANT boolean := FND_MSG_PUB.CHECK_MSG_LEVEL(FND_MSG_PUB.G_MSG_LVL_DEBUG_LOW);

57: -- End of Comments
58: -- ==============================================================================
59:
60: PV_DEBUG_HIGH_ON CONSTANT boolean := FND_MSG_PUB.CHECK_MSG_LEVEL(FND_MSG_PUB.G_MSG_LVL_DEBUG_HIGH);
61: PV_DEBUG_LOW_ON CONSTANT boolean := FND_MSG_PUB.CHECK_MSG_LEVEL(FND_MSG_PUB.G_MSG_LVL_DEBUG_LOW);
62: PV_DEBUG_MEDIUM_ON CONSTANT boolean := FND_MSG_PUB.CHECK_MSG_LEVEL(FND_MSG_PUB.G_MSG_LVL_DEBUG_MEDIUM);
63:
64: PROCEDURE Get_Matched_Geo_Hierarchy_Id(
65: p_api_version_number IN NUMBER

Line 62: PV_DEBUG_MEDIUM_ON CONSTANT boolean := FND_MSG_PUB.CHECK_MSG_LEVEL(FND_MSG_PUB.G_MSG_LVL_DEBUG_MEDIUM);

58: -- ==============================================================================
59:
60: PV_DEBUG_HIGH_ON CONSTANT boolean := FND_MSG_PUB.CHECK_MSG_LEVEL(FND_MSG_PUB.G_MSG_LVL_DEBUG_HIGH);
61: PV_DEBUG_LOW_ON CONSTANT boolean := FND_MSG_PUB.CHECK_MSG_LEVEL(FND_MSG_PUB.G_MSG_LVL_DEBUG_LOW);
62: PV_DEBUG_MEDIUM_ON CONSTANT boolean := FND_MSG_PUB.CHECK_MSG_LEVEL(FND_MSG_PUB.G_MSG_LVL_DEBUG_MEDIUM);
63:
64: PROCEDURE Get_Matched_Geo_Hierarchy_Id(
65: p_api_version_number IN NUMBER
66: ,p_init_msg_list IN VARCHAR2 := FND_API.G_FALSE

Line 241: FND_MSG_PUB.initialize;

237:
238: -- Initialize message list if p_init_msg_list is set to TRUE.
239: IF FND_API.to_Boolean( p_init_msg_list )
240: THEN
241: FND_MSG_PUB.initialize;
242: END IF;
243:
244: -- Debug Message
245: IF (PV_DEBUG_HIGH_ON) THEN

Line 441: FND_MSG_PUB.Count_And_Get

437: PVX_UTILITY_PVT.debug_message('Private API: ' || l_api_name || ' - end');
438: END IF;
439:
440: -- Standard call to get message count and if count is 1, get message info.
441: FND_MSG_PUB.Count_And_Get
442: ( p_encoded => FND_API.G_FALSE,
443: p_count => x_msg_count,
444: p_data => x_msg_data
445: );

Line 454: Fnd_Msg_Pub.Count_And_Get (

450: ROLLBACK TO Get_Matched_Geo_Hierarchy_Id;
451: x_return_status := Fnd_Api.G_RET_STS_ERROR;
452:
453: -- Standard call to get message count and if count=1, get the message
454: Fnd_Msg_Pub.Count_And_Get (
455: p_encoded => Fnd_Api.G_FALSE
456: ,p_count => x_msg_count
457: ,p_data => x_msg_data
458: );

Line 464: Fnd_Msg_Pub.Count_And_Get (

460: WHEN Fnd_Api.G_EXC_UNEXPECTED_ERROR THEN
461: ROLLBACK TO Get_Matched_Geo_Hierarchy_Id;
462: x_return_status := Fnd_Api.G_RET_STS_UNEXP_ERROR;
463: -- Standard call to get message count and if count=1, get the message
464: Fnd_Msg_Pub.Count_And_Get (
465: p_encoded => Fnd_Api.G_FALSE
466: ,p_count => x_msg_count
467: ,p_data => x_msg_data
468: );

Line 473: IF Fnd_Msg_Pub.Check_Msg_Level ( Fnd_Msg_Pub.G_MSG_LVL_UNEXP_ERROR)

469:
470: WHEN OTHERS THEN
471: ROLLBACK TO Get_Matched_Geo_Hierarchy_Id;
472: x_return_status := Fnd_Api.G_RET_STS_UNEXP_ERROR;
473: IF Fnd_Msg_Pub.Check_Msg_Level ( Fnd_Msg_Pub.G_MSG_LVL_UNEXP_ERROR)
474: THEN
475: Fnd_Msg_Pub.Add_Exc_Msg( G_PKG_NAME,l_api_name);
476: END IF;
477: -- Standard call to get message count and if count=1, get the message

Line 475: Fnd_Msg_Pub.Add_Exc_Msg( G_PKG_NAME,l_api_name);

471: ROLLBACK TO Get_Matched_Geo_Hierarchy_Id;
472: x_return_status := Fnd_Api.G_RET_STS_UNEXP_ERROR;
473: IF Fnd_Msg_Pub.Check_Msg_Level ( Fnd_Msg_Pub.G_MSG_LVL_UNEXP_ERROR)
474: THEN
475: Fnd_Msg_Pub.Add_Exc_Msg( G_PKG_NAME,l_api_name);
476: END IF;
477: -- Standard call to get message count and if count=1, get the message
478: Fnd_Msg_Pub.Count_And_Get (
479: p_encoded => Fnd_Api.G_FALSE

Line 478: Fnd_Msg_Pub.Count_And_Get (

474: THEN
475: Fnd_Msg_Pub.Add_Exc_Msg( G_PKG_NAME,l_api_name);
476: END IF;
477: -- Standard call to get message count and if count=1, get the message
478: Fnd_Msg_Pub.Count_And_Get (
479: p_encoded => Fnd_Api.G_FALSE
480: ,p_count => x_msg_count
481: ,p_data => x_msg_data
482: );

Line 633: FND_MSG_PUB.initialize;

629:
630: -- Initialize message list if p_init_msg_list is set to TRUE.
631: IF FND_API.to_Boolean( p_init_msg_list )
632: THEN
633: FND_MSG_PUB.initialize;
634: END IF;
635:
636: -- Debug Message
637: IF (PV_DEBUG_HIGH_ON) THEN

Line 655: Fnd_Msg_Pub.Count_And_Get (

651: );
652: END LOOP;
653:
654: -- Standard call to get message count and if count=1, get the message
655: Fnd_Msg_Pub.Count_And_Get (
656: p_encoded => Fnd_Api.G_FALSE
657: ,p_count => x_msg_count
658: ,p_data => x_msg_data
659: );

Line 666: IF Fnd_Msg_Pub.Check_Msg_Level ( Fnd_Msg_Pub.G_MSG_LVL_UNEXP_ERROR)

662:
663: WHEN OTHERS THEN
664: ROLLBACK TO Get_Ptnr_Matched_Geo_Id;
665: x_return_status := Fnd_Api.G_RET_STS_UNEXP_ERROR;
666: IF Fnd_Msg_Pub.Check_Msg_Level ( Fnd_Msg_Pub.G_MSG_LVL_UNEXP_ERROR)
667: THEN
668: Fnd_Msg_Pub.Add_Exc_Msg( G_PKG_NAME,l_api_name);
669: END IF;
670: -- Standard call to get message count and if count=1, get the message

Line 668: Fnd_Msg_Pub.Add_Exc_Msg( G_PKG_NAME,l_api_name);

664: ROLLBACK TO Get_Ptnr_Matched_Geo_Id;
665: x_return_status := Fnd_Api.G_RET_STS_UNEXP_ERROR;
666: IF Fnd_Msg_Pub.Check_Msg_Level ( Fnd_Msg_Pub.G_MSG_LVL_UNEXP_ERROR)
667: THEN
668: Fnd_Msg_Pub.Add_Exc_Msg( G_PKG_NAME,l_api_name);
669: END IF;
670: -- Standard call to get message count and if count=1, get the message
671: Fnd_Msg_Pub.Count_And_Get (
672: p_encoded => Fnd_Api.G_FALSE

Line 671: Fnd_Msg_Pub.Count_And_Get (

667: THEN
668: Fnd_Msg_Pub.Add_Exc_Msg( G_PKG_NAME,l_api_name);
669: END IF;
670: -- Standard call to get message count and if count=1, get the message
671: Fnd_Msg_Pub.Count_And_Get (
672: p_encoded => Fnd_Api.G_FALSE
673: ,p_count => x_msg_count
674: ,p_data => x_msg_data
675: );

Line 726: FND_MSG_PUB.initialize;

722:
723: -- Initialize message list if p_init_msg_list is set to TRUE.
724: IF FND_API.to_Boolean( p_init_msg_list )
725: THEN
726: FND_MSG_PUB.initialize;
727: END IF;
728:
729: -- Debug Message
730: IF (PV_DEBUG_HIGH_ON) THEN

Line 748: Fnd_Msg_Pub.Count_And_Get (

744: );
745: END LOOP;
746:
747: -- Standard call to get message count and if count=1, get the message
748: Fnd_Msg_Pub.Count_And_Get (
749: p_encoded => Fnd_Api.G_FALSE
750: ,p_count => x_msg_count
751: ,p_data => x_msg_data
752: );

Line 759: IF Fnd_Msg_Pub.Check_Msg_Level ( Fnd_Msg_Pub.G_MSG_LVL_UNEXP_ERROR)

755:
756: WHEN OTHERS THEN
757: ROLLBACK TO Get_Ptnr_Org_Matched_Geo_Id;
758: x_return_status := Fnd_Api.G_RET_STS_UNEXP_ERROR;
759: IF Fnd_Msg_Pub.Check_Msg_Level ( Fnd_Msg_Pub.G_MSG_LVL_UNEXP_ERROR)
760: THEN
761: Fnd_Msg_Pub.Add_Exc_Msg( G_PKG_NAME,l_api_name);
762: END IF;
763: -- Standard call to get message count and if count=1, get the message

Line 761: Fnd_Msg_Pub.Add_Exc_Msg( G_PKG_NAME,l_api_name);

757: ROLLBACK TO Get_Ptnr_Org_Matched_Geo_Id;
758: x_return_status := Fnd_Api.G_RET_STS_UNEXP_ERROR;
759: IF Fnd_Msg_Pub.Check_Msg_Level ( Fnd_Msg_Pub.G_MSG_LVL_UNEXP_ERROR)
760: THEN
761: Fnd_Msg_Pub.Add_Exc_Msg( G_PKG_NAME,l_api_name);
762: END IF;
763: -- Standard call to get message count and if count=1, get the message
764: Fnd_Msg_Pub.Count_And_Get (
765: p_encoded => Fnd_Api.G_FALSE

Line 764: Fnd_Msg_Pub.Count_And_Get (

760: THEN
761: Fnd_Msg_Pub.Add_Exc_Msg( G_PKG_NAME,l_api_name);
762: END IF;
763: -- Standard call to get message count and if count=1, get the message
764: Fnd_Msg_Pub.Count_And_Get (
765: p_encoded => Fnd_Api.G_FALSE
766: ,p_count => x_msg_count
767: ,p_data => x_msg_data
768: );