Greetings,
I'm creating a report that displays current product requirements and a sum of five-day demand. I need to show product SKUs by type, the current demand, the ship date, and the TOTAL demand for each SKU with ship dates +1 up to +5 days out. In short, it needs to look something like this:
GROUP: Item Type
DETAIL:
SKU ON HAND ON ORDER SHIP DATE Day1 Day2 Day3 ...
XXX 55 24 06/29/2003 30 2 34 ...
YYY 35 12 06/29/2003 19 12 14 ...
ZZZ 41 30 06/29/2003 26 8 20 ...
But the ship date is part of the record, so what I'm getting when I try to sum is more like this:
GROUP: Item Type
DETAIL:
SKU ON HAND ON ORDER SHIP DATE Day1 Day2 Day3 ...
XXX 55 24 06/29/2003 0 2 0 ...
YYY 35 12 06/29/2003 0 0 14 ...
ZZZ 41 30 06/29/2003 0 0 0 ...
I know that this can probably be done easily enough with a sub report, but I don't really want to go that route because of the delays in processing the subreport after the main report is evaluated.
I'm using 8.5 (project will migrate to 9, so I can build either way) Hitting Informix database
Thanks,
SI
I'm creating a report that displays current product requirements and a sum of five-day demand. I need to show product SKUs by type, the current demand, the ship date, and the TOTAL demand for each SKU with ship dates +1 up to +5 days out. In short, it needs to look something like this:
GROUP: Item Type
DETAIL:
SKU ON HAND ON ORDER SHIP DATE Day1 Day2 Day3 ...
XXX 55 24 06/29/2003 30 2 34 ...
YYY 35 12 06/29/2003 19 12 14 ...
ZZZ 41 30 06/29/2003 26 8 20 ...
But the ship date is part of the record, so what I'm getting when I try to sum is more like this:
GROUP: Item Type
DETAIL:
SKU ON HAND ON ORDER SHIP DATE Day1 Day2 Day3 ...
XXX 55 24 06/29/2003 0 2 0 ...
YYY 35 12 06/29/2003 0 0 14 ...
ZZZ 41 30 06/29/2003 0 0 0 ...
I know that this can probably be done easily enough with a sub report, but I don't really want to go that route because of the delays in processing the subreport after the main report is evaluated.
I'm using 8.5 (project will migrate to 9, so I can build either way) Hitting Informix database
Thanks,
SI