[Home] [Help]
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))