DBA Data[Home] [Help]

APPS.WSH_CAL_ASG_PKG dependencies on FND_MSG_PUB

Line 93: FND_MSG_PUB.initialize;

89:
90: -- Initialize message stack if required
91: IF FND_API.to_Boolean(p_init_msg_list)
92: THEN
93: FND_MSG_PUB.initialize;
94: END IF;
95:
96: --
97: OPEN get_cal_id;

Line 184: FND_MSG_PUB.Count_And_Get

180: --
181: -- report success
182: -- commenting out as this value is set in above procedure
183: x_return_status := FND_API.G_RET_STS_SUCCESS;
184: FND_MSG_PUB.Count_And_Get
185: ( p_count => x_msg_count
186: , p_data => x_msg_data
187: );
188: --

Line 200: FND_MSG_PUB.Count_And_Get

196:
197: WHEN FND_API.G_EXC_ERROR THEN
198: x_return_status := FND_API.G_RET_STS_ERROR;
199: -- Get message count and data
200: FND_MSG_PUB.Count_And_Get
201: ( p_count => x_msg_count
202: , p_data => x_msg_data
203: );
204:

Line 216: FND_MSG_PUB.Count_And_Get

212: --
213: WHEN FND_API.G_EXC_UNEXPECTED_ERROR THEN
214: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR ;
215: -- Get message count and data
216: FND_MSG_PUB.Count_And_Get
217: ( p_count => x_msg_count
218: , p_data => x_msg_data
219: );
220:

Line 231: IF FND_MSG_PUB.Check_Msg_Level(FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)

227: END IF;
228: --
229: WHEN OTHERS THEN
230: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR ;
231: IF FND_MSG_PUB.Check_Msg_Level(FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
232: THEN
233: FND_MSG_PUB.Add_Exc_Msg
234: ( G_PKG_NAME
235: , 'Create_Cal_Asg'

Line 233: FND_MSG_PUB.Add_Exc_Msg

229: WHEN OTHERS THEN
230: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR ;
231: IF FND_MSG_PUB.Check_Msg_Level(FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
232: THEN
233: FND_MSG_PUB.Add_Exc_Msg
234: ( G_PKG_NAME
235: , 'Create_Cal_Asg'
236: );
237: END IF;

Line 239: FND_MSG_PUB.Count_And_Get

235: , 'Create_Cal_Asg'
236: );
237: END IF;
238: -- Get message count and data
239: FND_MSG_PUB.Count_And_Get
240: ( p_count => x_msg_count
241: , p_data => x_msg_data
242: );
243: --

Line 318: FND_MSG_PUB.initialize;

314: END IF;
315: -- Initialize message stack if required
316: IF FND_API.to_Boolean(p_init_msg_list)
317: THEN
318: FND_MSG_PUB.initialize;
319: END IF;
320:
321: --
322: UPDATE WSH_CALENDAR_ASSIGNMENTS

Line 353: FND_MSG_PUB.Count_And_Get

349:
350: --
351: -- report success
352: x_return_status := FND_API.G_RET_STS_SUCCESS;
353: FND_MSG_PUB.Count_And_Get
354: ( p_count => x_msg_count
355: , p_data => x_msg_data
356: );
357: --

Line 368: FND_MSG_PUB.Count_And_Get

364: EXCEPTION
365: WHEN FND_API.G_EXC_ERROR THEN
366: x_return_status := FND_API.G_RET_STS_ERROR;
367: -- Get message count and data
368: FND_MSG_PUB.Count_And_Get
369: ( p_count => x_msg_count
370: , p_data => x_msg_data
371: );
372: --

Line 383: FND_MSG_PUB.Count_And_Get

379: --
380: WHEN FND_API.G_EXC_UNEXPECTED_ERROR THEN
381: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR ;
382: -- Get message count and data
383: FND_MSG_PUB.Count_And_Get
384: ( p_count => x_msg_count
385: , p_data => x_msg_data
386: );
387:

Line 398: IF FND_MSG_PUB.Check_Msg_Level(FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)

394: END IF;
395: --
396: WHEN OTHERS THEN
397: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR ;
398: IF FND_MSG_PUB.Check_Msg_Level(FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
399: THEN
400: FND_MSG_PUB.Add_Exc_Msg
401: ( G_PKG_NAME
402: , 'Update_Cal_Asg'

Line 400: FND_MSG_PUB.Add_Exc_Msg

396: WHEN OTHERS THEN
397: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR ;
398: IF FND_MSG_PUB.Check_Msg_Level(FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
399: THEN
400: FND_MSG_PUB.Add_Exc_Msg
401: ( G_PKG_NAME
402: , 'Update_Cal_Asg'
403: );
404: END IF;

Line 406: FND_MSG_PUB.Count_And_Get

402: , 'Update_Cal_Asg'
403: );
404: END IF;
405: -- Get message count and data
406: FND_MSG_PUB.Count_And_Get
407: ( p_count => x_msg_count
408: , p_data => x_msg_data
409: );
410: --