Reputation: 177
I need to supress the repeated values in a table so it will look like:
x y z
- - u
- b z
- - u
y y z
- - u
instead:
x y z
x y u
x b z
x b u
y y z
y y u
In Oracle OBI I can do that editing column properties of a table:
But I can't find this option in column/table properties from Jdeveloper, there is a way to do this?
Upvotes: 0
Views: 178
Reputation: 3721
You can't do this in a table. You can use a pivot table to do this. Or you can use an af:iterator to create this type of UI.
Upvotes: 1