SELECT sm.SKU,
oh.order_number,
FROM OUTBOUND_HEADER oh,
SKU_MASTER sm,
WHERE sm.sku_master_id = oh.sku_master_id
I can't group by since they want to see each line just not the SKU (dups) since I am doing few calculations at the end. They only want to see blank line after SKU.
THanks
You could group on {table.F1}, but suppress the group header. The group footer would provide the space you're looking for. You can leave {table.F1} in the detail section as you have it now. This shouldn't affect any calculations.
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.