DBA Data[Home] [Help]

APPS.AMS_CONTACT_PREFERENCE_PVT dependencies on FND_MSG_PUB

Line 27: AMS_DEBUG_HIGH_ON boolean := FND_MSG_PUB.CHECK_MSG_LEVEL(FND_MSG_PUB.G_MSG_LVL_DEBUG_HIGH);

23: G_LOGIN_ID NUMBER := FND_GLOBAL.CONC_LOGIN_ID;
24: */
25:
26: -- Hint: Primary key needs to be returned.
27: AMS_DEBUG_HIGH_ON boolean := FND_MSG_PUB.CHECK_MSG_LEVEL(FND_MSG_PUB.G_MSG_LVL_DEBUG_HIGH);
28: AMS_DEBUG_LOW_ON boolean := FND_MSG_PUB.CHECK_MSG_LEVEL(FND_MSG_PUB.G_MSG_LVL_DEBUG_LOW);
29: AMS_DEBUG_MEDIUM_ON boolean := FND_MSG_PUB.CHECK_MSG_LEVEL(FND_MSG_PUB.G_MSG_LVL_DEBUG_MEDIUM);
30:
31: PROCEDURE create_contact_preference(

Line 28: AMS_DEBUG_LOW_ON boolean := FND_MSG_PUB.CHECK_MSG_LEVEL(FND_MSG_PUB.G_MSG_LVL_DEBUG_LOW);

24: */
25:
26: -- Hint: Primary key needs to be returned.
27: AMS_DEBUG_HIGH_ON boolean := FND_MSG_PUB.CHECK_MSG_LEVEL(FND_MSG_PUB.G_MSG_LVL_DEBUG_HIGH);
28: AMS_DEBUG_LOW_ON boolean := FND_MSG_PUB.CHECK_MSG_LEVEL(FND_MSG_PUB.G_MSG_LVL_DEBUG_LOW);
29: AMS_DEBUG_MEDIUM_ON boolean := FND_MSG_PUB.CHECK_MSG_LEVEL(FND_MSG_PUB.G_MSG_LVL_DEBUG_MEDIUM);
30:
31: PROCEDURE create_contact_preference(
32: p_api_version_number IN NUMBER,

Line 29: AMS_DEBUG_MEDIUM_ON boolean := FND_MSG_PUB.CHECK_MSG_LEVEL(FND_MSG_PUB.G_MSG_LVL_DEBUG_MEDIUM);

25:
26: -- Hint: Primary key needs to be returned.
27: AMS_DEBUG_HIGH_ON boolean := FND_MSG_PUB.CHECK_MSG_LEVEL(FND_MSG_PUB.G_MSG_LVL_DEBUG_HIGH);
28: AMS_DEBUG_LOW_ON boolean := FND_MSG_PUB.CHECK_MSG_LEVEL(FND_MSG_PUB.G_MSG_LVL_DEBUG_LOW);
29: AMS_DEBUG_MEDIUM_ON boolean := FND_MSG_PUB.CHECK_MSG_LEVEL(FND_MSG_PUB.G_MSG_LVL_DEBUG_MEDIUM);
30:
31: PROCEDURE create_contact_preference(
32: p_api_version_number IN NUMBER,
33: p_init_msg_list IN VARCHAR2 := FND_API.G_FALSE,

Line 77: FND_MSG_PUB.initialize;

73:
74: -- Initialize message list if p_init_msg_list is set to TRUE.
75: IF FND_API.to_Boolean( p_init_msg_list )
76: THEN
77: FND_MSG_PUB.initialize;
78: END IF;
79:
80: -- Debug Message
81: IF (AMS_DEBUG_HIGH_ON) THEN

Line 171: FND_MSG_PUB.Count_And_Get

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

Line 185: FND_MSG_PUB.Count_And_Get (

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

Line 195: FND_MSG_PUB.Count_And_Get (

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

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

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

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

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

Line 209: FND_MSG_PUB.Count_And_Get (

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

Line 261: FND_MSG_PUB.initialize;

257:
258: -- Initialize message list if p_init_msg_list is set to TRUE.
259: IF FND_API.to_Boolean( p_init_msg_list )
260: THEN
261: FND_MSG_PUB.initialize;
262: END IF;
263:
264: -- Debug Message
265: IF (AMS_DEBUG_HIGH_ON) THEN

Line 333: FND_MSG_PUB.Count_And_Get

329: AMS_UTILITY_PVT.debug_message('Private API: ' || l_api_name || 'end');
330: END IF;
331:
332: -- Standard call to get message count and if count is 1, get message info.
333: FND_MSG_PUB.Count_And_Get
334: (p_count => x_msg_count,
335: p_data => x_msg_data
336: );
337: EXCEPTION

Line 347: FND_MSG_PUB.Count_And_Get (

343: WHEN FND_API.G_EXC_ERROR THEN
344: ROLLBACK TO UPDATE_CONTACT_PREFERENCE_PVT;
345: x_return_status := FND_API.G_RET_STS_ERROR;
346: -- Standard call to get message count and if count=1, get the message
347: FND_MSG_PUB.Count_And_Get (
348: p_encoded => FND_API.G_FALSE,
349: p_count => x_msg_count,
350: p_data => x_msg_data
351: );

Line 357: FND_MSG_PUB.Count_And_Get (

353: WHEN FND_API.G_EXC_UNEXPECTED_ERROR THEN
354: ROLLBACK TO UPDATE_CONTACT_PREFERENCE_PVT;
355: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
356: -- Standard call to get message count and if count=1, get the message
357: FND_MSG_PUB.Count_And_Get (
358: p_encoded => FND_API.G_FALSE,
359: p_count => x_msg_count,
360: p_data => x_msg_data
361: );

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

362:
363: WHEN OTHERS THEN
364: ROLLBACK TO UPDATE_CONTACT_PREFERENCE_PVT;
365: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
366: IF FND_MSG_PUB.Check_Msg_Level ( FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
367: THEN
368: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
369: END IF;
370: -- Standard call to get message count and if count=1, get the message

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

364: ROLLBACK TO UPDATE_CONTACT_PREFERENCE_PVT;
365: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
366: IF FND_MSG_PUB.Check_Msg_Level ( FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
367: THEN
368: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
369: END IF;
370: -- Standard call to get message count and if count=1, get the message
371: FND_MSG_PUB.Count_And_Get (
372: p_encoded => FND_API.G_FALSE,

Line 371: FND_MSG_PUB.Count_And_Get (

367: THEN
368: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
369: END IF;
370: -- Standard call to get message count and if count=1, get the message
371: FND_MSG_PUB.Count_And_Get (
372: p_encoded => FND_API.G_FALSE,
373: p_count => x_msg_count,
374: p_data => x_msg_data
375: );