DBA Data[Home] [Help]

APPS.BIM_LEAD_IMPORT_FACTS_PKG dependencies on FND_MSG_PUB

Line 62: FND_MSG_PUB.initialize;

58:
59: -- Initialize message list IF p_init_msg_list IS set to TRUE.
60: IF FND_API.to_Boolean( p_init_msg_list )
61: THEN
62: FND_MSG_PUB.initialize;
63: END IF;
64:
65: -- Debug Message
66: AMS_UTILITY_PVT.debug_message('Private API: ' || l_api_name || 'start');

Line 159: FND_msg_PUB.Count_And_Get

155: fnd_message.set_token('OBJECT_NAME', 'LEAD IMPORT', FALSE);
156: fnd_file.put_line(fnd_file.log,fnd_message.get);
157:
158: -- Standard call to get message count and IF count IS 1, get message info.
159: FND_msg_PUB.Count_And_Get
160: (p_count => x_msg_count,
161: p_data => x_msg_data
162: );
163: EXCEPTION

Line 168: FND_msg_PUB.Count_And_Get (

164:
165: WHEN FND_API.G_EXC_ERROR THEN
166: x_return_status := FND_API.G_RET_STS_ERROR;
167: -- Standard call to get message count and IF count=1, get the message
168: FND_msg_PUB.Count_And_Get (
169: -- p_encoded => FND_API.G_FALSE,
170: p_count => x_msg_count,
171: p_data => x_msg_data
172: );

Line 176: FND_msg_PUB.Count_And_Get (

172: );
173: WHEN FND_API.G_EXC_UNEXPECTED_ERROR THEN
174: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
175: -- Standard call to get message count and IF count=1, get the message
176: FND_msg_PUB.Count_And_Get (
177: --p_encoded => FND_API.G_FALSE,
178: p_count => x_msg_count,
179: p_data => x_msg_data
180: );

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

180: );
181:
182: WHEN OTHERS THEN
183: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
184: IF FND_msg_PUB.Check_msg_Level ( FND_msg_PUB.G_msg_LVL_UNEXP_ERROR)
185: THEN
186: FND_msg_PUB.Add_Exc_msg( G_PKG_NAME,l_api_name);
187: END IF;
188: -- Standard call to get message count and IF count=1, get the message

Line 186: FND_msg_PUB.Add_Exc_msg( G_PKG_NAME,l_api_name);

182: WHEN OTHERS THEN
183: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
184: IF FND_msg_PUB.Check_msg_Level ( FND_msg_PUB.G_msg_LVL_UNEXP_ERROR)
185: THEN
186: FND_msg_PUB.Add_Exc_msg( G_PKG_NAME,l_api_name);
187: END IF;
188: -- Standard call to get message count and IF count=1, get the message
189: FND_msg_PUB.Count_And_Get (
190: -- p_encoded => FND_API.G_FALSE,

Line 189: FND_msg_PUB.Count_And_Get (

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

Line 490: FND_MSG_PUB.Add;

486: EXECUTE IMMEDIATE 'ALTER sequence '||l_schema||'. bim_r_limp_daily_facts_s CACHE 20';
487: x_return_status := FND_API.G_RET_STS_ERROR;
488: FND_MESSAGE.Set_Name ('AMS', 'AMS_REP_INSERT_ERROR');
489: FND_MESSAGE.Set_token('table_name', p_table_name, FALSE);
490: FND_MSG_PUB.Add;
491: ams_utility_pvt.write_conc_log('LEAD IMPORT: EXCEPTION FOR FIRST INSERT. '||sqlerrm(sqlcode));
492: RAISE FND_API.G_EXC_ERROR;
493: end;
494:

Line 622: FND_msg_PUB.Count_And_Get (

618:
619: WHEN FND_API.G_EXC_ERROR THEN
620: x_return_status := FND_API.G_RET_STS_ERROR;
621: -- Standard call to get message count and if count=1, get the message
622: FND_msg_PUB.Count_And_Get (
623: -- p_encoded => FND_API.G_FALSE,
624: p_count => x_msg_count,
625: p_data => x_msg_data
626: );

Line 635: FND_msg_PUB.Count_And_Get (

631:
632: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
633:
634: -- Standard call to get message count and if count=1, get the message
635: FND_msg_PUB.Count_And_Get (
636: --p_encoded => FND_API.G_FALSE,
637: p_count => x_msg_count,
638: p_data => x_msg_data
639: );

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

643: WHEN OTHERS THEN
644:
645: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
646:
647: IF FND_msg_PUB.Check_msg_Level (FND_msg_PUB.G_msg_LVL_UNEXP_ERROR)
648: THEN
649: FND_msg_PUB.Add_Exc_msg( g_pkg_name,l_api_name);
650: END IF;
651:

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

645: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
646:
647: IF FND_msg_PUB.Check_msg_Level (FND_msg_PUB.G_msg_LVL_UNEXP_ERROR)
648: THEN
649: FND_msg_PUB.Add_Exc_msg( g_pkg_name,l_api_name);
650: END IF;
651:
652: -- Standard call to get message count and if count=1, get the message
653: FND_msg_PUB.Count_And_Get (

Line 653: FND_msg_PUB.Count_And_Get (

649: FND_msg_PUB.Add_Exc_msg( g_pkg_name,l_api_name);
650: END IF;
651:
652: -- Standard call to get message count and if count=1, get the message
653: FND_msg_PUB.Count_And_Get (
654: -- p_encoded => FND_API.G_FALSE,
655: p_count => x_msg_count,
656: p_data => x_msg_data
657: );