DBA Data[Home] [Help]

APPS.PV_EXT_ENTY_ATTR_VALUE_PVT dependencies on FND_MSG_PUB

Line 89: FND_MSG_PUB.initialize;

85:
86: -- Initialize message list if p_init_msg_list is set to TRUE.
87: IF FND_API.to_Boolean( p_init_msg_list )
88: THEN
89: FND_MSG_PUB.initialize;
90: END IF;
91:
92: -- Debug Message
93: IF (FND_MSG_PUB.Check_Msg_Level(FND_MSG_PUB.G_MSG_LVL_ERROR)) THEN

Line 93: IF (FND_MSG_PUB.Check_Msg_Level(FND_MSG_PUB.G_MSG_LVL_ERROR)) THEN

89: FND_MSG_PUB.initialize;
90: END IF;
91:
92: -- Debug Message
93: IF (FND_MSG_PUB.Check_Msg_Level(FND_MSG_PUB.G_MSG_LVL_ERROR)) THEN
94: PVX_Utility_PVT.debug_message('Private API: '||l_full_name||' - start');
95: END IF;
96:
97: -- Initialize API return status to SUCCESS

Line 164: IF (FND_MSG_PUB.Check_Msg_Level(FND_MSG_PUB.G_MSG_LVL_ERROR)) THEN

160: END IF;
161:
162:
163: -- Debug Message
164: IF (FND_MSG_PUB.Check_Msg_Level(FND_MSG_PUB.G_MSG_LVL_ERROR)) THEN
165: PVX_Utility_PVT.debug_message('Private API: '||l_full_name||' - end');
166: END IF;
167:
168: -- Standard call to get message count and if count is 1, get message info.

Line 169: FND_MSG_PUB.Count_And_Get (

165: PVX_Utility_PVT.debug_message('Private API: '||l_full_name||' - end');
166: END IF;
167:
168: -- Standard call to get message count and if count is 1, get message info.
169: FND_MSG_PUB.Count_And_Get (
170: p_count => x_msg_count
171: ,p_data => x_msg_data
172: );
173:

Line 184: FND_MSG_PUB.Count_And_Get (

180: WHEN FND_API.G_EXC_ERROR THEN
181: ROLLBACK TO Update_Customer_Anual_Revenue;
182: x_return_status := FND_API.G_RET_STS_ERROR;
183: -- Standard call to get message count and if count=1, get the message
184: FND_MSG_PUB.Count_And_Get (
185: p_encoded => FND_API.G_FALSE
186: ,p_count => x_msg_count
187: ,p_data => x_msg_data
188: );

Line 194: FND_MSG_PUB.Count_And_Get (

190: WHEN FND_API.G_EXC_UNEXPECTED_ERROR THEN
191: ROLLBACK TO Update_Customer_Anual_Revenue;
192: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
193: -- Standard call to get message count and if count=1, get the message
194: FND_MSG_PUB.Count_And_Get (
195: p_encoded => FND_API.G_FALSE
196: ,p_count => x_msg_count
197: ,p_data => x_msg_data
198: );

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

199:
200: WHEN OTHERS THEN
201: ROLLBACK TO Update_Customer_Anual_Revenue;
202: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
203: IF FND_MSG_PUB.Check_Msg_Level ( FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
204: THEN
205: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
206: END IF;
207: -- Standard call to get message count and if count=1, get the message

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

201: ROLLBACK TO Update_Customer_Anual_Revenue;
202: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
203: IF FND_MSG_PUB.Check_Msg_Level ( FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
204: THEN
205: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
206: END IF;
207: -- Standard call to get message count and if count=1, get the message
208: FND_MSG_PUB.Count_And_Get (
209: p_encoded => FND_API.G_FALSE

Line 208: FND_MSG_PUB.Count_And_Get (

204: THEN
205: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
206: END IF;
207: -- Standard call to get message count and if count=1, get the message
208: FND_MSG_PUB.Count_And_Get (
209: p_encoded => FND_API.G_FALSE
210: ,p_count => x_msg_count
211: ,p_data => x_msg_data
212: );