DBA Data[Home] [Help]

APPS.OE_EDI_PVT dependencies on OE_MSG_PUB

Line 135: OE_MSG_PUB.set_msg_context(

131: IF l_debug_level > 0 THEN
132: oe_debug_pub.add( 'BEFORE SETTING MESSAGE CONTEXT' ) ;
133: END IF;
134:
135: OE_MSG_PUB.set_msg_context(
136: p_entity_code => 'HEADER'
137: ,p_entity_ref => null
138: ,p_entity_id => null
139: ,p_header_id => l_header_rec.header_id

Line 175: OE_MSG_PUB.Add;

171: IF l_debug_level > 0 THEN
172: oe_debug_pub.add( 'CHANGE SEQUENCE NOT REQUIRED FOR NEW ORDERS... ' ) ;
173: END IF;
174: FND_MESSAGE.SET_NAME('ONT','OE_OI_CHANGE_SEQUENCE');
175: OE_MSG_PUB.Add;
176: p_return_status := FND_API.G_RET_STS_ERROR;
177: END IF;
178:
179: ELSIF l_header_rec.operation = OE_Globals.G_OPR_DELETE THEN

Line 185: OE_MSG_PUB.Add;

181: IF l_debug_level > 0 THEN
182: oe_debug_pub.add( 'CHANGE SEQUENCE NOT REQUIRED FOR DELETING EXISTING ORDERS... ' ) ;
183: END IF;
184: FND_MESSAGE.SET_NAME('ONT','OE_OI_CHANGE_SEQUENCE');
185: OE_MSG_PUB.Add;
186: p_return_status := FND_API.G_RET_STS_ERROR;
187: END IF;
188:
189: ELSIF l_header_rec.operation = OE_Globals.G_OPR_UPDATE THEN

Line 195: OE_MSG_PUB.Add;

191: IF l_debug_level > 0 THEN
192: oe_debug_pub.add( 'CHANGE SEQUENCE REQUIRED FOR CHANGES TO AN EXISTING ORDER... ' ) ;
193: END IF;
194: FND_MESSAGE.SET_NAME('ONT','OE_OI_CHANGE_SEQUENCE');
195: OE_MSG_PUB.Add;
196: p_return_status := FND_API.G_RET_STS_ERROR;
197: ELSE
198: /* -----------------------------------------------------------
199: Validate change out nocopy of sequence

Line 227: IF OE_MSG_PUB.Check_Msg_Level(OE_MSG_PUB.G_MSG_LVL_UNEXP_ERROR) THEN

223: IF l_debug_level > 0 THEN
224: oe_debug_pub.add( 'UNEXPECTED ERROR: '||SQLERRM ) ;
225: END IF;
226:
227: IF OE_MSG_PUB.Check_Msg_Level(OE_MSG_PUB.G_MSG_LVL_UNEXP_ERROR) THEN
228: p_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
229: OE_MSG_PUB.Add_Exc_Msg (G_PKG_NAME, 'Pre_Process.header_change_sequence_validation');
230: END IF;
231: END; -- header change sequence is not null

Line 229: OE_MSG_PUB.Add_Exc_Msg (G_PKG_NAME, 'Pre_Process.header_change_sequence_validation');

225: END IF;
226:
227: IF OE_MSG_PUB.Check_Msg_Level(OE_MSG_PUB.G_MSG_LVL_UNEXP_ERROR) THEN
228: p_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
229: OE_MSG_PUB.Add_Exc_Msg (G_PKG_NAME, 'Pre_Process.header_change_sequence_validation');
230: END IF;
231: END; -- header change sequence is not null
232: END IF; -- If header change sequence is...
233: END IF; -- If header operation code is...