DBA Data[Home] [Help]

APPS.BIM_I_LEAD_FACTS_PKG dependencies on FND_MSG_PUB

Line 128: FND_MSG_PUB.initialize;

124:
125: -- Initialize message list if p_init_msg_list is set to TRUE.
126: IF FND_API.to_Boolean( p_init_msg_list )
127: THEN
128: FND_MSG_PUB.initialize;
129: END IF;
130:
131: -- Initialize API return status to SUCCESS
132: x_return_status := FND_API.G_RET_STS_SUCCESS;

Line 220: FND_MSG_PUB.Count_And_Get

216: COMMIT;
217:
218:
219: -- Standard call to get message count and if count is 1, get message info.
220: FND_MSG_PUB.Count_And_Get
221: (p_count => x_msg_count,
222: p_data => x_msg_data
223: );
224:

Line 230: FND_msg_PUB.Count_And_Get (

226:
227: WHEN FND_API.G_EXC_ERROR THEN
228: x_return_status := FND_API.G_RET_STS_ERROR;
229: -- Standard call to get message count and if count=1, get the message
230: FND_msg_PUB.Count_And_Get (
231: -- p_encoded => FND_API.G_FALSE,
232: p_count => x_msg_count,
233: p_data => x_msg_data
234: );

Line 241: l_mesg_text := fnd_msg_pub.get (p_encoded => fnd_api.g_false);

237: WHEN FND_API.G_EXC_UNEXPECTED_ERROR THEN
238:
239: /* FOR l_counter IN 1 .. x_msg_count
240: LOOP
241: l_mesg_text := fnd_msg_pub.get (p_encoded => fnd_api.g_false);
242: fnd_msg_pub.dump_msg(l_counter);
243: end loop; */
244:
245: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;

Line 242: fnd_msg_pub.dump_msg(l_counter);

238:
239: /* FOR l_counter IN 1 .. x_msg_count
240: LOOP
241: l_mesg_text := fnd_msg_pub.get (p_encoded => fnd_api.g_false);
242: fnd_msg_pub.dump_msg(l_counter);
243: end loop; */
244:
245: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
246: -- Standard call to get message count and if count=1, get the message

Line 247: FND_msg_PUB.Count_And_Get (

243: end loop; */
244:
245: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
246: -- Standard call to get message count and if count=1, get the message
247: FND_msg_PUB.Count_And_Get (
248: --p_encoded => FND_API.G_FALSE,
249: p_count => x_msg_count,
250: p_data => x_msg_data
251: );

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

251: );
252:
253: WHEN OTHERS THEN
254: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
255: IF FND_msg_PUB.Check_msg_Level ( FND_msg_PUB.G_msg_LVL_UNEXP_ERROR)
256: THEN
257: FND_msg_PUB.Add_Exc_msg( g_pkg_name,l_api_name);
258: END IF;
259: -- Standard call to get message count and if count=1, get the message

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

253: WHEN OTHERS THEN
254: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
255: IF FND_msg_PUB.Check_msg_Level ( FND_msg_PUB.G_msg_LVL_UNEXP_ERROR)
256: THEN
257: FND_msg_PUB.Add_Exc_msg( g_pkg_name,l_api_name);
258: END IF;
259: -- Standard call to get message count and if count=1, get the message
260: FND_msg_PUB.Count_And_Get (
261: -- p_encoded => FND_API.G_FALSE,

Line 260: FND_msg_PUB.Count_And_Get (

256: THEN
257: FND_msg_PUB.Add_Exc_msg( g_pkg_name,l_api_name);
258: END IF;
259: -- Standard call to get message count and if count=1, get the message
260: FND_msg_PUB.Count_And_Get (
261: -- p_encoded => FND_API.G_FALSE,
262: p_count => x_msg_count,
263: p_data => x_msg_data
264: );

Line 330: FND_msg_PUB.initialize;

326:
327: -- Initialize message list if p_init_msg_list is set to TRUE.
328: IF FND_API.to_Boolean( p_init_msg_list )
329: THEN
330: FND_msg_PUB.initialize;
331: END IF;
332:
333: -- Initialize API return status to SUCCESS
334: x_return_status := FND_API.G_RET_STS_SUCCESS;

Line 786: FND_msg_PUB.Count_And_Get (

782:
783: WHEN FND_API.G_EXC_ERROR THEN
784: x_return_status := FND_API.G_RET_STS_ERROR;
785: -- Standard call to get message count and if count=1, get the message
786: FND_msg_PUB.Count_And_Get (
787: -- p_encoded => FND_API.G_FALSE,
788: p_count => x_msg_count,
789: p_data => x_msg_data
790: );

Line 799: FND_msg_PUB.Count_And_Get (

795:
796: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
797:
798: -- Standard call to get message count and if count=1, get the message
799: FND_msg_PUB.Count_And_Get (
800: --p_encoded => FND_API.G_FALSE,
801: p_count => x_msg_count,
802: p_data => x_msg_data
803: );

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

807: WHEN OTHERS THEN
808:
809: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
810:
811: IF FND_msg_PUB.Check_msg_Level (FND_msg_PUB.G_msg_LVL_UNEXP_ERROR)
812: THEN
813: FND_msg_PUB.Add_Exc_msg( g_pkg_name,l_api_name);
814: END IF;
815:

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

809: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
810:
811: IF FND_msg_PUB.Check_msg_Level (FND_msg_PUB.G_msg_LVL_UNEXP_ERROR)
812: THEN
813: FND_msg_PUB.Add_Exc_msg( g_pkg_name,l_api_name);
814: END IF;
815:
816: -- Standard call to get message count and if count=1, get the message
817: FND_msg_PUB.Count_And_Get (

Line 817: FND_msg_PUB.Count_And_Get (

813: FND_msg_PUB.Add_Exc_msg( g_pkg_name,l_api_name);
814: END IF;
815:
816: -- Standard call to get message count and if count=1, get the message
817: FND_msg_PUB.Count_And_Get (
818: -- p_encoded => FND_API.G_FALSE,
819: p_count => x_msg_count,
820: p_data => x_msg_data
821: );

Line 887: FND_msg_PUB.initialize;

883:
884: -- Initialize message list if p_init_msg_list is set to TRUE.
885: IF FND_API.to_Boolean( p_init_msg_list )
886: THEN
887: FND_msg_PUB.initialize;
888: END IF;
889:
890: -- Initialize API return status to SUCCESS
891: x_return_status := FND_API.G_RET_STS_SUCCESS;

Line 1506: FND_msg_PUB.Count_And_Get (

1502:
1503: WHEN FND_API.G_EXC_ERROR THEN
1504: x_return_status := FND_API.G_RET_STS_ERROR;
1505: -- Standard call to get message count and if count=1, get the message
1506: FND_msg_PUB.Count_And_Get (
1507: -- p_encoded => FND_API.G_FALSE,
1508: p_count => x_msg_count,
1509: p_data => x_msg_data
1510: );

Line 1519: FND_msg_PUB.Count_And_Get (

1515:
1516: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
1517:
1518: -- Standard call to get message count and if count=1, get the message
1519: FND_msg_PUB.Count_And_Get (
1520: --p_encoded => FND_API.G_FALSE,
1521: p_count => x_msg_count,
1522: p_data => x_msg_data
1523: );

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

1527: WHEN OTHERS THEN
1528:
1529: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
1530:
1531: IF FND_msg_PUB.Check_msg_Level (FND_msg_PUB.G_msg_LVL_UNEXP_ERROR)
1532: THEN
1533: FND_msg_PUB.Add_Exc_msg( g_pkg_name,l_api_name);
1534: END IF;
1535:

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

1529: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
1530:
1531: IF FND_msg_PUB.Check_msg_Level (FND_msg_PUB.G_msg_LVL_UNEXP_ERROR)
1532: THEN
1533: FND_msg_PUB.Add_Exc_msg( g_pkg_name,l_api_name);
1534: END IF;
1535:
1536: -- Standard call to get message count and if count=1, get the message
1537: FND_msg_PUB.Count_And_Get (

Line 1537: FND_msg_PUB.Count_And_Get (

1533: FND_msg_PUB.Add_Exc_msg( g_pkg_name,l_api_name);
1534: END IF;
1535:
1536: -- Standard call to get message count and if count=1, get the message
1537: FND_msg_PUB.Count_And_Get (
1538: -- p_encoded => FND_API.G_FALSE,
1539: p_count => x_msg_count,
1540: p_data => x_msg_data
1541: );