DBA Data[Home] [Help]

APPS.XDP_CANCEL_ORDER dependencies on OE_MSG_PUB

Line 175: -- Get the error and push it to the OE_MSG_PUB

171: itemkey => l_item_key);
172:
173: EXCEPTION
174: WHEN OTHERS THEN
175: -- Get the error and push it to the OE_MSG_PUB
176: wf_core.GET_ERROR(err_name => l_err_name,
177: err_message => l_err_message,
178: err_stack => l_err_stack,
179: maxErrStackLength => 900);

Line 183: OE_MSG_PUB.Add;

179: maxErrStackLength => 900);
180:
181: FND_MESSAGE.SET_NAME('XDP', 'XDP_INTFACE_PROCESS_FAIL');
182: FND_MESSAGE.SET_TOKEN('ERROR_MSG',l_err_name || ' : ' || l_err_message);
183: OE_MSG_PUB.Add;
184:
185: -- Return with Failure
186: x_result := 1;
187: return;

Line 195: -- Push a message in the OE_MSG_PUB Stack

191: x_result := 0;
192: return;
193: ELSE
194: ---------------------------------------------------------------
195: -- Push a message in the OE_MSG_PUB Stack
196: ---------------------------------------------------------------
197: error_message := FND_MSG_PUB.get(p_encoded => FND_API.g_false);
198: while (error_message is not null) loop
199: FND_MESSAGE.SET_NAME('XDP', 'XDP_INTFACE_PROCESS_FAIL');

Line 201: OE_MSG_PUB.Add;

197: error_message := FND_MSG_PUB.get(p_encoded => FND_API.g_false);
198: while (error_message is not null) loop
199: FND_MESSAGE.SET_NAME('XDP', 'XDP_INTFACE_PROCESS_FAIL');
200: FND_MESSAGE.SET_TOKEN('ERROR_MSG', error_message);
201: OE_MSG_PUB.Add;
202: error_message := FND_MSG_PUB.get(p_encoded => FND_API.g_false);
203: end loop;
204:
205: ---------------------------------------------------------------

Line 273: -- Get the error and push it to the OE_MSG_PUB

269: itemkey => l_item_key);
270:
271: EXCEPTION
272: WHEN no_data_found THEN
273: -- Get the error and push it to the OE_MSG_PUB
274: wf_core.GET_ERROR(err_name => l_err_name,
275: err_message => l_err_message,
276: err_stack => l_err_stack,
277: maxErrStackLength => 900);

Line 281: OE_MSG_PUB.Add;

277: maxErrStackLength => 900);
278:
279: FND_MESSAGE.SET_NAME('XDP', 'XDP_INTFACE_PROCESS_FAIL');
280: FND_MESSAGE.SET_TOKEN('ERROR_MSG',l_err_name || ' : ' || l_err_message);
281: OE_MSG_PUB.Add;
282: -- Return with Failure
283: x_result := 1;
284: return;
285: END;

Line 292: -- Push a message in the OE_MSG_PUB Stack

288: x_result := 0;
289: return;
290: ELSE
291: ---------------------------------------------------------------
292: -- Push a message in the OE_MSG_PUB Stack
293: ---------------------------------------------------------------
294: error_message := FND_MSG_PUB.get(p_encoded => FND_API.g_false);
295: while (error_message is not null) loop
296: FND_MESSAGE.SET_NAME('XDP', 'XDP_INTFACE_PROCESS_FAIL');

Line 298: OE_MSG_PUB.Add;

294: error_message := FND_MSG_PUB.get(p_encoded => FND_API.g_false);
295: while (error_message is not null) loop
296: FND_MESSAGE.SET_NAME('XDP', 'XDP_INTFACE_PROCESS_FAIL');
297: FND_MESSAGE.SET_TOKEN('ERROR_MSG', error_message);
298: OE_MSG_PUB.Add;
299: error_message := FND_MSG_PUB.get(p_encoded => FND_API.g_false);
300: end loop;
301:
302: ---------------------------------------------------------------