DBA Data[Home] [Help]

APPS.AMS_ITEM_SECTION_PVT dependencies on FND_MSG_PUB

Line 72: FND_MSG_PUB.initialize;

68:
69: -- Initialize message list if p_init_msg_list is set to TRUE.
70: IF FND_API.to_Boolean( p_init_msg_list )
71: THEN
72: FND_MSG_PUB.initialize;
73: END IF;
74:
75: -- Debug Message
76: AMS_UTILITY_PVT.debug_message('Private API: ' || l_api_name || 'start');

Line 88: IF FND_MSG_PUB.Check_Msg_Level (FND_MSG_PUB.G_MSG_LVL_ERROR)

84: -- Validate Environment
85: -- ******************************************************************
86: IF FND_GLOBAL.User_Id IS NULL
87: THEN
88: IF FND_MSG_PUB.Check_Msg_Level (FND_MSG_PUB.G_MSG_LVL_ERROR)
89: THEN
90: FND_MESSAGE.Set_Name('AMS', 'USER_PROFILE_MISSING');
91: FND_MSG_PUB.ADD;
92: END IF;

Line 91: FND_MSG_PUB.ADD;

87: THEN
88: IF FND_MSG_PUB.Check_Msg_Level (FND_MSG_PUB.G_MSG_LVL_ERROR)
89: THEN
90: FND_MESSAGE.Set_Name('AMS', 'USER_PROFILE_MISSING');
91: FND_MSG_PUB.ADD;
92: END IF;
93: RAISE FND_API.G_EXC_ERROR;
94: END IF;
95:

Line 156: FND_MSG_PUB.Count_And_Get

152: -- Debug Message
153: AMS_UTILITY_PVT.debug_message('Private API: ' || l_api_name || 'end');
154:
155: -- Standard call to get message count and if count is 1, get message info.
156: FND_MSG_PUB.Count_And_Get
157: (p_count => x_msg_count,
158: p_data => x_msg_data
159: );
160: EXCEPTION

