How would I create variable sub-headers in a BIRT list..
The original BIRT list is as follows:
Sys_ID | Sys_Name | App_ID | App_Name
----------------------------------------
S1 | ABR | A1 | ABR: Bim
S1 | ABR | A2 | ABR: Dip
S1 | ABR | A3 | ABR: Saw
S2 | TIP | B1 | TIP: Yop
S2 | TIP | B2 | TIP: gum
S3 | GOO | C1 | GOO: res
I want to implement BIRT to show the following:
Sys_ID | Sys_Name | App_ID | App_Name
----------------------------------------
S1 | ABR | |
S1 | ABR | A1 | ABR: Bim
S1 | ABR | A2 | ABR: Dip
S1 | ABR | A3 | ABR: Saw
S2 | TIP |
S2 | TIP | B1 | TIP: Yop
S2 | TIP | B2 | TIP: gum
S3 | GOO | |
S3 | GOO | C1 | GOO: res
The Sys and App data are all implemented in one BIRT data set.
Can anyone please help?