DBA Data[Home] [Help]

APPS.AHL_OSP_RCV_PVT dependencies on OE_GLOBALS

Line 1711: l_oe_line_tbl(1).operation := OE_GLOBALS.G_OPR_CREATE;

1707: l_oe_line_tbl(1) := l_oe_line_rec;
1708: l_oe_line_tbl(1).inventory_item_id := p_rma_receipt_rec.EXCHANGE_ITEM_ID;
1709: l_oe_line_tbl(1).line_id := FND_API.G_MISS_NUM;
1710: l_oe_line_tbl(1).line_number := FND_API.G_MISS_NUM;
1711: l_oe_line_tbl(1).operation := OE_GLOBALS.G_OPR_CREATE;
1712:
1713: IF(p_rma_receipt_rec.EXCHANGE_SERIAL_NUMBER is not NULL OR p_rma_receipt_rec.EXCHANGE_LOT_NUMBER is not NULL) THEN
1714: --populate the lot_serial_rec
1715: l_oe_lot_serial_tbl(1).lot_serial_id := FND_API.G_MISS_NUM;

Line 1720: l_oe_lot_serial_tbl(1).operation := OE_GLOBALS.G_OPR_CREATE;

1716: l_oe_lot_serial_tbl(1).lot_number := p_rma_receipt_rec.exchange_lot_number;
1717: l_oe_lot_serial_tbl(1).from_serial_number := p_rma_receipt_rec.exchange_serial_number;
1718: l_oe_lot_serial_tbl(1).quantity := l_oe_line_rec.ordered_quantity;
1719: l_oe_lot_serial_tbl(1).line_index := 1;
1720: l_oe_lot_serial_tbl(1).operation := OE_GLOBALS.G_OPR_CREATE;
1721: END IF;
1722: /*Create the new RMA line*/
1723: IF (FND_LOG.LEVEL_STATEMENT >= FND_LOG.G_CURRENT_RUNTIME_LEVEL) THEN
1724: FND_LOG.STRING(FND_LOG.LEVEL_STATEMENT, L_DEBUG_KEY, 'About to call OE_ORDER_GRP.PROCESS_ORDER');