DBA Data[Home] [Help]

APPS.OE_ADJ_PRIVILEGE dependencies on OE_MSG_PUB

Line 104: OE_MSG_PUB.initialize;

100:
101:
102: -- Initialize message list.
103: IF FND_API.to_Boolean(p_init_msg_list) THEN
104: OE_MSG_PUB.initialize;
105: END IF;
106:
107:
108: x_return_status := FND_API.G_RET_STS_SUCCESS;

Line 115: OE_MSG_PUB.Add;

111: IF p_discounting_privilege = 'NONE' THEN
112:
113: fnd_message.set_name('QP', 'OE_MANDIS_DISALLOWED');
114: fnd_message.set_token('REASON', 'OE_MANDIS_NO_PRIVILEGE', TRUE);
115: OE_MSG_PUB.Add;
116:
117: RAISE FND_API.G_EXC_ERROR;
118:
119: ELSIF (p_list_price IS NULL

Line 128: OE_MSG_PUB.Add;

124: fnd_message.set_name('QP', 'OE_MANDIS_DISALLOWED');
125: fnd_message.set_token('REASON',
126: 'OE_MANDIS_NO_LIST_PRICE',
127: TRUE);
128: OE_MSG_PUB.Add;
129:
130: RAISE FND_API.G_EXC_ERROR;
131:
132:

Line 164: OE_MSG_PUB.Add;

160: fnd_message.set_name('ONT', 'OE_MANDIS_DISALLOWED');
161: fnd_message.set_token('REASON',
162: 'OE_MANDIS_PRICES_ENFORCED',
163: TRUE);
164: OE_MSG_PUB.Add;
165: RAISE FND_API.G_EXC_ERROR;
166: END;
167: END IF;
168:

Line 221: OE_MSG_PUB.Count_And_Get

217:
218: x_return_status := FND_API.G_RET_STS_ERROR;
219:
220: -- Get message count and data
221: OE_MSG_PUB.Count_And_Get
222: ( p_count => x_msg_count
223: , p_data => x_msg_data
224: );
225:

Line 232: OE_MSG_PUB.Count_And_Get

228:
229: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR ;
230:
231: -- Get message count and data
232: OE_MSG_PUB.Count_And_Get
233: ( p_count => x_msg_count
234: , p_data => x_msg_data
235: );
236:

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

238: WHEN OTHERS THEN
239:
240: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR ;
241:
242: IF OE_MSG_PUB.Check_Msg_Level(OE_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
243: THEN
244: OE_MSG_PUB.Add_Exc_Msg
245: ( G_PKG_NAME
246: , 'Check_Manual_Discount_Priv'

Line 244: OE_MSG_PUB.Add_Exc_Msg

240: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR ;
241:
242: IF OE_MSG_PUB.Check_Msg_Level(OE_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
243: THEN
244: OE_MSG_PUB.Add_Exc_Msg
245: ( G_PKG_NAME
246: , 'Check_Manual_Discount_Priv'
247: );
248: END IF;

Line 251: OE_MSG_PUB.Count_And_Get

247: );
248: END IF;
249:
250: -- Get message count and data
251: OE_MSG_PUB.Count_And_Get
252: ( p_count => x_msg_count
253: , p_data => x_msg_data
254: );
255: