DBA Data[Home] [Help]

APPS.IEM_ARCH_MSGDTLS_PVT dependencies on FND_MSG_PUB

Line 85: FND_MSG_PUB.initialize;

81:
82: -- Initialize message list if p_init_msg_list is set to TRUE.
83: IF FND_API.to_Boolean( p_init_msg_list )
84: THEN
85: FND_MSG_PUB.initialize;
86: END IF;
87:
88: -- Initialize API return status to SUCCESS
89: x_return_status := FND_API.G_RET_STS_SUCCESS;

Line 206: FND_MSG_PUB.Count_And_Get

202: END IF;
203:
204:
205: -- Standard callto get message count and if count is 1, get message info.
206: FND_MSG_PUB.Count_And_Get
207: ( p_count => x_msg_count,
208: p_data => x_msg_data
209: );
210:

Line 216: FND_MSG_PUB.Count_And_Get

212:
213: WHEN FND_API.G_EXC_ERROR THEN
214: ROLLBACK TO create_arch_msgdtls_PVT;
215: x_return_status := FND_API.G_RET_STS_ERROR ;
216: FND_MSG_PUB.Count_And_Get
217:
218: ( p_count => x_msg_count,
219: p_data => x_msg_data
220: );

Line 225: FND_MSG_PUB.Count_And_Get

221:
222: WHEN FND_API.G_EXC_UNEXPECTED_ERROR THEN
223: ROLLBACK TO create_arch_msgdtls_PVT;
224: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR ;
225: FND_MSG_PUB.Count_And_Get
226: ( p_count => x_msg_count,
227: p_data => x_msg_data
228: );
229:

Line 233: IF FND_MSG_PUB.Check_Msg_Level

229:
230: WHEN OTHERS THEN
231: ROLLBACK TO create_arch_msgdtls_PVT;
232: x_return_status := FND_API.G_RET_STS_ERROR;
233: IF FND_MSG_PUB.Check_Msg_Level
234: (FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
235: THEN
236: FND_MSG_PUB.Add_Exc_Msg
237: ( G_PKG_NAME ,

Line 234: (FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)

230: WHEN OTHERS THEN
231: ROLLBACK TO create_arch_msgdtls_PVT;
232: x_return_status := FND_API.G_RET_STS_ERROR;
233: IF FND_MSG_PUB.Check_Msg_Level
234: (FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
235: THEN
236: FND_MSG_PUB.Add_Exc_Msg
237: ( G_PKG_NAME ,
238: l_api_name

Line 236: FND_MSG_PUB.Add_Exc_Msg

232: x_return_status := FND_API.G_RET_STS_ERROR;
233: IF FND_MSG_PUB.Check_Msg_Level
234: (FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
235: THEN
236: FND_MSG_PUB.Add_Exc_Msg
237: ( G_PKG_NAME ,
238: l_api_name
239: );
240: END IF;

Line 242: FND_MSG_PUB.Count_And_Get

238: l_api_name
239: );
240: END IF;
241:
242: FND_MSG_PUB.Count_And_Get
243: ( p_count => x_msg_count,
244: p_data => x_msg_data
245:
246: );