Oracle Transactional Business Intelligence

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

Projects - Performance Reporting Real Time

Received Response
51
Views
9
Comments
Pooja_123
Pooja_123 Rank 4 - Community Specialist

Here In above report I am trying to print class category column values as a separate column like GP Budget,GP Plan Year and GP Project Category. also want to print the value of column class code in it.

Is It possible in OTBI, please comfirm.

Answers

  • gclampitt
    gclampitt Rank 6 - Analytics Lead

    yes plenty examples on here -Just create a CASE statment for each one you want

    case when Classcatgory = 'A' then value end

    case when Classcatgory = 'B' then value end

  • Pooja_123
    Pooja_123 Rank 4 - Community Specialist
    edited Dec 18, 2024 8:47AM

    @gclampitt yes I tried that before but here we are getting 3 different rows. will it be possible to get it in one row.

  • gclampitt
    gclampitt Rank 6 - Analytics Lead

    Make sure rhe Dimension Class Category isn't in the table, then it will aggregate up and make sure the Aggregation of the measures are set to sum.
    My simple Example:

  • Pooja_123
    Pooja_123 Rank 4 - Community Specialist

    @gclampitt No not working for me even I removed the column from table. what next

  • gclampitt
    gclampitt Rank 6 - Analytics Lead

    Start of with a basic table and get it working, then add in the other dimensions one by one….there must be something causing an issue

  • Pooja_123
    Pooja_123 Rank 4 - Community Specialist

    @gclampitt This is OTBI report not a BIP report for table. we have to pull the data from subject area.

  • gclampitt
    gclampitt Rank 6 - Analytics Lead

    Yes i know - above is for OTBI.

    So create a simple otbi report and get it working like my example above, then add the rest of the detail you want one by one…

  • Pooja_123
    Pooja_123 Rank 4 - Community Specialist

    @gclampitt I used below formula

    case when "- Project Classification"."Project Classification Category Name"='GP Budgeted' then "- Project Classification"."Project Classification Name" end

    I hope this is correct

  • gclampitt
    gclampitt Rank 6 - Analytics Lead

    so if category is GP Budgeted , return the Classification name.
    if thats what you want, then yes seems correct
    Is it giving you what you want?