BO to OBIEE Reports

HI Experts,
I'm very new to OBIEE, Can any one helo me how to migrate BO reports to OBIEE.
Actually we have BO reports , so we need to develop the OBIEE reports to based on BO reports, I don't know the procedure or step. Can any one expalin me onthis.
Thanks,
Vas

HI,
Thanks for your reply, I need some more information.
Is there any steps to follw to migrate BO reports like connection source and need to identify dimensions and fact tables right, if possible can you please help me onthis.
my mail id: [email protected]
Thanks,
Vas

Similar Messages

  • How to increas the width of the Table in OBIEE Report

    Hi ,
    I am creating a OBIEE report, the report has table and 30 column in it. When I am viewing the report in an excel file , its appearing good but the width of the table is so small if I am viewing the same in internet explorer/PDF .I dont know how to increase the width of the table. Could you please sort this issue out.
    Thanks
    Govindan P

    - you can increase the width of a column -> column format values -> Additional Formatting Options
    increase the width:
    - Report level:
    result tab -> Click on Format container of Table -> Additional Formatting Options
    u can assign value width : 500 height:.....
    - dashboard level:
    Edit options -> section -> Format section -> Additional Formatting Options
    here also u can change the width
    u can assign value width : 500 height:.....
    pls mark it helps....
    Edited by: 979481 on Feb 6, 2013 1:25 AM

  • Help required in building OBIEE Report

    Hi,
    Can anyone help me to below OBIEE issues as I am very new to this field.
    1. The requirement is to create one Oracle Apps Projects OBIEE report which was previously in discoverer. The discoverer report has 6 worksheet and many custom folders and many custom functions used in worksheet. Now my question is what will be the best design in OBIEE RPD? As the data are coming as joining many folders so how that can be managed in OBIEE RPD physical layer?
    2. How custom database functions can be called in OBIEE? The discoverer report has multiple database functions (coming from custom package))called in Calculation in worksheet level so how can I call these database functions to OBIEE rpd or OBIEE answers?
    3. How do I make dimension fact in business mapping layer as the base report is based on the discoverer custome folders? So what will be the best case design for fact dimension?
    4. How the data LOV can be created in OBIEE?
    5. Is there any way to create sql queries in rpd for obiee reports? Suppose I have source data like this
    select ....
    from table a, table b
    where joins..........
    union
    select statements.
    How this type of data can be mapped into obiee rpd?
    The requirement is to fetch the data directly from oracle ebs in obiee rpd without going to ETL.
    Please help.
    Thanks & Regards,
    Titas
    Edited by: 868487 on Jun 26, 2012 12:37 PM

    One thing you could do is create an object model first, which will contain all the data for your user.
    then all you need in the bean is a Hashtable with the name of the user as a key, and the user-object (which is actually the complete object model) as a value.
    with the XML stated by you, you would get an object model something like this:
    Class User
        String cwsid;
        String firstName;
        ArrayList<Role> roles = new ArrayList<Role>(); //I'm assuming a user can have more then one role.
        ArrayList<Country> countries = new ArrayList<Country>();
    class Role {
        String code;
        String name;
    class Country {
        String code;
        String name;
    }And so on for all the varioous elemets of your XML.

  • Obiee report two rows  data present in single row

    Hi Experts,
    I have facing one problem how to reslove this problem let me know.
    In DB Table like this.
    Sno **** Value1 **** Value2
    10 ******** 100 ******* 0
    10 **** *** 0 ******* 200
    i want to out put Obiee reports like this ?????????
    sno ***** value1 **** value2
    10 ****** 100 **** 200
    How to achive this please tell me any method
    i am using obiee 10.1.3.4.1 version (i am try to create report OBIEE answers )
    Thanks
    Satya
    Edited by: satya vardhan on Jul 11, 2011 6:56 PM

    Try going it by Sno.
    If you are using Pivot Table, try changing measures from columns to rows and see. I vaguely remember doing this would address your need
    Thanks,
    Vinag

  • OBIEE Report w/Drilldown

    I have the following requirment to create a report from a relational model.
    Report needs to show the following:
    Location
    Date
    Number of Visits to Location (Per Month)
    Number of Visits to Location (Per Day)
    Number of Visits to Location (Per Time Interval/Every 30 minutes)
    Report needs to drill down as follows:
    Drilldown on Location to show all dates in month that had visits for that location.
    Drilldown on date to show all visits for that day with times.
    Currently all the above information is available in one view in database. How can I make this into an OBIEE report. Thanks in advance!

    shaolin_obiee wrote:
    I have the following requirment to create a report from a relational model.
    Report needs to show the following:
    Location
    Date
    Number of Visits to Location (Per Month)
    Number of Visits to Location (Per Day)
    Number of Visits to Location (Per Time Interval/Every 30 minutes)
    Report needs to drill down as follows:
    Drilldown on Location to show all dates in month that had visits for that location.
    Drilldown on date to show all visits for that day with times.
    Currently all the above information is available in one view in database. How can I make this into an OBIEE report. Thanks in advance!If you could post few sample records from the view, it would help us understand the structure of the data and help you build out the RPD to acheive the reporting requirements.
    Thanks,
    -Amith.

  • OBIEE report with Click button ( want to perform some actions)

    Hi Experts,
    My users want to make adhoc changes to an OBIEE report where I want to place a click button at the bottom of the report. Once the changes are done, They want to click the button so that the most current logical sql is captured and then it takes to another http url .
    If any one have worked or has any ideas on this, Please share. Thanks in Advance.
    S

    Hi S,
    Can you elaborate on what you mean by capturing the most current logical SQL?
    What you are asking is only going to be as difficult as it is to perform the above action. The button and the navigate are simple.
    John Minkjan shows you how to make a clear button here.
    Basically you leverage the OBIEE class XUIPromptEntry minibuttonOn.
    Here's the code (NOTE: You have to change the curly brackets to angular brackets):
    {div class="XUIPromptEntry minibuttonOn"}{a href="#" onclick="return PersonalizationEditor.removeDefaultSelection(false)"}Clear{a}{div}
    You can take this and modify it slightly to fit your purpose:
    {div class="XUIPromptEntry minibuttonOn"}{a href="(URL to move to)" onclick="(javascript function that performs your task)"}Do Action Button{a}{div}
    In the above, you will put the URL you want to navigate to in the (URL to move to) area. Then in the onclick function, you're going to want to write a javascript function that captures the latest logical SQL and have OBIEE call that function.
    All that being said, this effort hinges on whether or not a javascript function can perform your task.
    If you can elaborate on what you mean, I might be able to get you started on that function.
    Good luck and if you found this post useful, please award points!
    Best regards,
    -Joe

  • OBIEE Report using webservices : problem using the htmlviewservice.

    Hi,
    I have a requirement that i have to display OBIEE report on web browser.
    i followed the following article for achieving this. http://oraclebizint.wordpress.com/2007/07/31/customizing-obi-ee-soap-api/.
    I have a problem while creation of the html page.
    the given sample code consists the following.
    startIndex = htmlOutput.indexOf("IFRAME SRC=");
    endIndex = htmlOutput.indexOf("%3aEI Index",startIndex);
    startIndex = startIndex + 12;
    endIndex = endIndex + 10;
    System.out.println("start Index ="+ startIndex+"\n"+"end Index ="+endIndex);
    url ="<HTML><BODY><IFRAME SRC=\"" +htmlOutput.substring(startIndex,endIndex) +"\"></BODY></HTML>";
    But i didn't understand the given lines of the code. I tried a code like url = "<HTML><BODY>"+ headerHTML+htmlOutput + "</BODY></HTML>";
    I am able to get the reportId, sessionId, pageId. After creation of the html page, it always display a rotating clock.
    please help me how to get the report on html page with the url.
    Thanks in advance.
    Udaykiran.
    Edited by: UdayKiran on Sep 28, 2011 3:31 PM

    Oracle accepted this as a Bug
    Bug 14606826 - SOAP CALL FROM EXTERNAL JAVA APPLICATION TO OBIEE11G NOT RETURNING ANY DATA

  • OBIEE Report Export from Dashboard to Excel doesn't suppress the columns as

    OBIEE Report Export from Dashboard to Excel doesn't suppress the columns as expected even after the properties are set to Suppress in the report. In Dashboard it is suppressed Properly but in the excel export it is not suppressed and values for the columns are repeated.
    Added the following to the instanceconfig :
    <Download>
    <Export xsi:type="excel">
    <DataValue>UseFormattedValue</DataValue>
    <RepeatRows>false</RepeatRows>
    </Export>
    </Download>
    But then could not restart services.The following error occured :
    Util Logger] Exception occurred:
         Severity:1
         Type:PKN3saw9ExceptionE
         File:saxreader.cpp
         Line:681
         Message:Sax parser returned an exception.
    Message: The prefix 'xsi' has not been mapped to any URI, Entity publicId: /oracle/ofm/instances/instance1/config/OracleBIPresentationServicesComponent/coreapplication_obips1/instanceconfig.xml, Entity systemId: , Line number: 43, Column number: 26
    Edited by: 887111 on Mar 27, 2013 11:23 PM

    Problem solved!!
    <br><br>
    See this part of the query:
    <br><br>
    if :P15_GESTOR_PROPIETARI='-3' then<br>
    w:= w||' AND (("STASVWREPORT_TASQUES"."GES_GES_ID"=:GESTOR ';<br>
    w:= w||'OR "STASVWREPORT_TASQUES"."GES_GES_ID_ESTA_ASSIGNADA"=:GESTOR)';<br>
    w:= w||'OR ("STASVWREPORT_TASQUES"."AGR_***_***_ID"=<FONT color=red>:P15_CANVI_DE_CLUB</FONT> ';
    w:= w||' AND "STASVWREPORT_TASQUES"."PUBLICA"=''S''))';<br>
    end if;<br>
    <br>
    when instead of :P15_CANVI_DE_CLUB I put a value (say ''EE'') it works correctly, finally I created an application item (ASSOCIAT) and when when I change :P15_CANVI_DE_CLUB I set :ASSOCIAT to the same value and the query is based on this application item:
    <br><br>
    if :P15_GESTOR_PROPIETARI='-3' then<br>
    w:= w||' AND (("STASVWREPORT_TASQUES"."GES_GES_ID"=:GESTOR ';<br>
    w:= w||'OR "STASVWREPORT_TASQUES"."GES_GES_ID_ESTA_ASSIGNADA"=:GESTOR)';<br>
    w:= w||'OR ("STASVWREPORT_TASQUES"."AGR_***_***_ID"=<FONT color=red>:ASSOCIAT </FONT>';<br>
    w:= w||' AND "STASVWREPORT_TASQUES"."PUBLICA"=''S''))';<br>
    end if;<br>
    <br>

  • OBIEE Report and Dashboard development best practice

    Hi All,
    Is there any best practice available on OBIEE report and dashboard development? Any help would be appreciated.
    Thanks,
    RK

    http://forums.oracle.com/forums/thread.jspa?messageID=2718365
    this might help you
    Thanks

  • Linking to an OBIEE report without showing the user and password

    Hi!
    we are trying to access to an obiee report from an external portal (coded with php).
    The idea is that the user clicks on a link an gets the report in pdf format. For that purpose we are using this url:
    http://ttivobiee01:7001/analytics/saw.dll?Go&Path=/shared/Prueba/ogp_obi&Action=Print&P0=1&P1=eq&P2="Criteria"."Key"&P3=1402&NQuser=user&NQPassword=pass&format=pdf
    But this url is expossing OBIEE's user and password.
    In order to avoid this security issue we tried to do an wget of the url but it doesn't return the report. Instead we get an html, which seams to download the report chunk by chunk (using javaScript).
    The question is, is there any way that we could let our portal ussers access to an obbie report without expossing the user and password?
    I have been looking into oracle forums and have found this: OBIEE Go URL with password protected
    but we couldn't use this aproach due to security issues.
    Thanks!
    Nuria

    Hi!
    We have finally done this (and it works!)
    <?php
    $urlInforme='http://obi:7001/analytics/saw.dll?Go&Path=/shared/Prueba/ogp_obi&Action=Print&P0=1&P1=eq&P2="Criterios"."Clave oficial"&P3=1402&NQuser=user&NQPassword=pass&format=pdf';
    $ch = curl_init($urlInforme);
    $ckfile = tempnam ("./", "CURLCOOKIE");
    $ch = curl_init ($urlInforme);
    curl_setopt ($ch, CURLOPT_COOKIEJAR, $ckfile);
    curl_setopt ($ch, CURLOPT_RETURNTRANSFER, true);
    $output = curl_exec ($ch);
    $ch = curl_init ($urlInforme);
    curl_setopt ($ch, CURLOPT_COOKIEFILE, $ckfile);
    curl_setopt ($ch, CURLOPT_RETURNTRANSFER, true);
    $fp = fopen("salida.pdf", "w");
    curl_setopt($ch, CURLOPT_FILE, $fp);
    $output = curl_exec ($ch);
    curl_close($ch);
    fclose($fp);

  • How to call an OBIEE report from EBS

    Hi,
    I'm trying to call an OBIEE report from an EBS menu.
    I have setup the following form function calling SSWA jsp type function
    Web HTML
    OracleOasis.jsp?mode=OBIEE&function=Go&Path=/shared/APA%20Real%20Time/AR/AR02%20Revenue%20by%20Account%20Report&Action=Prompt
    When I click the menu item OBIEE returns the following;
    No Columns
    The request cannot be performed because it contains no columns.
    Can anyone please enlighten me on how to do this correctly
    Thanks
    Phil
    Edited by: user462334 on 28/07/2010 21:50

    Hi Phil,
    I did some further investigation. The syntax to your Oracle BI Answers should be as follows;
    OracleOasis.jsp?mode=OBIEE&function=Go&parameters=Path~/shared/APA%20Real%20Time/AR/AR02%20Revenue%20by%20Account%20Report
    Check the following for more details;
    http://obibb.wordpress.com/2010/08/05/integrating-oracle-ebs-and-oracle-bi-ee-links/
    Cheers
    Daan Bakboord
    http://obibb.wordpress.com/

  • Accessing OBIEE report  from mobile browser or tablet

    HI
    jdev 11.1.1.5
    we have OBIEE reports embeded in adf jspx page .
    can we access this report from mobile browser or tablet ?
    I think we can access OBIEE report using OBIEE client application for Iphone.
    but is it possible to access the same from mobile browser?(embeded in adf application)

    chk this
    http://blogs.forrester.com/boris_evelson/10-07-07-oracle_obiee_11g_launch_we_are_back
    Mobile BI apps delivered to iPhone/iPad, BlackBerry, Android and Windows Mobile devices

  • How to retrieve data from xml file into obiee reports

    Hi all,
    I've got a situation here. A xml file is stored as blob in oracle database table. Now i need to retrieve data/info from that xml file into obiee reports. How am i supposed to proceed with this ?

    I will go for a table function:
    http://gerardnico.com/wiki/database/oracle/table_function
    In two words, you can create a function that behave as a table. Then you create a function to pick up your xml, you parse it and you send back the rows.
    I know that Oracle has also a library for XML files but I never use it until now.
    Success
    Nico

  • How to place one column under another column in obiee report?

    Hi all,
    I am new to obiee, so need some help from obiee experts. Can anyone tell me how to place one column data under another column in obiee report?
    i need the report to be as below
    category total_students Course_enrollment Test_attended pass_test
    total N % N % N %
    all students ##### ## ## ## ## ## ##
    Ethnicity
    Asian ###### ## ## ## ## ## ##
    African American ###### ## ## ## ## ## ##
    white ######
    Filipino ######
    Gender
    Male ##### ## ## ## ## ## ##
    Female ##### ## ## ## ## ## ##
    and similarly for other columns
    where ethnicity, gender are columns in the table and Course_enrollment, Test_attended, pass_test are calculated columns.
    Please help me to create a report as above if anyone knows how to do it.
    Edited by: Shailaja on Jul 19, 2010 12:23 AM

    Two ideas I can think of:
    1) Create multiple pivot tables and then display them one under the other
    2) Create multiple measure columns such as "male_amt", "female_amt", "white_amt", "asian_amt", "black_amt", etc. for all the columns you need. Then you could simple stack them in a single pivot table.
    Option #2 might give you the prettiest results - but also requires a lot more maintenance (for instance, if you reclassify ethnic groups, you'd have to go through the reports to add additional metric columns).
    Hope this helps,
    Scott

  • How to add two columns in OBIEE report?

    Hi to All,
    Can anyone tell me how to add two columns in OBIEE report and get that result in a new column?
    Thanks in Advance,
    Thenmozhi

    Assume you already have two columns SalesAmt1 and SalesAmt2, and you want to derive 3rd column say SalesAmt3 which would be the sum of SalesAmt1 and SalesAmt2.
    For this, as I mentioned above pull SalesAmt1 and SalesAmt2 columns in Report. Now pull another column (say SalesAmt1) and open the fx. Clear the contents of fx. Now locate the columns button in the bottom of the fx. From Here, first select SalesAmt1 and + sign and the select SalesAmt2.
    Now in this new column, the fx should look like SalesAmt1 + SalesAmt2.
    Let me know if you are looking for something else.
    Thanks

  • OBIEE reports taking long time to show up..

    Hi,
    I'm facing some performnace problems with OBIEE reports (11g). The backend query generated by OBIEE runs fast however, the time taken up by the report to show up is very much.
    What should i look for to resolve this.
    Thx

    Please refer to:
    Performance and performance and performance
    You might want to create a special view or table (views are not recommended) with aggregated values. Don't forget obiee aggregates values at runtime pretty much.
    J.

