DBA Data[Home] [Help]

APPS.IBE_ATP_PVT dependencies on FND_MSG_PUB

Line 75: FND_MSG_PUB.Initialize;

71: END IF;
72:
73: -- Always initialize API return message list:
74: --
75: FND_MSG_PUB.Initialize;
76:
77: -- Capture sysdate to be used as default need-by date:
78: --
79: -- Changed for performace

Line 274: FND_MSG_PUB.Count_And_Get(p_encoded => FND_API.G_FALSE,

270:
271: WHEN FND_API.G_EXC_ERROR THEN
272: x_error_flag := 'Y';
273: x_error_message := null;--'ASO_ATP_INT internal error. ';
274: FND_MSG_PUB.Count_And_Get(p_encoded => FND_API.G_FALSE,
275: p_count => l_msg_count,
276: p_data => l_msg_data);
277: IF l_msg_count > 1 THEN
278: LOOP

Line 279: l_error_message := FND_MSG_PUB.Get(p_encoded => FND_API.G_FALSE);

275: p_count => l_msg_count,
276: p_data => l_msg_data);
277: IF l_msg_count > 1 THEN
278: LOOP
279: l_error_message := FND_MSG_PUB.Get(p_encoded => FND_API.G_FALSE);
280: IF l_error_message IS NULL THEN
281: EXIT;
282: ELSE
283: x_error_message := x_error_message||l_error_message||' ';

Line 293: FND_MSG_PUB.Count_And_Get(p_encoded => FND_API.G_FALSE,

289:
290: WHEN FND_API.G_EXC_UNEXPECTED_ERROR THEN
291: x_error_flag := 'Y';
292: x_error_message := 'ASO_ATP_INT unexpected internal error. ';
293: FND_MSG_PUB.Count_And_Get(p_encoded => FND_API.G_FALSE,
294: p_count => l_msg_count,
295: p_data => l_msg_data);
296: IF l_msg_count > 1 THEN
297: LOOP

Line 298: l_error_message := FND_MSG_PUB.Get(p_encoded => FND_API.G_FALSE);

294: p_count => l_msg_count,
295: p_data => l_msg_data);
296: IF l_msg_count > 1 THEN
297: LOOP
298: l_error_message := FND_MSG_PUB.Get(p_encoded => FND_API.G_FALSE);
299: IF l_error_message IS NULL THEN
300: EXIT;
301: ELSE
302: x_error_message := x_error_message||l_error_message||' ';

Line 316: FND_MSG_PUB.Add;

312: FND_MESSAGE.Set_Name('FND', 'SQL_PLSQL_ERROR');
313: FND_MESSAGE.Set_Token('ROUTINE', c_api_name);
314: FND_MESSAGE.Set_Token('ERRNO', SQLCODE);
315: FND_MESSAGE.Set_Token('REASON', SQLERRM);
316: FND_MSG_PUB.Add;
317: IF FND_MSG_PUB.Check_Msg_Level(FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR) THEN
318: FND_MSG_PUB.Add_Exc_Msg(g_pkg_name, c_api_name);
319: END IF;
320: FND_MSG_PUB.Count_And_Get(p_encoded => FND_API.G_FALSE,

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

313: FND_MESSAGE.Set_Token('ROUTINE', c_api_name);
314: FND_MESSAGE.Set_Token('ERRNO', SQLCODE);
315: FND_MESSAGE.Set_Token('REASON', SQLERRM);
316: FND_MSG_PUB.Add;
317: IF FND_MSG_PUB.Check_Msg_Level(FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR) THEN
318: FND_MSG_PUB.Add_Exc_Msg(g_pkg_name, c_api_name);
319: END IF;
320: FND_MSG_PUB.Count_And_Get(p_encoded => FND_API.G_FALSE,
321: p_count => l_msg_count,

Line 318: FND_MSG_PUB.Add_Exc_Msg(g_pkg_name, c_api_name);

314: FND_MESSAGE.Set_Token('ERRNO', SQLCODE);
315: FND_MESSAGE.Set_Token('REASON', SQLERRM);
316: FND_MSG_PUB.Add;
317: IF FND_MSG_PUB.Check_Msg_Level(FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR) THEN
318: FND_MSG_PUB.Add_Exc_Msg(g_pkg_name, c_api_name);
319: END IF;
320: FND_MSG_PUB.Count_And_Get(p_encoded => FND_API.G_FALSE,
321: p_count => l_msg_count,
322: p_data => l_msg_data);

Line 320: FND_MSG_PUB.Count_And_Get(p_encoded => FND_API.G_FALSE,

316: FND_MSG_PUB.Add;
317: IF FND_MSG_PUB.Check_Msg_Level(FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR) THEN
318: FND_MSG_PUB.Add_Exc_Msg(g_pkg_name, c_api_name);
319: END IF;
320: FND_MSG_PUB.Count_And_Get(p_encoded => FND_API.G_FALSE,
321: p_count => l_msg_count,
322: p_data => l_msg_data);
323: IF l_msg_count > 1 THEN
324: LOOP

Line 325: l_error_message := FND_MSG_PUB.Get(p_encoded => FND_API.G_FALSE);

321: p_count => l_msg_count,
322: p_data => l_msg_data);
323: IF l_msg_count > 1 THEN
324: LOOP
325: l_error_message := FND_MSG_PUB.Get(p_encoded => FND_API.G_FALSE);
326: IF l_error_message IS NULL THEN
327: EXIT;
328: ELSE
329: x_error_message := x_error_message||l_error_message||' ';