DBA Data[Home] [Help]

APPS.BIM_SOURCE_CODE_PKG dependencies on FND_MSG_PUB

Line 99: FND_MSG_PUB.initialize;

95:
96: /* Initialize message list if p_init_msg_list is set to TRUE */
97: IF FND_API.to_Boolean( p_init_msg_list )
98: THEN
99: FND_MSG_PUB.initialize;
100: END IF;
101:
102: /* Initialize API return status to SUCCESS */
103: x_return_status := FND_API.G_RET_STS_SUCCESS;

Line 332: FND_MSG_PUB.Count_And_Get

328:
329:
330:
331: /* Standard call to get message count and if count is 1, get message info */
332: FND_MSG_PUB.Count_And_Get
333: ( p_count => x_msg_count,
334: p_data => x_msg_data
335: );
336: COMMIT;

Line 343: FND_MSG_PUB.Count_And_Get

339: EXCEPTION
340: WHEN FND_API.G_EXC_ERROR THEN
341: x_return_status := FND_API.G_RET_STS_ERROR;
342: /* Standard call to get message count and if count=1, get the message */
343: FND_MSG_PUB.Count_And_Get
344: ( p_count => x_msg_count,
345: p_data => x_msg_data
346: );
347: ams_utility_pvt.write_conc_log('BIM_R_SOURCE_CODES:IN EXPECTED EXCEPTION '||sqlerrm(sqlcode));

Line 352: FND_MSG_PUB.Count_And_Get

348:
349: WHEN FND_API.G_EXC_UNEXPECTED_ERROR THEN
350: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
351: /* Standard call to get message count and if count=1, get the message */
352: FND_MSG_PUB.Count_And_Get
353: ( p_count => x_msg_count,
354: p_data => x_msg_data
355: );
356: ams_utility_pvt.write_conc_log('BIM_R_SOURCE_CODES:IN UNEXPECTED EXCEPTION '||sqlerrm(sqlcode));

Line 360: IF FND_MSG_PUB.Check_msg_Level ( FND_msg_PUB.G_msg_LVL_UNEXP_ERROR) THEN

356: ams_utility_pvt.write_conc_log('BIM_R_SOURCE_CODES:IN UNEXPECTED EXCEPTION '||sqlerrm(sqlcode));
357:
358: WHEN OTHERS THEN
359: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
360: IF FND_MSG_PUB.Check_msg_Level ( FND_msg_PUB.G_msg_LVL_UNEXP_ERROR) THEN
361: FND_msg_PUB.Add_Exc_msg( g_pkg_name,l_api_name);
362: END IF;
363: /* Standard call to get message count and if count=1, get the message */
364: FND_MSG_PUB.Count_And_Get

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

357:
358: WHEN OTHERS THEN
359: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
360: IF FND_MSG_PUB.Check_msg_Level ( FND_msg_PUB.G_msg_LVL_UNEXP_ERROR) THEN
361: FND_msg_PUB.Add_Exc_msg( g_pkg_name,l_api_name);
362: END IF;
363: /* Standard call to get message count and if count=1, get the message */
364: FND_MSG_PUB.Count_And_Get
365: ( p_count => x_msg_count,

Line 364: FND_MSG_PUB.Count_And_Get

360: IF FND_MSG_PUB.Check_msg_Level ( FND_msg_PUB.G_msg_LVL_UNEXP_ERROR) THEN
361: FND_msg_PUB.Add_Exc_msg( g_pkg_name,l_api_name);
362: END IF;
363: /* Standard call to get message count and if count=1, get the message */
364: FND_MSG_PUB.Count_And_Get
365: ( p_count => x_msg_count,
366: p_data => x_msg_data
367: );
368: ams_utility_pvt.write_conc_log('BIM_R_SOURCE_CODES:IN OTHERS EXCEPTION '||sqlerrm(sqlcode));