DBA Data[Home] [Help]

APPS.QP_LIMITS_PUB dependencies on OE_MSG_PUB

Line 113: OE_MSG_PUB.Add;

109: THEN
110:
111: l_return_status := FND_API.G_RET_STS_ERROR;
112: FND_MESSAGE.SET_NAME('QP','QP_PRICING_NOT_INSTALLED');
113: OE_MSG_PUB.Add;
114: RAISE FND_API.G_EXC_ERROR;
115:
116: END IF;
117:

Line 201: OE_MSG_PUB.Count_And_Get

197: x_return_status := FND_API.G_RET_STS_ERROR;
198:
199: -- Get message count and data
200:
201: OE_MSG_PUB.Count_And_Get
202: ( p_count => x_msg_count
203: , p_data => x_msg_data
204: );
205: --Roll Back the transaction if the return status is not success and it is called from API, bug #5345652

Line 216: OE_MSG_PUB.Count_And_Get

212: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR ;
213:
214: -- Get message count and data
215:
216: OE_MSG_PUB.Count_And_Get
217: ( p_count => x_msg_count
218: , p_data => x_msg_data
219: );
220: --Roll Back the transaction if the return status is not success and it is called from API, bug #5345652

Line 229: IF OE_MSG_PUB.Check_Msg_Level(OE_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)

225: WHEN OTHERS THEN
226:
227: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR ;
228:
229: IF OE_MSG_PUB.Check_Msg_Level(OE_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
230: THEN
231: OE_MSG_PUB.Add_Exc_Msg
232: ( G_PKG_NAME
233: , 'Process_Limits'

Line 231: OE_MSG_PUB.Add_Exc_Msg

227: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR ;
228:
229: IF OE_MSG_PUB.Check_Msg_Level(OE_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
230: THEN
231: OE_MSG_PUB.Add_Exc_Msg
232: ( G_PKG_NAME
233: , 'Process_Limits'
234: );
235: END IF;

Line 239: OE_MSG_PUB.Count_And_Get

235: END IF;
236:
237: -- Get message count and data
238:
239: OE_MSG_PUB.Count_And_Get
240: ( p_count => x_msg_count
241: , p_data => x_msg_data
242: );
243: --Roll Back the transaction if the return status is not success and it is called from API, bug #5345652

Line 385: OE_MSG_PUB.Count_And_Get

381: x_return_status := FND_API.G_RET_STS_ERROR;
382:
383: -- Get message count and data
384:
385: OE_MSG_PUB.Count_And_Get
386: ( p_count => x_msg_count
387: , p_data => x_msg_data
388: );
389:

Line 396: OE_MSG_PUB.Count_And_Get

392: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR ;
393:
394: -- Get message count and data
395:
396: OE_MSG_PUB.Count_And_Get
397: ( p_count => x_msg_count
398: , p_data => x_msg_data
399: );
400:

Line 405: IF OE_MSG_PUB.Check_Msg_Level(OE_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)

401: WHEN OTHERS THEN
402:
403: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR ;
404:
405: IF OE_MSG_PUB.Check_Msg_Level(OE_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
406: THEN
407: OE_MSG_PUB.Add_Exc_Msg
408: ( G_PKG_NAME
409: , 'Lock_Limits'

Line 407: OE_MSG_PUB.Add_Exc_Msg

403: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR ;
404:
405: IF OE_MSG_PUB.Check_Msg_Level(OE_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
406: THEN
407: OE_MSG_PUB.Add_Exc_Msg
408: ( G_PKG_NAME
409: , 'Lock_Limits'
410: );
411: END IF;

Line 415: OE_MSG_PUB.Count_And_Get

411: END IF;
412:
413: -- Get message count and data
414:
415: OE_MSG_PUB.Count_And_Get
416: ( p_count => x_msg_count
417: , p_data => x_msg_data
418: );
419:

Line 488: IF OE_MSG_PUB.Check_Msg_Level(OE_MSG_PUB.G_MSG_LVL_SUCCESS)

484: ELSIF p_limit_id <> FND_API.G_MISS_NUM THEN
485:
486: l_limit_id := p_limit_id;
487:
488: IF OE_MSG_PUB.Check_Msg_Level(OE_MSG_PUB.G_MSG_LVL_SUCCESS)
489: THEN
490:
491: FND_MESSAGE.SET_NAME('QP','FND_BOTH_VAL_AND_ID_EXIST');
492: FND_MESSAGE.SET_TOKEN('ATTRIBUTE','limit');

Line 493: OE_MSG_PUB.Add;

489: THEN
490:
491: FND_MESSAGE.SET_NAME('QP','FND_BOTH_VAL_AND_ID_EXIST');
492: FND_MESSAGE.SET_TOKEN('ATTRIBUTE','limit');
493: OE_MSG_PUB.Add;
494:
495: END IF;
496:
497: ELSE

Line 506: IF OE_MSG_PUB.Check_Msg_Level(OE_MSG_PUB.G_MSG_LVL_ERROR)

502: ( p_limit => p_limit
503: );
504:
505: IF l_limit_id = FND_API.G_MISS_NUM THEN
506: IF OE_MSG_PUB.Check_Msg_Level(OE_MSG_PUB.G_MSG_LVL_ERROR)
507: THEN
508:
509: FND_MESSAGE.SET_NAME('QP','Invalid Business Object Value');
510: FND_MESSAGE.SET_TOKEN('ATTRIBUTE','limit');

Line 511: OE_MSG_PUB.Add;

507: THEN
508:
509: FND_MESSAGE.SET_NAME('QP','Invalid Business Object Value');
510: FND_MESSAGE.SET_TOKEN('ATTRIBUTE','limit');
511: OE_MSG_PUB.Add;
512:
513: END IF;
514: END IF;
515:

Line 562: OE_MSG_PUB.Count_And_Get

558: x_return_status := FND_API.G_RET_STS_SUCCESS;
559:
560: -- Get message count and data
561:
562: OE_MSG_PUB.Count_And_Get
563: ( p_count => x_msg_count
564: , p_data => x_msg_data
565: );
566:

Line 576: OE_MSG_PUB.Count_And_Get

572: x_return_status := FND_API.G_RET_STS_ERROR;
573:
574: -- Get message count and data
575:
576: OE_MSG_PUB.Count_And_Get
577: ( p_count => x_msg_count
578: , p_data => x_msg_data
579: );
580:

Line 587: OE_MSG_PUB.Count_And_Get

583: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR ;
584:
585: -- Get message count and data
586:
587: OE_MSG_PUB.Count_And_Get
588: ( p_count => x_msg_count
589: , p_data => x_msg_data
590: );
591:

Line 596: IF OE_MSG_PUB.Check_Msg_Level(OE_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)

592: WHEN OTHERS THEN
593:
594: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR ;
595:
596: IF OE_MSG_PUB.Check_Msg_Level(OE_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
597: THEN
598: OE_MSG_PUB.Add_Exc_Msg
599: ( G_PKG_NAME
600: , 'Get_Limits'

Line 598: OE_MSG_PUB.Add_Exc_Msg

594: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR ;
595:
596: IF OE_MSG_PUB.Check_Msg_Level(OE_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
597: THEN
598: OE_MSG_PUB.Add_Exc_Msg
599: ( G_PKG_NAME
600: , 'Get_Limits'
601: );
602: END IF;

Line 606: OE_MSG_PUB.Count_And_Get

602: END IF;
603:
604: -- Get message count and data
605:
606: OE_MSG_PUB.Count_And_Get
607: ( p_count => x_msg_count
608: , p_data => x_msg_data
609: );
610:

Line 648: IF OE_MSG_PUB.Check_Msg_Level(OE_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)

644: EXCEPTION
645:
646: WHEN OTHERS THEN
647:
648: IF OE_MSG_PUB.Check_Msg_Level(OE_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
649: THEN
650: OE_MSG_PUB.Add_Exc_Msg
651: ( G_PKG_NAME
652: , 'Id_To_Value'

Line 650: OE_MSG_PUB.Add_Exc_Msg

646: WHEN OTHERS THEN
647:
648: IF OE_MSG_PUB.Check_Msg_Level(OE_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
649: THEN
650: OE_MSG_PUB.Add_Exc_Msg
651: ( G_PKG_NAME
652: , 'Id_To_Value'
653: );
654: END IF;

Line 748: IF OE_MSG_PUB.Check_Msg_Level(OE_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)

744: EXCEPTION
745:
746: WHEN OTHERS THEN
747:
748: IF OE_MSG_PUB.Check_Msg_Level(OE_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
749: THEN
750: OE_MSG_PUB.Add_Exc_Msg
751: ( G_PKG_NAME
752: , 'Value_To_Id'

Line 750: OE_MSG_PUB.Add_Exc_Msg

746: WHEN OTHERS THEN
747:
748: IF OE_MSG_PUB.Check_Msg_Level(OE_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
749: THEN
750: OE_MSG_PUB.Add_Exc_Msg
751: ( G_PKG_NAME
752: , 'Value_To_Id'
753: );
754: END IF;