Oracle and CR11
I have Type, Order, Line, Value (may be null), Shipped (may be null)
West, A100, 2, 100, 10
West, A100, 3, ,100
West, A100, 7, 50,
West, A200, 2, ,100
West, A200, 5, , 50
My top group = Type. I need a lower group: one where at least one line of the order has Value not null (IN), the other group is where every line in the order has Value = null (OUT)
So using the above example A100 is in the first group because of line 2:
WEST
IN
A100, 2, 100, 10
A100, 3, ,100
A100, 7, , 50
OUT
A200, 2, ,100
A200, 5, , 50
I can’t do this at the database level because of other parameters used. I can't figure out how to do this in the report.
I have Type, Order, Line, Value (may be null), Shipped (may be null)
West, A100, 2, 100, 10
West, A100, 3, ,100
West, A100, 7, 50,
West, A200, 2, ,100
West, A200, 5, , 50
My top group = Type. I need a lower group: one where at least one line of the order has Value not null (IN), the other group is where every line in the order has Value = null (OUT)
So using the above example A100 is in the first group because of line 2:
WEST
IN
A100, 2, 100, 10
A100, 3, ,100
A100, 7, , 50
OUT
A200, 2, ,100
A200, 5, , 50
I can’t do this at the database level because of other parameters used. I can't figure out how to do this in the report.