DBA Data[Home] [Help]

APPS.OE_BULK_PRICEORDER_PVT dependencies on OE_ORDER_HEADERS

Line 615: UPDATE OE_ORDER_HEADERS

611: SET booked_flag = 'N'
612: ,flow_status_code = 'ENTERED'
613: WHERE header_id = p_header_rec.header_id(p_index);
614:
615: UPDATE OE_ORDER_HEADERS
616: SET booked_flag = 'N'
617: ,booked_date = NULL
618: ,flow_status_code = 'ENTERED'
619: WHERE header_id = p_header_rec.header_id(p_index);

Line 676: update oe_order_headers_all set booked_flag = 'Y'

672:
673: -- Update the booked flag only if real Time CC is required
674: -- else the booked_flag is already set on the record
675: IF OE_BULK_ORDER_PVT.G_REALTIME_CC_REQUIRED = 'Y' THEN
676: update oe_order_headers_all set booked_flag = 'Y'
677: where header_id = p_header_rec.header_id(i);
678: END IF;
679:
680: IF OE_BULK_CACHE.IS_CC_REQUIRED(p_header_rec.order_type_id(i))