DBA Data[Home] [Help]

APPS.QP_VALIDATE_CON dependencies on OE_MSG_PUB

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

23: THEN
24:
25: l_return_status := FND_API.G_RET_STS_ERROR;
26:
27: IF OE_MSG_PUB.Check_Msg_Level(OE_MSG_PUB.G_MSG_LVL_ERROR)
28: THEN
29:
30: FND_MESSAGE.SET_NAME('QP','QP_ATTRIBUTE_REQUIRED');
31: FND_MESSAGE.SET_TOKEN('ATTRIBUTE','attribute1');

Line 32: OE_MSG_PUB.Add;

28: THEN
29:
30: FND_MESSAGE.SET_NAME('QP','QP_ATTRIBUTE_REQUIRED');
31: FND_MESSAGE.SET_TOKEN('ATTRIBUTE','attribute1');
32: OE_MSG_PUB.Add;
33:
34: END IF;
35:
36: END IF;

Line 50: OE_MSG_PUB.Add;

46:
47: oe_debug_pub.add('Total old values' || p_CON_rec.prc_context_code);
48: l_return_status := FND_API.G_RET_STS_ERROR;
49: FND_MESSAGE.SET_NAME('QP','QP_WRONG_CONTEXT_CODE');
50: OE_MSG_PUB.Add;
51: end if;
52: */
53:
54: -- Return Error if a required attribute is missing.

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

86: WHEN OTHERS THEN
87:
88: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
89:
90: IF OE_MSG_PUB.Check_Msg_Level(OE_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
91: THEN
92: OE_MSG_PUB.Add_Exc_Msg
93: ( G_PKG_NAME
94: , 'Entity'

Line 92: OE_MSG_PUB.Add_Exc_Msg

88: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
89:
90: IF OE_MSG_PUB.Check_Msg_Level(OE_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
91: THEN
92: OE_MSG_PUB.Add_Exc_Msg
93: ( G_PKG_NAME
94: , 'Entity'
95: );
96: END IF;

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

440: WHEN OTHERS THEN
441:
442: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
443:
444: IF OE_MSG_PUB.Check_Msg_Level(OE_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
445: THEN
446: OE_MSG_PUB.Add_Exc_Msg
447: ( G_PKG_NAME
448: , 'Attributes'

Line 446: OE_MSG_PUB.Add_Exc_Msg

442: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
443:
444: IF OE_MSG_PUB.Check_Msg_Level(OE_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
445: THEN
446: OE_MSG_PUB.Add_Exc_Msg
447: ( G_PKG_NAME
448: , 'Attributes'
449: );
450: END IF;

Line 477: OE_MSG_PUB.Add;

473: where segment_id = p_CON_rec.prc_context_id and
474: rownum = 1;
475: l_return_status := FND_API.G_RET_STS_ERROR;
476: FND_MESSAGE.SET_NAME('QP','QP_CANNOT_DELETE_CONTEXT');
477: OE_MSG_PUB.Add;
478:
479: raise fnd_api.g_exc_error;
480: exception
481: when no_data_found then

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

499: WHEN OTHERS THEN
500:
501: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
502:
503: IF OE_MSG_PUB.Check_Msg_Level(OE_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
504: THEN
505: OE_MSG_PUB.Add_Exc_Msg
506: ( G_PKG_NAME
507: , 'Entity_Delete'

Line 505: OE_MSG_PUB.Add_Exc_Msg

501: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
502:
503: IF OE_MSG_PUB.Check_Msg_Level(OE_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
504: THEN
505: OE_MSG_PUB.Add_Exc_Msg
506: ( G_PKG_NAME
507: , 'Entity_Delete'
508: );
509: END IF;