Line 165: FND_MSG_PUB.Count_And_Get (

161: WHEN FND_API.G_EXC_ERROR THEN
162: ROLLBACK TO Create_Item_Sec_Assoc;
163: x_return_status := FND_API.G_RET_STS_ERROR;
164: -- Standard call to get message count and if count=1, get the message
165: FND_MSG_PUB.Count_And_Get (
166: p_encoded => FND_API.G_FALSE,
167: p_count => x_msg_count,
168: p_data => x_msg_data
169: );

Line 174: FND_MSG_PUB.Count_And_Get (

170: WHEN FND_API.G_EXC_UNEXPECTED_ERROR THEN
171: ROLLBACK TO Create_Item_Sec_Assoc;
172: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
173: -- Standard call to get message count and if count=1, get the message
174: FND_MSG_PUB.Count_And_Get (
175: p_encoded => FND_API.G_FALSE,
176: p_count => x_msg_count,
177: p_data => x_msg_data
178: );

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

178: );
179: WHEN OTHERS THEN
180: ROLLBACK TO Create_Item_Sec_Assoc;
181: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
182: IF FND_MSG_PUB.Check_Msg_Level ( FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
183: THEN
184: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
185: END IF;
186: -- Standard call to get message count and if count=1, get the message

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

180: ROLLBACK TO Create_Item_Sec_Assoc;
181: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
182: IF FND_MSG_PUB.Check_Msg_Level ( FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
183: THEN
184: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
185: END IF;
186: -- Standard call to get message count and if count=1, get the message
187: FND_MSG_PUB.Count_And_Get (
188: p_encoded => FND_API.G_FALSE,

Line 187: FND_MSG_PUB.Count_And_Get (

183: THEN
184: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
185: END IF;
186: -- Standard call to get message count and if count=1, get the message
187: FND_MSG_PUB.Count_And_Get (
188: p_encoded => FND_API.G_FALSE,
189: p_count => x_msg_count,
190: p_data => x_msg_data
191: );

Line 245: FND_MSG_PUB.initialize;

241:
242: -- Initialize message list if p_init_msg_list is set to TRUE.
243: IF FND_API.to_Boolean( p_init_msg_list )
244: THEN
245: FND_MSG_PUB.initialize;
246: END IF;
247:
248: -- Debug Message
249: -- AMS_UTILITY_PVT.debug_message('Private API: ' || l_api_name || 'start');

Line 261: IF FND_MSG_PUB.Check_Msg_Level (FND_MSG_PUB.G_MSG_LVL_ERROR)

257: -- Validate Environment
258: -- ******************************************************************
259: IF FND_GLOBAL.User_Id IS NULL
260: THEN
261: IF FND_MSG_PUB.Check_Msg_Level (FND_MSG_PUB.G_MSG_LVL_ERROR)
262: THEN
263: FND_MESSAGE.Set_Name('AMS', 'USER_PROFILE_MISSING');
264: FND_MSG_PUB.ADD;
265: END IF;

Line 264: FND_MSG_PUB.ADD;

260: THEN
261: IF FND_MSG_PUB.Check_Msg_Level (FND_MSG_PUB.G_MSG_LVL_ERROR)
262: THEN
263: FND_MESSAGE.Set_Name('AMS', 'USER_PROFILE_MISSING');
264: FND_MSG_PUB.ADD;
265: END IF;
266: RAISE FND_API.G_EXC_ERROR;
267: END IF;
268:

Line 310: FND_MSG_PUB.Count_And_Get

306: -- Debug Message
307: -- AMS_UTILITY_PVT.debug_message('Private API: ' || l_api_name || 'end');
308:
309: -- Standard call to get message count and if count is 1, get message info.
310: FND_MSG_PUB.Count_And_Get
311: (p_count => x_msg_count,
312: p_data => x_msg_data
313: );
314: EXCEPTION

Line 319: FND_MSG_PUB.Count_And_Get (

315: WHEN FND_API.G_EXC_ERROR THEN
316: ROLLBACK TO Delete_item_sec_assoc;
317: x_return_status := FND_API.G_RET_STS_ERROR;
318: -- Standard call to get message count and if count=1, get the message
319: FND_MSG_PUB.Count_And_Get (
320: p_encoded => FND_API.G_FALSE,
321: p_count => x_msg_count,
322: p_data => x_msg_data
323: );

Line 328: FND_MSG_PUB.Count_And_Get (

324: WHEN FND_API.G_EXC_UNEXPECTED_ERROR THEN
325: ROLLBACK TO Delete_item_sec_assoc;
326: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
327: -- Standard call to get message count and if count=1, get the message
328: FND_MSG_PUB.Count_And_Get (
329: p_encoded => FND_API.G_FALSE,
330: p_count => x_msg_count,
331: p_data => x_msg_data
332: );

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

332: );
333: WHEN OTHERS THEN
334: ROLLBACK TO Delete_item_sec_assoc;
335: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
336: IF FND_MSG_PUB.Check_Msg_Level ( FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
337: THEN
338: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
339: END IF;
340: -- Standard call to get message count and if count=1, get the message

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

334: ROLLBACK TO Delete_item_sec_assoc;
335: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
336: IF FND_MSG_PUB.Check_Msg_Level ( FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
337: THEN
338: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
339: END IF;
340: -- Standard call to get message count and if count=1, get the message
341: FND_MSG_PUB.Count_And_Get (
342: p_encoded => FND_API.G_FALSE,

Line 341: FND_MSG_PUB.Count_And_Get (

337: THEN
338: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
339: END IF;
340: -- Standard call to get message count and if count=1, get the message
341: FND_MSG_PUB.Count_And_Get (
342: p_encoded => FND_API.G_FALSE,
343: p_count => x_msg_count,
344: p_data => x_msg_data
345: );