Oracle Analytics Cloud and Server

Welcome to the Oracle Analytics Community: Please complete your User Profile and upload your Profile Picture

Display data in sections Dashboard or Analysis

Received Response
22
Views
12
Comments
2»

Answers

  • Rank 6 - Analytics Lead

    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&lt;/td><td>@3&lt;/td><td>@4&lt;/td><td>@5&lt;/td></tr>

    </table>


    <table>

    <tr><td>job</td><td>startdate</td><td>enddate</td></tr>

    <tr><td>@6&lt;/td><td>@7&lt;/td><td>@8&lt;/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).

  • Rank 3 - Community Apprentice

    Dude thanks a lottt for your help

    thnx

Welcome!

It looks like you're new here. Sign in or register to get started.