Categories
Display data in sections Dashboard or Analysis
Answers
-
The very basic idea is the following.
1. You create a report col1, col2, col3 and so on.
2. Add a narrative view.
3. Write HTML of your choice. You can reference columns by @1, @2 and so on (@1 - the first report column, @2 - the second...).
4. Set "Contains HTML Markup" flag.
So your report with minimal markup could be the following:
candidate name @1
<table>
<tr><td>fname </td><td>lname </td><td>age </td><td>city</td></tr>
<tr><td>@2</td><td>@3</td><td>@4</td><td>@5</td></tr>
</table>
<table>
<tr><td>job</td><td>startdate</td><td>enddate</td></tr>
<tr><td>@6</td><td>@7</td><td>@8</td></tr>
</table>
5. Add more HTML markup.
That's the basics.
Remember I said that my report was quick and dirty? I made it by copying and pasting some OBIEE pivot table code. Here is the sample: BI 12.2.1 Sample App (V511) (username is prodney and password is Admin123).
0 -
Dude thanks a lottt for your help
thnx
0