Maybe you are looking for

  • Problem w/ Tooltips & Collapsable Panels in Safari

    Hi, I have a page that has Collapsable panels along with Tooltips that are used for a help tip in each panel. My problem is when the page loads in Safari, the contents of the bottom most Col Panels are displayed elsewhere in the page. The Col Panels

  • My macbook pro screen page jumps around without touching the touch pad

    When I am on Mail or my Firefox Browser the screen keeps jumping forward, back or to another site without my touching the trackpad. (Macbook Pro 2014.  At first I thought it was the Firefox Browser, but it also happens on "mail" (verizon.com).  This

  • Can't send text, send button won't work

    I just bought a new iphone4 and when I try to send a text the send button won't respond. Everything else seems ok. It worked for the first couple of days.

  • Transfer FI documents from one profit center to another

    Hello, I have created new profit center and now the thing is postings are already done in an old existing profit center. I need to transfer postings from old profit center to new profit center. Can this happen. Please guide me with the procedure... R

  • Unable to download SAP NetWeaver 7.01 using IDM - Plz help

    Hi All, I tried downloading SAP NetWeaver 7.01  - ABAP Trial using IDM but it failed after downloading 70% of it. I tried it 4 times but it failed showing the message  "server doesn't responded". Is there any other way downloading it or should i down