DBA Data[Home] [Help]

APPS.QP_VALIDATE_CURR_LISTS dependencies on OE_MSG_PUB

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

26: THEN
27:
28: l_return_status := FND_API.G_RET_STS_ERROR;
29:
30: IF OE_MSG_PUB.Check_Msg_Level(OE_MSG_PUB.G_MSG_LVL_ERROR)
31: THEN
32:
33: FND_MESSAGE.SET_NAME('QP','QP_ATTRIBUTE_REQUIRED');
34: FND_MESSAGE.SET_TOKEN('ATTRIBUTE','currency_header_id');

Line 35: OE_MSG_PUB.Add;

31: THEN
32:
33: FND_MESSAGE.SET_NAME('QP','QP_ATTRIBUTE_REQUIRED');
34: FND_MESSAGE.SET_TOKEN('ATTRIBUTE','currency_header_id');
35: OE_MSG_PUB.Add;
36:
37: END IF;
38:
39: END IF;

Line 62: OE_MSG_PUB.Add;

58: EXCEPTION
59: WHEN NO_DATA_FOUND THEN
60: l_return_status := FND_API.G_RET_STS_ERROR;
61: FND_MESSAGE.SET_NAME('QP','QP_INVALID_CURRENCY');
62: OE_MSG_PUB.Add;
63:
64: END;
65:
66: -- Validate header records' base_markup_operator

Line 88: OE_MSG_PUB.Add;

84: -- oe_debug_pub.add('ERROR: Base Markup_Operator is Invalid');
85: l_return_status := FND_API.G_RET_STS_ERROR;
86: FND_MESSAGE.SET_NAME('QP','QP_INVALID_MARKUP_OPRTR'); -- CHANGE MESG_CODE
87: FND_MESSAGE.SET_TOKEN('MARKUP_OPERATOR',p_CURR_LISTS_rec.base_markup_operator);
88: OE_MSG_PUB.Add;
89:
90: END;
91: END IF;
92:

Line 128: OE_MSG_PUB.Add;

124: EXCEPTION
125: WHEN NO_DATA_FOUND THEN
126: l_return_status := FND_API.G_RET_STS_ERROR;
127: FND_MESSAGE.SET_NAME('QP','QP_FORMULA_NOT_FOUND');
128: OE_MSG_PUB.Add;
129:
130: END;
131: END IF;
132:

Line 144: OE_MSG_PUB.Add;

140: THEN
141: -- oe_debug_pub.add('ERROR: Markup Formula or Value should be provided if Markup Operator is present');
142: l_return_status := FND_API.G_RET_STS_ERROR;
143: FND_MESSAGE.SET_NAME('QP','QP_FRML_OR_VAL_REQD'); -- CHANGE MESG_CODE
144: OE_MSG_PUB.Add;
145: END IF;
146:
147: -- Markup Operator should be present if either value or formula is present
148: IF ((p_CURR_LISTS_rec.base_markup_operator IS NULL) AND

Line 156: OE_MSG_PUB.Add;

152: THEN
153: -- oe_debug_pub.add('ERROR: Markup Formula or Value can be provided only if Markup Operator is present');
154: l_return_status := FND_API.G_RET_STS_ERROR;
155: FND_MESSAGE.SET_NAME('QP','QP_MARKUP_OPRTR_REQD'); -- CHANGE MESG_CODE
156: OE_MSG_PUB.Add;
157: END IF;
158:
159: -- Validate rounding factor precision
160: IF p_CURR_LISTS_rec.base_rounding_factor IS NOT NULL AND

Line 175: oe_msg_pub.add;

171: then
172: l_return_status := FND_API.G_RET_STS_ERROR;
173:
174: FND_MESSAGE.SET_NAME('QP','QP_RNDG_FACTOR_REQD');
175: oe_msg_pub.add;
176:
177: end if;
178: -- Return Error if a required attribute is missing.
179:

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

210: WHEN OTHERS THEN
211:
212: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
213:
214: IF OE_MSG_PUB.Check_Msg_Level(OE_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
215: THEN
216: OE_MSG_PUB.Add_Exc_Msg
217: ( G_PKG_NAME
218: , 'Entity'

Line 216: OE_MSG_PUB.Add_Exc_Msg

212: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
213:
214: IF OE_MSG_PUB.Check_Msg_Level(OE_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
215: THEN
216: OE_MSG_PUB.Add_Exc_Msg
217: ( G_PKG_NAME
218: , 'Entity'
219: );
220: END IF;

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

581: WHEN OTHERS THEN
582:
583: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
584:
585: IF OE_MSG_PUB.Check_Msg_Level(OE_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
586: THEN
587: OE_MSG_PUB.Add_Exc_Msg
588: ( G_PKG_NAME
589: , 'Attributes'

Line 587: OE_MSG_PUB.Add_Exc_Msg

583: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
584:
585: IF OE_MSG_PUB.Check_Msg_Level(OE_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
586: THEN
587: OE_MSG_PUB.Add_Exc_Msg
588: ( G_PKG_NAME
589: , 'Attributes'
590: );
591: END IF;

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

623: WHEN OTHERS THEN
624:
625: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
626:
627: IF OE_MSG_PUB.Check_Msg_Level(OE_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
628: THEN
629: OE_MSG_PUB.Add_Exc_Msg
630: ( G_PKG_NAME
631: , 'Entity_Delete'

Line 629: OE_MSG_PUB.Add_Exc_Msg

625: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
626:
627: IF OE_MSG_PUB.Check_Msg_Level(OE_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
628: THEN
629: OE_MSG_PUB.Add_Exc_Msg
630: ( G_PKG_NAME
631: , 'Entity_Delete'
632: );
633: END IF;