Necesito unir la tabla ordenes y detalle ordenes. Luego dividir el archivo por periodo con su respectivo resultado .
Desde ya agradezco la ayuda!!
SET vLOOPSTART = 1;
DO WHILE vLOOPSTART <= MAX (FECHA)
//Variable en la cual coloco donde voy a guardar mis archivos por periodo//
SET PerQVD = 'C:\Proyecto Qlick\Material\ArchivosPorPeriodo';
LET vPeriodo = DATE(TODAY()-i, 'YYYYMMDD');
//-----------------TABLA ORDERS------------------//
Orders:
LOAD CustomerID,
EmployeeID,
Freight,
Year,
Month,
Day,
NUM(Year) &''& NUM(Month) &''& NUM(Day) as FECHA,
OrderID,
ContadorIDProductos,
ShipperID
FROM
[..\..\..\..\Proyecto Qlick\Material\DATA_ORDERS.qvd]
(qvd);
//-------------------TABLA ORDERS DETAILS---------------//
OrderDetails:
Left Join(Orders)LOAD Discount,
LineNo,
OrderID,
countProduct,
ProductID,
Quantity,
UnitPrice,
LineSalesAmount
FROM
[..\..\..\..\Proyecto Qlick\Material\DATA_ORDERS_DETAILS.qvd]
(qvd);
STORE Orders INTO Ordenes_periodo.qvd(QVD);
NEXT