DBA Data[Home] [Help]

APPS.OE_VALIDATE_PRICE_LIST_LINE 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('OE','OE_ATTRIBUTE_REQUIRED');
31: FND_MESSAGE.SET_TOKEN('ATTRIBUTE','attribute1 Missing');

Line 32: OE_MSG_PUB.Add;

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

Line 84: /* IF OE_MSG_PUB.Check_Msg_Level(OE_MSG_PUB.G_MSG_LVL_ERROR)

80: p_old_PRICE_LIST_LINE_rec.end_date_active )
81: THEN
82: l_return_status := FND_API.G_RET_STS_ERROR;
83:
84: /* IF OE_MSG_PUB.Check_Msg_Level(OE_MSG_PUB.G_MSG_LVL_ERROR)
85: THEN
86: FND_MESSAGE.SET_NAME('OE','OE_ATTRIBUTE_REQUIRED');
87: FND_MESSAGE.SET_TOKEN('REVISION','revision');
88: OE_MSG_PUB.Add;

Line 88: OE_MSG_PUB.Add;

84: /* IF OE_MSG_PUB.Check_Msg_Level(OE_MSG_PUB.G_MSG_LVL_ERROR)
85: THEN
86: FND_MESSAGE.SET_NAME('OE','OE_ATTRIBUTE_REQUIRED');
87: FND_MESSAGE.SET_TOKEN('REVISION','revision');
88: OE_MSG_PUB.Add;
89: x_return_status := l_return_status;
90:
91: END IF;
92: */

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

93: ELSE
94: -- attribute changed , revison changed
95: l_return_status := FND_API.G_RET_STS_SUCCESS;
96: /*
97: IF OE_MSG_PUB.Check_Msg_Level(OE_MSG_PUB.G_MSG_LVL_ERROR)
98: THEN
99: FND_MESSAGE.SET_NAME('OE','Changed OE_ATTRIBUTE_REQUIRED');
100: FND_MESSAGE.SET_TOKEN('REVISION','revision');
101: OE_MSG_PUB.Add;

Line 101: OE_MSG_PUB.Add;

97: IF OE_MSG_PUB.Check_Msg_Level(OE_MSG_PUB.G_MSG_LVL_ERROR)
98: THEN
99: FND_MESSAGE.SET_NAME('OE','Changed OE_ATTRIBUTE_REQUIRED');
100: FND_MESSAGE.SET_TOKEN('REVISION','revision');
101: OE_MSG_PUB.Add;
102: x_return_status := l_return_status;
103: END IF;
104: */
105: end if;

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

107: ELSE
108: -- revison codes are equal
109: l_return_status := FND_API.G_RET_STS_SUCCESS;
110: /*
111: IF OE_MSG_PUB.Check_Msg_Level(OE_MSG_PUB.G_MSG_LVL_ERROR)
112: THEN
113: FND_MESSAGE.SET_NAME('OE','Equal OE_ATTRIBUTE_REQUIRED');
114: FND_MESSAGE.SET_TOKEN('REVISION','revision');
115: OE_MSG_PUB.Add;

Line 115: OE_MSG_PUB.Add;

111: IF OE_MSG_PUB.Check_Msg_Level(OE_MSG_PUB.G_MSG_LVL_ERROR)
112: THEN
113: FND_MESSAGE.SET_NAME('OE','Equal OE_ATTRIBUTE_REQUIRED');
114: FND_MESSAGE.SET_TOKEN('REVISION','revision');
115: OE_MSG_PUB.Add;
116: END IF;
117: */
118: end if;
119:

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

159: WHEN OTHERS THEN
160:
161: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
162:
163: IF OE_MSG_PUB.Check_Msg_Level(OE_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
164: THEN
165: OE_MSG_PUB.Add_Exc_Msg
166: ( G_PKG_NAME
167: , 'Entity'

Line 165: OE_MSG_PUB.Add_Exc_Msg

161: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
162:
163: IF OE_MSG_PUB.Check_Msg_Level(OE_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
164: THEN
165: OE_MSG_PUB.Add_Exc_Msg
166: ( G_PKG_NAME
167: , 'Entity'
168: );
169: END IF;

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

214:
215:
216: if l_Count <> 0 then
217: l_return_status := FND_API.G_RET_STS_ERROR;
218: IF OE_MSG_PUB.Check_Msg_Level(OE_MSG_PUB.G_MSG_LVL_ERROR)
219: THEN
220: FND_MESSAGE.SET_NAME('OE','ATTRIBUTE_REQUIRED');
221: FND_MESSAGE.SET_TOKEN('REVISION','revision');
222: OE_MSG_PUB.Add;

Line 222: OE_MSG_PUB.Add;

218: IF OE_MSG_PUB.Check_Msg_Level(OE_MSG_PUB.G_MSG_LVL_ERROR)
219: THEN
220: FND_MESSAGE.SET_NAME('OE','ATTRIBUTE_REQUIRED');
221: FND_MESSAGE.SET_TOKEN('REVISION','revision');
222: OE_MSG_PUB.Add;
223: END IF;
224: RAISE PLL_DUPLICATES;
225: end if;
226:

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

1002: WHEN OTHERS THEN
1003:
1004: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
1005:
1006: IF OE_MSG_PUB.Check_Msg_Level(OE_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
1007: THEN
1008: OE_MSG_PUB.Add_Exc_Msg
1009: ( G_PKG_NAME
1010: , 'Attributes'

Line 1008: OE_MSG_PUB.Add_Exc_Msg

1004: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
1005:
1006: IF OE_MSG_PUB.Check_Msg_Level(OE_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
1007: THEN
1008: OE_MSG_PUB.Add_Exc_Msg
1009: ( G_PKG_NAME
1010: , 'Attributes'
1011: );
1012: END IF;

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

1044: WHEN OTHERS THEN
1045:
1046: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
1047:
1048: IF OE_MSG_PUB.Check_Msg_Level(OE_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
1049: THEN
1050: OE_MSG_PUB.Add_Exc_Msg
1051: ( G_PKG_NAME
1052: , 'Entity_Delete'

Line 1050: OE_MSG_PUB.Add_Exc_Msg

1046: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
1047:
1048: IF OE_MSG_PUB.Check_Msg_Level(OE_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
1049: THEN
1050: OE_MSG_PUB.Add_Exc_Msg
1051: ( G_PKG_NAME
1052: , 'Entity_Delete'
1053: );
1054: END IF;