Data across in Bi publisher
To get the cross tab.
1. we need to find the number of columns to be displayed.
2. what is the element to be mapped as column ?
3. then create a table.
4. the first row of the table , we need to specify the colum heading.
so use the @column command
5. then in the rest of the row where you wanted to display the value ,
use @cell command
1. we need to find the number of columns to be displayed.
2. what is the element to be mapped as column ?
3. then create a table.
4. the first row of the table , we need to specify the colum heading.
so use the @column command
5. then in the rest of the row where you wanted to display the value ,
use @cell command
Comments
AAA
1000
100101
BBB
1000
100102
CCC
1000
100103
DDD
1000
100104
DISPLAY LIKE THIS
PAGE 1
-----------------------------------
AAA | BBB | CCC |
1000 | 1000 | 1000 |
100101 | 100102 | 100103 |
-----------------------------------
PAGE 2
-----------
DDD |
1000 |
100104 |
-----------
THANKS