DBA Data[Home] [Help]

APPS.GMI_PICK_RELEASE_PVT dependencies on FND_MSG_PUB

Line 246: FND_MSG_PUB.Add;

242: THEN
243: FND_MESSAGE.SET_NAME('GMI','INV_ITEM_NOTFOUND');
244: FND_MESSAGE.Set_Token('ORGANIZATION_ID', p_mo_line_rec.organization_id);
245: FND_MESSAGE.Set_Token('INVENTORY_ITEM_ID', p_mo_line_rec.inventory_item_id);
246: FND_MSG_PUB.Add;
247: RAISE FND_API.G_EXC_ERROR;
248: END IF;
249: CLOSE c_mtl_items;
250:

Line 265: FND_MSG_PUB.Add;

261: THEN
262: FND_MESSAGE.SET_NAME('GMI','INV_DELIV_INFO_MISSING');
263: FND_MESSAGE.Set_Token('ORGANIZATION_ID', p_mo_line_rec.organization_id);
264: FND_MESSAGE.Set_Token('FROM_SUBINVENTORY_CODE', p_mo_line_rec.from_subinventory_code);
265: FND_MSG_PUB.Add;
266: RAISE FND_API.G_EXC_ERROR;
267: END IF;
268: CLOSE c_second_inventory;
269: END IF;

Line 281: FND_MSG_PUB.add;

277: IF ( c_transaction_type%NOTFOUND )
278: THEN
279: FND_MESSAGE.set_name('GMI', 'INV_INT_TXN_CODE');
280: FND_MESSAGE.Set_Token('TRANSACTION_TYPE_ID', p_mo_line_rec.transaction_type_id);
281: FND_MSG_PUB.add;
282: RAISE FND_API.G_EXC_ERROR;
283: END IF;
284: CLOSE c_transaction_type;
285:

Line 293: FND_MSG_PUB.Add;

289: l_mso_header_id := INV_SALESORDER.GET_SALESORDER_FOR_OEHEADER(l_demand_info.oe_header_id);
290: IF ( l_mso_header_id IS NULL ) THEN
291: FND_MESSAGE.SET_NAME('GMI','INV_COULD_NOT_GET_MSO_HEADER');
292: FND_MESSAGE.Set_Token('OE_HEADER_ID', l_demand_info.oe_header_id);
293: FND_MSG_PUB.Add;
294: RAISE FND_API.G_EXC_ERROR;
295: END IF;
296:
297: /* find out the corresponding delivery detail id to fill in ic_tran_pnd */

Line 368: FND_MSG_PUB.Add;

364: ROLLBACK TO Process_Line_PVT;
365: FND_MESSAGE.SET_NAME('GMI','GMI_ERROR');
366: FND_MESSAGE.Set_Token('BY_PROC', 'GMI_Reservation_Util.Reallocate');
367: FND_MESSAGE.Set_Token('WHERE', 'GMI_Pick_Release_PVT.Process_Line');
368: FND_MSG_PUB.Add;
369: RAISE FND_API.G_EXC_ERROR;
370: END IF;
371: END LOOP;
372: END IF; /* The item is reservable */

Line 389: /* FND_MSG_PUB.Add; */

385: /* IF l_quantity_detailed < p_mo_line_rec.primary_quantity THEN */
386: /* GMI_Reservation_Util.PrintLn('qty detailed < mo_line.primary_qty : Couldnt Pick Full'); */
387: /* ROLLBACK TO Process_Line_PVT; */
388: /* FND_MESSAGE.SET_NAME('INV','INV_COULD_NOT_PICK_FULL'); */
389: /* FND_MSG_PUB.Add; */
390: /* RAISE fnd_api.g_exc_unexpected_error; */
391: /* END IF; */
392:
393: /* ============================================================================ */

Line 429: FND_MSG_PUB.Add;

425: ROLLBACK TO Process_Line_PVT;
426: FND_MESSAGE.SET_NAME('GMI','GMI_ERROR');
427: FND_MESSAGE.Set_Token('BY_PROC', 'GMI_Pick_Release_Util.Create_Pick_Slip_and_Print');
428: FND_MESSAGE.Set_Token('WHERE', 'GMI_Pick_Release_PVT.Process_Line');
429: FND_MSG_PUB.Add;
430: RAISE FND_API.G_EXC_ERROR;
431: END IF;
432:
433:

Line 442: FND_MSG_PUB.count_and_get

438: WHEN FND_API.G_EXC_ERROR THEN
439: x_return_status := FND_API.G_RET_STS_ERROR;
440:
441: /* Get message count and data */
442: FND_MSG_PUB.count_and_get
443: ( p_count => x_msg_count
444: , p_data => x_msg_data
445: );
446:

Line 451: FND_MSG_PUB.Add_Exc_Msg ( G_PKG_NAME

447:
448: WHEN OTHERS THEN
449: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
450:
451: FND_MSG_PUB.Add_Exc_Msg ( G_PKG_NAME
452: , l_api_name
453: );
454:
455: /* Get message count and data */

Line 456: FND_MSG_Pub.Count_and_Get

452: , l_api_name
453: );
454:
455: /* Get message count and data */
456: FND_MSG_Pub.Count_and_Get
457: ( p_count => x_msg_count
458: , p_data => x_msg_data
459: );
460: