DBA Data[Home] [Help]

APPS.AHL_OSP_RCV_PVT dependencies on OE_GLOBALS

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

1984: l_oe_line_tbl(1) := l_oe_line_rec;
1985: l_oe_line_tbl(1).inventory_item_id := p_rma_receipt_rec.EXCHANGE_ITEM_ID;
1986: l_oe_line_tbl(1).line_id := FND_API.G_MISS_NUM;
1987: l_oe_line_tbl(1).line_number := FND_API.G_MISS_NUM;
1988: l_oe_line_tbl(1).operation := OE_GLOBALS.G_OPR_CREATE;
1989:
1990: IF(p_rma_receipt_rec.EXCHANGE_SERIAL_NUMBER is not NULL OR p_rma_receipt_rec.EXCHANGE_LOT_NUMBER is not NULL) THEN
1991: --populate the lot_serial_rec
1992: l_oe_lot_serial_tbl(1).lot_serial_id := FND_API.G_MISS_NUM;

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

1993: l_oe_lot_serial_tbl(1).lot_number := p_rma_receipt_rec.exchange_lot_number;
1994: l_oe_lot_serial_tbl(1).from_serial_number := p_rma_receipt_rec.exchange_serial_number;
1995: l_oe_lot_serial_tbl(1).quantity := l_oe_line_rec.ordered_quantity;
1996: l_oe_lot_serial_tbl(1).line_index := 1;
1997: l_oe_lot_serial_tbl(1).operation := OE_GLOBALS.G_OPR_CREATE;
1998: END IF;
1999: /*Create the new RMA line*/
2000: IF (FND_LOG.LEVEL_STATEMENT >= FND_LOG.G_CURRENT_RUNTIME_LEVEL) THEN
2001: FND_LOG.STRING(FND_LOG.LEVEL_STATEMENT, L_DEBUG_KEY, 'About to call OE_ORDER_GRP.PROCESS_ORDER');