DBA Data[Home] [Help]

APPS.FLM_EXECUTION_UTIL dependencies on FND_MSG_PUB

Line 152: FND_MSG_PUB.initialize;

148: --SAVEPOINT get_workstation_enabled;
149:
150: IF p_init_msg_list IS NOT NULL AND FND_API.TO_BOOLEAN(p_init_msg_list)
151: THEN
152: FND_MSG_PUB.initialize;
153: END IF;
154:
155: x_return_status := FND_API.G_RET_STS_SUCCESS;
156: x_workstation_enabled := 'Y';

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

198: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
199: x_workstation_enabled := 'N';
200: ROLLBACK TO get_workstation_enabled;
201:
202: IF FND_MSG_PUB.Check_Msg_Level(FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR) THEN
203: FND_MSG_PUB.Add_Exc_Msg ('flm_exe_pref' ,'get_workstation_enabled');
204: END IF;
205:
206: FND_MSG_PUB.Count_And_Get (p_count => x_msg_count ,p_data => x_msg_data);

Line 203: FND_MSG_PUB.Add_Exc_Msg ('flm_exe_pref' ,'get_workstation_enabled');

199: x_workstation_enabled := 'N';
200: ROLLBACK TO get_workstation_enabled;
201:
202: IF FND_MSG_PUB.Check_Msg_Level(FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR) THEN
203: FND_MSG_PUB.Add_Exc_Msg ('flm_exe_pref' ,'get_workstation_enabled');
204: END IF;
205:
206: FND_MSG_PUB.Count_And_Get (p_count => x_msg_count ,p_data => x_msg_data);
207:

Line 206: FND_MSG_PUB.Count_And_Get (p_count => x_msg_count ,p_data => x_msg_data);

202: IF FND_MSG_PUB.Check_Msg_Level(FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR) THEN
203: FND_MSG_PUB.Add_Exc_Msg ('flm_exe_pref' ,'get_workstation_enabled');
204: END IF;
205:
206: FND_MSG_PUB.Count_And_Get (p_count => x_msg_count ,p_data => x_msg_data);
207:
208: END get_workstation_enabled;
209:
210:

Line 522: FND_MSG_PUB.Count_And_Get

518:
519: x_return_status := FND_API.G_RET_STS_SUCCESS;
520:
521: -- Get message count and data
522: FND_MSG_PUB.Count_And_Get
523: ( p_count => x_msg_count,
524: p_data => x_msg_data
525: );
526:

Line 532: FND_MSG_PUB.Count_And_Get

528: WHEN FND_API.G_EXC_UNEXPECTED_ERROR THEN
529: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR ;
530:
531: -- Get message count and data
532: FND_MSG_PUB.Count_And_Get
533: ( p_count => x_msg_count
534: , p_data => x_msg_data
535: );
536:

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

535: );
536:
537: WHEN OTHERS THEN
538: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR ;
539: IF FND_MSG_PUB.Check_Msg_Level(FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR) THEN
540: FND_MSG_PUB.Add_Exc_Msg
541: ( G_PKG_NAME
542: , 'Get_Attribute'
543: );

Line 540: FND_MSG_PUB.Add_Exc_Msg

536:
537: WHEN OTHERS THEN
538: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR ;
539: IF FND_MSG_PUB.Check_Msg_Level(FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR) THEN
540: FND_MSG_PUB.Add_Exc_Msg
541: ( G_PKG_NAME
542: , 'Get_Attribute'
543: );
544: END IF;

Line 547: FND_MSG_PUB.Count_And_Get

543: );
544: END IF;
545:
546: -- Get message count and data
547: FND_MSG_PUB.Count_And_Get
548: ( p_count => x_msg_count
549: , p_data => x_msg_data
550: );
551: