DBA Data[Home] [Help]

APPS.OE_PRICE_LIST_PUB dependencies on OE_MSG_PUB

Line 149: OE_MSG_PUB.Count_And_Get

145: x_return_status := FND_API.G_RET_STS_ERROR;
146:
147: -- Get message count and data
148:
149: OE_MSG_PUB.Count_And_Get
150: ( p_count => x_msg_count
151: , p_data => x_msg_data
152: );
153:

Line 160: OE_MSG_PUB.Count_And_Get

156: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR ;
157:
158: -- Get message count and data
159:
160: OE_MSG_PUB.Count_And_Get
161: ( p_count => x_msg_count
162: , p_data => x_msg_data
163: );
164:

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

165: WHEN OTHERS THEN
166:
167: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR ;
168:
169: IF OE_MSG_PUB.Check_Msg_Level(OE_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
170: THEN
171: OE_MSG_PUB.Add_Exc_Msg
172: ( G_PKG_NAME
173: , 'Process_Price_List'

Line 171: OE_MSG_PUB.Add_Exc_Msg

167: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR ;
168:
169: IF OE_MSG_PUB.Check_Msg_Level(OE_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
170: THEN
171: OE_MSG_PUB.Add_Exc_Msg
172: ( G_PKG_NAME
173: , 'Process_Price_List'
174: );
175: END IF;

Line 179: OE_MSG_PUB.Count_And_Get

175: END IF;
176:
177: -- Get message count and data
178:
179: OE_MSG_PUB.Count_And_Get
180: ( p_count => x_msg_count
181: , p_data => x_msg_data
182: );
183:

Line 301: OE_MSG_PUB.Count_And_Get

297: x_return_status := FND_API.G_RET_STS_ERROR;
298:
299: -- Get message count and data
300:
301: OE_MSG_PUB.Count_And_Get
302: ( p_count => x_msg_count
303: , p_data => x_msg_data
304: );
305:

Line 312: OE_MSG_PUB.Count_And_Get

308: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR ;
309:
310: -- Get message count and data
311:
312: OE_MSG_PUB.Count_And_Get
313: ( p_count => x_msg_count
314: , p_data => x_msg_data
315: );
316:

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

317: WHEN OTHERS THEN
318:
319: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR ;
320:
321: IF OE_MSG_PUB.Check_Msg_Level(OE_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
322: THEN
323: OE_MSG_PUB.Add_Exc_Msg
324: ( G_PKG_NAME
325: , 'Lock_Price_List'

Line 323: OE_MSG_PUB.Add_Exc_Msg

319: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR ;
320:
321: IF OE_MSG_PUB.Check_Msg_Level(OE_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
322: THEN
323: OE_MSG_PUB.Add_Exc_Msg
324: ( G_PKG_NAME
325: , 'Lock_Price_List'
326: );
327: END IF;

Line 331: OE_MSG_PUB.Count_And_Get

327: END IF;
328:
329: -- Get message count and data
330:
331: OE_MSG_PUB.Count_And_Get
332: ( p_count => x_msg_count
333: , p_data => x_msg_data
334: );
335:

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

400: ELSIF p_price_list_id <> FND_API.G_MISS_NUM THEN
401:
402: l_price_list_id := p_price_list_id;
403:
404: IF OE_MSG_PUB.Check_Msg_Level(OE_MSG_PUB.G_MSG_LVL_SUCCESS)
405: THEN
406:
407: FND_MESSAGE.SET_NAME('OE','FND_BOTH_VAL_AND_ID_EXIST');
408: FND_MESSAGE.SET_TOKEN('ATTRIBUTE','price_list');

Line 409: OE_MSG_PUB.Add;

405: THEN
406:
407: FND_MESSAGE.SET_NAME('OE','FND_BOTH_VAL_AND_ID_EXIST');
408: FND_MESSAGE.SET_TOKEN('ATTRIBUTE','price_list');
409: OE_MSG_PUB.Add;
410:
411: END IF;
412:
413: ELSE

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

418: ( p_price_list => p_price_list
419: );
420:
421: IF l_price_list_id = FND_API.G_MISS_NUM THEN
422: IF OE_MSG_PUB.Check_Msg_Level(OE_MSG_PUB.G_MSG_LVL_ERROR)
423: THEN
424:
425: FND_MESSAGE.SET_NAME('OE','Invalid Business Object Value');
426: FND_MESSAGE.SET_TOKEN('ATTRIBUTE','price_list');

Line 427: OE_MSG_PUB.Add;

423: THEN
424:
425: FND_MESSAGE.SET_NAME('OE','Invalid Business Object Value');
426: FND_MESSAGE.SET_TOKEN('ATTRIBUTE','price_list');
427: OE_MSG_PUB.Add;
428:
429: END IF;
430: END IF;
431:

Line 475: OE_MSG_PUB.Count_And_Get

471: x_return_status := FND_API.G_RET_STS_SUCCESS;
472:
473: -- Get message count and data
474:
475: OE_MSG_PUB.Count_And_Get
476: ( p_count => x_msg_count
477: , p_data => x_msg_data
478: );
479:

Line 489: OE_MSG_PUB.Count_And_Get

485: x_return_status := FND_API.G_RET_STS_ERROR;
486:
487: -- Get message count and data
488:
489: OE_MSG_PUB.Count_And_Get
490: ( p_count => x_msg_count
491: , p_data => x_msg_data
492: );
493:

Line 500: OE_MSG_PUB.Count_And_Get

496: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR ;
497:
498: -- Get message count and data
499:
500: OE_MSG_PUB.Count_And_Get
501: ( p_count => x_msg_count
502: , p_data => x_msg_data
503: );
504:

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

505: WHEN OTHERS THEN
506:
507: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR ;
508:
509: IF OE_MSG_PUB.Check_Msg_Level(OE_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
510: THEN
511: OE_MSG_PUB.Add_Exc_Msg
512: ( G_PKG_NAME
513: , 'Get_Price_List'

Line 511: OE_MSG_PUB.Add_Exc_Msg

507: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR ;
508:
509: IF OE_MSG_PUB.Check_Msg_Level(OE_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
510: THEN
511: OE_MSG_PUB.Add_Exc_Msg
512: ( G_PKG_NAME
513: , 'Get_Price_List'
514: );
515: END IF;

Line 519: OE_MSG_PUB.Count_And_Get

515: END IF;
516:
517: -- Get message count and data
518:
519: OE_MSG_PUB.Count_And_Get
520: ( p_count => x_msg_count
521: , p_data => x_msg_data
522: );
523:

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

548: EXCEPTION
549:
550: WHEN OTHERS THEN
551:
552: IF OE_MSG_PUB.Check_Msg_Level(OE_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
553: THEN
554: OE_MSG_PUB.Add_Exc_Msg
555: ( G_PKG_NAME
556: , 'Id_To_Value'

Line 554: OE_MSG_PUB.Add_Exc_Msg

550: WHEN OTHERS THEN
551:
552: IF OE_MSG_PUB.Check_Msg_Level(OE_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
553: THEN
554: OE_MSG_PUB.Add_Exc_Msg
555: ( G_PKG_NAME
556: , 'Id_To_Value'
557: );
558: END IF;

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

621: EXCEPTION
622:
623: WHEN OTHERS THEN
624:
625: IF OE_MSG_PUB.Check_Msg_Level(OE_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
626: THEN
627: OE_MSG_PUB.Add_Exc_Msg
628: ( G_PKG_NAME
629: , 'Value_To_Id'

Line 627: OE_MSG_PUB.Add_Exc_Msg

623: WHEN OTHERS THEN
624:
625: IF OE_MSG_PUB.Check_Msg_Level(OE_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
626: THEN
627: OE_MSG_PUB.Add_Exc_Msg
628: ( G_PKG_NAME
629: , 'Value_To_Id'
630: );
631: END IF;