DBA Data[Home] [Help]

APPS.BIM_RESPONSE_FACTS_PKG dependencies on FND_MSG_PUB

Line 64: FND_MSG_PUB.initialize;

60:
61: -- Initialize message list if p_init_msg_list is set to TRUE.
62: IF FND_API.to_Boolean( p_init_msg_list )
63: THEN
64: FND_MSG_PUB.initialize;
65: END IF;
66:
67: -- Initialize API return status to SUCCESS
68: x_return_status := FND_API.G_RET_STS_SUCCESS;

Line 83: FND_MSG_PUB.Count_And_Get (

79: FETCH chk_history_data INTO l_end_date;
80: CLOSE chk_history_data;
81: EXCEPTION
82: WHEN OTHERS THEN
83: FND_MSG_PUB.Count_And_Get (
84: -- p_encoded => FND_API.G_FALSE,
85: p_count => x_msg_count,
86: p_data => x_msg_data
87: );

Line 169: FND_MSG_PUB.Count_And_Get

165: fnd_message.set_name('BIM','BIM_R_END_PROGRAM');
166: fnd_file.put_line(fnd_file.log,fnd_message.get);
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 179: FND_msg_PUB.Count_And_Get (

175:
176: WHEN FND_API.G_EXC_ERROR THEN
177: x_return_status := FND_API.G_RET_STS_ERROR;
178: -- Standard call to get message count and if count=1, get the message
179: FND_msg_PUB.Count_And_Get (
180: -- p_encoded => FND_API.G_FALSE,
181: p_count => x_msg_count,
182: p_data => x_msg_data
183: );

Line 190: FND_msg_PUB.Count_And_Get (

186: WHEN FND_API.G_EXC_UNEXPECTED_ERROR THEN
187:
188: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
189: -- Standard call to get message count and if count=1, get the message
190: FND_msg_PUB.Count_And_Get (
191: --p_encoded => FND_API.G_FALSE,
192: p_count => x_msg_count,
193: p_data => x_msg_data
194: );

Line 198: IF FND_msg_PUB.Check_msg_Level ( FND_msg_PUB.G_msg_LVL_UNEXP_ERROR)

194: );
195:
196: WHEN OTHERS THEN
197: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
198: IF FND_msg_PUB.Check_msg_Level ( FND_msg_PUB.G_msg_LVL_UNEXP_ERROR)
199: THEN
200: FND_msg_PUB.Add_Exc_msg( g_pkg_name,l_api_name);
201: END IF;
202: -- Standard call to get message count and if count=1, get the message

Line 200: FND_msg_PUB.Add_Exc_msg( g_pkg_name,l_api_name);

196: WHEN OTHERS THEN
197: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
198: IF FND_msg_PUB.Check_msg_Level ( FND_msg_PUB.G_msg_LVL_UNEXP_ERROR)
199: THEN
200: FND_msg_PUB.Add_Exc_msg( g_pkg_name,l_api_name);
201: END IF;
202: -- Standard call to get message count and if count=1, get the message
203: FND_msg_PUB.Count_And_Get (
204: -- p_encoded => FND_API.G_FALSE,

Line 203: FND_msg_PUB.Count_And_Get (

199: THEN
200: FND_msg_PUB.Add_Exc_msg( g_pkg_name,l_api_name);
201: END IF;
202: -- Standard call to get message count and if count=1, get the message
203: FND_msg_PUB.Count_And_Get (
204: -- p_encoded => FND_API.G_FALSE,
205: p_count => x_msg_count,
206: p_data => x_msg_data
207: );

Line 249: FND_msg_PUB.initialize;

245:
246: -- Initialize message list if p_init_msg_list is set to TRUE.
247: IF FND_API.to_Boolean( p_init_msg_list )
248: THEN
249: FND_msg_PUB.initialize;
250: END IF;
251:
252: -- Initialize API return status to SUCCESS
253: x_return_status := FND_API.G_RET_STS_SUCCESS;

Line 276: FND_msg_PUB.Count_And_Get

272: p_start_date,
273: p_end_date);
274:
275: /* -- Standard call to get message count and if count is 1, get message info.
276: FND_msg_PUB.Count_And_Get
277: (p_count => x_msg_count,
278: p_data => x_msg_data
279: );
280: EXCEPTION

Line 285: FND_msg_PUB.Count_And_Get (

281:
282: WHEN FND_API.G_EXC_ERROR THEN
283: x_return_status := FND_API.G_RET_STS_ERROR;
284: -- Standard call to get message count and if count=1, get the message
285: FND_msg_PUB.Count_And_Get (
286: -- p_encoded => FND_API.G_FALSE,
287: p_count => x_msg_count,
288: p_data => x_msg_data
289: );

Line 294: FND_msg_PUB.Count_And_Get (

290:
291: WHEN FND_API.G_EXC_UNEXPECTED_ERROR THEN
292: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
293: -- Standard call to get message count and if count=1, get the message
294: FND_msg_PUB.Count_And_Get (
295: --p_encoded => FND_API.G_FALSE,
296: p_count => x_msg_count,
297: p_data => x_msg_data
298: );

Line 302: IF FND_msg_PUB.Check_msg_Level ( FND_msg_PUB.G_msg_LVL_UNEXP_ERROR)

298: );
299:
300: WHEN OTHERS THEN
301: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
302: IF FND_msg_PUB.Check_msg_Level ( FND_msg_PUB.G_msg_LVL_UNEXP_ERROR)
303: THEN
304: FND_msg_PUB.Add_Exc_msg( g_pkg_name,l_api_name);
305: END IF;
306: -- Standard call to get message count and if count=1, get the message

Line 304: FND_msg_PUB.Add_Exc_msg( g_pkg_name,l_api_name);

300: WHEN OTHERS THEN
301: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
302: IF FND_msg_PUB.Check_msg_Level ( FND_msg_PUB.G_msg_LVL_UNEXP_ERROR)
303: THEN
304: FND_msg_PUB.Add_Exc_msg( g_pkg_name,l_api_name);
305: END IF;
306: -- Standard call to get message count and if count=1, get the message
307: FND_msg_PUB.Count_And_Get (
308: -- p_encoded => FND_API.G_FALSE,

Line 307: FND_msg_PUB.Count_And_Get (

303: THEN
304: FND_msg_PUB.Add_Exc_msg( g_pkg_name,l_api_name);
305: END IF;
306: -- Standard call to get message count and if count=1, get the message
307: FND_msg_PUB.Count_And_Get (
308: -- p_encoded => FND_API.G_FALSE,
309: p_count => x_msg_count,
310: p_data => x_msg_data
311: );

Line 395: FND_msg_PUB.initialize;

391:
392: -- Initialize message list if p_init_msg_list is set to TRUE.
393: IF FND_API.to_Boolean( p_init_msg_list )
394: THEN
395: FND_msg_PUB.initialize;
396: END IF;
397:
398: -- Initialize API return status to SUCCESS
399: x_return_status := FND_API.G_RET_STS_SUCCESS;

Line 825: FND_msg_PUB.Count_And_Get (

821:
822: WHEN FND_API.G_EXC_ERROR THEN
823: x_return_status := FND_API.G_RET_STS_ERROR;
824: -- Standard call to get message count and if count=1, get the message
825: FND_msg_PUB.Count_And_Get (
826: -- p_encoded => FND_API.G_FALSE,
827: p_count => x_msg_count,
828: p_data => x_msg_data
829: );

Line 838: FND_msg_PUB.Count_And_Get (

834:
835: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
836:
837: -- Standard call to get message count and if count=1, get the message
838: FND_msg_PUB.Count_And_Get (
839: --p_encoded => FND_API.G_FALSE,
840: p_count => x_msg_count,
841: p_data => x_msg_data
842: );

Line 850: IF FND_msg_PUB.Check_msg_Level (FND_msg_PUB.G_msg_LVL_UNEXP_ERROR)

846: WHEN OTHERS THEN
847:
848: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
849:
850: IF FND_msg_PUB.Check_msg_Level (FND_msg_PUB.G_msg_LVL_UNEXP_ERROR)
851: THEN
852: FND_msg_PUB.Add_Exc_msg( g_pkg_name,l_api_name);
853: END IF;
854:

Line 852: FND_msg_PUB.Add_Exc_msg( g_pkg_name,l_api_name);

848: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
849:
850: IF FND_msg_PUB.Check_msg_Level (FND_msg_PUB.G_msg_LVL_UNEXP_ERROR)
851: THEN
852: FND_msg_PUB.Add_Exc_msg( g_pkg_name,l_api_name);
853: END IF;
854:
855: -- Standard call to get message count and if count=1, get the message
856: FND_msg_PUB.Count_And_Get (

Line 856: FND_msg_PUB.Count_And_Get (

852: FND_msg_PUB.Add_Exc_msg( g_pkg_name,l_api_name);
853: END IF;
854:
855: -- Standard call to get message count and if count=1, get the message
856: FND_msg_PUB.Count_And_Get (
857: -- p_encoded => FND_API.G_FALSE,
858: p_count => x_msg_count,
859: p_data => x_msg_data
860: );