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

Similar Messages

  • Accessing OBIEE report  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)

    Nikhil,
    It shouldn't matter whether its coming from ADF or from Oracle BI PS directly what matters is the default formatting of the images/charts that get rendered.
    I wrote a post about how to change the default image format in OBI 11g (11.1.1.3), http://www.artofbi.com/index.php/2010/12/to-flash-or-not-to-flash-svg-and-png-options-not/.
    In that post a bug prevented this default image switch from working but I think they have fixed it in 11.1.1.5 (I haven't tested it yet due to time constraints).
    I would attempt attempting to change from Flash to SVG and then you should be able to view your ADF and the default Oracle BI PS charts/graphs via the tablet devices.
    Cheers,
    Christian

  • Calling Alv Report From Mobile

    Hi All,
    I need some information to cal a alv report from mobile. I created one report ans can see the selection screen in gui after calling. Here the screen is really big i need to adjust the size because it may take more load and time if i call from a mobile . Is it possible to call the same from mobile or do i need any separate application to call this from mobile. Please *** you valuable suggestions.
    Regards
    Madhu.

    Hello Madhu,
    What is your system details?
    Kernel and BASIS?
    Device OS & Browser?
    What are the GUI Configuration settings of the ITSMobile Service?
    What ITSMobile Generation STYLE was used?
    Perhaps useful notes:
    1037715  ITSmobile: Supported screen elements
    1309633  ITSmobile: custom OMRT controls auto-recognized at runtime
    1312835 ITSmobile: page navigation in ALV Grid on Windows Mobile
    1668784 ITSmobile: new features for ALV Grid
    Regards,
    Oisin

  • Open OBIEE report from web application

    Experts, I want to open OBIEE report from a web application. I have a question regarding the security here. Say I login as 'USER1' in web application, I would have to pass 'USER1' in nquser parameter. Correct? Also, this report has access to 'Sales Group' users only. So, does 'USER1' in web application need to be assigned to 'Sales Group'? Or, any user in the web application can open this report as long as I pass nquser in the GOURL.
    thx,
    parag

    You don't need to specify group details.
    When the report hits OBIEE, it will determine the permissions based on the nquser.
    Hope it helps.

  • OBIEE reports in Mobile App Designer View

    Hi All,
    Is there any possibility to view the existing OBIEE reports in Mobile App designer page and edit the same?
    Since more reports have been created already,we wanted to view and edit in MAD to make it available for Mobile users.
    Thanks
    PM

    Hi Rayno,
    Did you try to use a different browser and are you at the latest patch of BIMAD?
    Mainly if you are on IE I guess the patches fix compatibility with the various version of IE most of the time (Firefox and Chrome are better for that).
    I also remember your other issue having the dashboard to display only when all the analysis are loaded, so maybe you have something in your setup (network, proxy, browser version, corporate rules etc.) impacting the user experience of BIMAD (but not only) in such a negative way.
    I didn't spend weeks on it but never got BI Server crash because of BIMAD and random java errors (are we really talking about java or javascript?).

  • Print Message Report from Mobile

    Hello...
    We need modify standard mobile infrastructure java code...
    We need print some report from Mobile Front-end.
    Is possible to print all MESSAGE data that we can see from front-end of mobile infrastructure 2.5 ???
    thank you very much
    Stefano

    I haven't really done much enhancements on MAM 2.5, but Im sure sami will let you know where to add the code, or you can review the MAM enhancement guide on the CD.
    In regards to printing the PIOS API is pretty simple. If you are using a laptop to print to a normal printer then you can just use the Win32 Drivers..(installed via driver addon from web sap console.)If you are using the handheld you will need to find the appropriate drivers.
    Here is some code I used in one of my applications:
                   <i>Connector conn = Connector.getInstance();
                   DriverInfo[] driverInfo = conn.listDrivers(ConnectionType.PRINTER);
                   PrinterParameters params = new PrinterParameters(driverInfo[0]);
                   params.setPrinterMode(PrinterParameters.GRAPHIC_MODE);
                   GraphicPrinter gp = (GraphicPrinter) conn.open(params);
                   File myImage = new File("c:
    smalllogo.bmp");
                   if (myImage.exists()) {
                        float x = 0;
                        float y = 50;
                        try {
                             String[] sFonts =
                                  gp.getFontConfigurationManager().listFontNames();
                             PrinterFont pf = gp.getFont(sFonts[0]);
                             gp.drawText(
                                  pf,
                                  25,
                                  25,
                                  "TO For Delivery # = "
                                       + dbAccess.getItemFieldValue(arrayItems[0], "VBELN"),
                                  GraphicPrinter.NO_ROTATION);
                             for (i = 0; i < arrayItems.length; i++) {
                                  gp.drawText(
                                       pf,
                                       25,
                                       y,
                                       "Delivery Item # = "
                                            + dbAccess.getItemFieldValue(
                                                 arrayItems<i>,
                                                 "POSNR"),
                                       GraphicPrinter.NO_ROTATION);
                                  y = y + 10;
                                  gp.drawText(
                                       pf,
                                       25,
                                       y,
                                       "Material # = "
                                            + dbAccess.getItemFieldValue(
                                                 arrayItems<i>,
                                                 "MATNR"),
                                       GraphicPrinter.NO_ROTATION);
                                  y = y + 10;
                                  gp.drawText(
                                       pf,
                                       25,
                                       y,
                                       "Quantity to Pick = "
                                            + dbAccess.getItemFieldValue(
                                                 arrayItems<i>,
                                                 "LFIMG"),
                                       GraphicPrinter.NO_ROTATION);
                                  y = y + 25;
                   gp.doPrint(1);
                   gp.close();
              } catch (Throwable tFile) {
                   tFile.printStackTrace();
              }<i>
    This should give you an idea, you should also read through the MDK documentation for the printer API (PIOS). Its quite easy to pick up and as long as you have the driver and connector installed it prints right away.(You could also use the Peripheral emulator in
    NWDS to test the code first)
    Hope this helps,
    Wael..
    Dont forget the rewards
    Message was edited by: wael aoudi

  • 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 Discoverer Reports from Oracle Apps

    Hi all,
    Requirement: Accessing Discoverer Reports from Oracle Apps
    Discoverer: 11g
    Oracle Apps: 12i
    When I am trying to access the Discoverer Reports from Oracle apps, again it is asking for Oracle Apps Login details. Can we have any other option that can directly connect to the viewer without any intermission. Please its urgent requirement.
    ThanQ,
    ABR

    Hi Arun,
    When I am trying to access the Discoverer Reports from Oracle apps, again it is asking for Oracle Apps Login details. Can we have any other option that can directly connect to the viewer without any intermission. Please its urgent requirement.Pl refer section *6.4. Set Applications profile options in Oracle E-Business Suite* from MOS tech note
    *Using Discoverer 11.1.1 with Oracle E-Business Suite Release 12 [ID 1074326.1]* and make sure that all profile options are set to a valid value.
    thanks,
    X A H E E R

  • MacBook Pro is operating more and more slowly in opening and closing, opening and closing programs and accessing and closing from mobile broadband.  Is there a solution to this problem?

    MacBook Pro is operating more and more slowly in opening and closing, opening and closing programs and accessing and closing from mobile broadband.  Is there a solution to this problem?

    Did you try rebooting?

  • I would like know how to view a SharePoint Page from mobile browser or app.

    I work for a company that sell products and then offers aftermarket support.  On our external SharePoint site, I created a page to link to Wiki pages that contain knowledge sharing entries.  The goal is when a member of the company learns something
    that they feel would be good to share, the can take a video, post it to Vimeo, and then embed the video with applicable text to the SharePoint site.  The SharePoint posts can also contain PDFs, other document links, and embedded pictures.  
    I have the page essentially finished, I am ready for some more contributors at the company to start adding content.
    One of the goals of the site is to be viewable via a mobile application.  I have tried apps such as SPConnect, and SharePlus from Infragistics.  Their mobile apps view SharePoint as a list, and do not view any of the embedded pictures or Vimeo
    videos.  
    My questions are:  
    Will SharePoint 2010 support mobile web browsing with the same functionality as the standard web browser?
    If 2010 will not, will SharePoint 2013 offer the support?
    If it is possible, what features do I need from a server and what settings do I need to enable to make it happen?  Currently on our site, it is not viewable.  I use "Forms Authentication" to log into the site.
    If it is possible, do you suggest finding an app?  Is there an app that will do it, or can I just log in and view from the mobile web browser the same way I do from a standard web browser?
    Overall, I need to know what I need to do to get this to work.
    Thank you for reading.  I look forward to your responses.

    Hi,
     Its possible to achieve the functionality which you are looking here. To enable mobile support please follow the below link which will guide you,
    http://www.aiim.org/community/blogs/expert/sharepoint-2010-mobility-browser-compatibility-compliance-and-its-continued-dominance-in-the-marketplace
    http://blogs.technet.com/b/office2010/archive/2010/03/09/configure-sharepoint-server-2010-for-mobile-device-access.aspx
    if its not helping you please let us know.
    Sekar - Our life is short, so help others to grow
    Whenever you see a reply and if you think is helpful, click "Vote As Helpful"! And whenever
    you see a reply being an answer to the question of the thread, click "Mark As Answer

  • OBIEE: REPORT FROM 2 FACTS WITH ONE SHARED AND ONE UNSHARED DIM; POSSIBLE??

    Hi All,
    We have a typical scenario to build a report from 2 subject areas(ideally from 2 facts)
    Here is the Scenario: Creating a report which based on two facts(2 Subject Area's) and one common dimension and one unshared dimension.
    Example
    ======
    Dimension Date is common between Fact Transaction and Fact Credits.
    Dimension Credit Type is applicable only for Fact Credit.
    We have to build a report with the below mentioned attributes/metrics
    Dim Date. Attribute (*Common Dimension*)
    Fact.Transaction.Metric
    Fact. Credit .Metric
    Dim.Credit Type. Attribute (*Unshared Dimension*)
    Is this is possible in OBIEE..?
    Thanks,
    Govardhana

    Yes, you must use measure levels. Set the column level of each measure from the Transaction Fact to Total for the Credit Type dim.

  • OBIEE report from multiple facts at different levels

    Currently we need to develop a report with columns from 3 different facts surrounded with conformed and non conformed dimensions at different levels.
    After setting the hierarchial levels and putting the facts into single logical table with different sources OBIEE is generating 2 different queries and does a full outer join.
    I would like to know how we can do a left outer join instead of full outer join between the 2 queries based on a common column?
    Thanks in advance.

    Hi Vinod,
    The scenario provided in the link above doesnt match to my issue.
    We need to develop a report from multiple fact tables at different levels with conformed & non conformed dimension columns.
    I have 7 dimensions D1, D2, D3, D4, D5, D6 and D7 & two fact F1 and F2 tables.
    F1 is tied to dimensions D1,D2,D3,D4,d5
    F2 is tied to dimensions D3,D4,D5, D6 and D7.
    In my report I have columns from D1, D2, D3, D4, D5, D6, D7, F1 and F2.
    So OBIEE generates 2 queries with columns from D1,D2,D3,D4,d5 & F1 measure and another query with D3,D4,D5, D6, D7 and F2 measure.
    and then does a cross fact join out of box between 2 queries.
    But I need to do a left outer join between the 2 queries on a common column instead of cross fact join. I would like to know how we can achive this.
    Thanks.

  • How do I access iCloud email from a browser on a Mac?

    I am trying to access iCloud email from a borrowed Mac.  I don't want to set up my iCloud account on this Mac since it's not mine.  My understanding is you can access iCloud via a browser, but when I sign into iCloud I am prompted to set up iCloud on the device, which is exactly what I do not want to do.  This was using "mail.icloud.com" which was my best guess at a URL.  I know iCloud email cannot be accessed via a browser on iPads, etc., but it should be accessible on Macs via browser from what I have read.
    Anyone know how to do this?  Am I using the wrong URL?

    Well, the good news is I have the URL correct.
    But regardless of whether I use http://icloud.com or http://mail.icloud.com, I still get prompted with a dialog box which says the following:
    "Setup iCloud on a device to use iCloud.com"
    If I click "Close" I end up back up at the sign in screen and have to enter my username/password again.
    If I click "Learn More", my only other choice, I end up on some sort of help page that tells me how to set up iCloud on this device.  Which is precisely what I don't want to do.  I just want to access a webmail page like, for example, gmail.
    I don't see any "Mail" icon there.
    Thanks for the reply.

  • How to access OBIEE report in J2EE application?

    Hi All,
    I need to integrate OBIEE with my J2ee application. The scenario is something like
    i need to access the reports(that were created by BI Answers) via my j2ee application. I will provide a simple screen and the user will enter a value and i need to pass the value to OBIEE .Then it will filter out the data based on that value and shows to the user.
    I have tried it by using GO URL and i am able to access the OBIEE environment but when i tried to pass the value it doesn't navigate.Even i am not able to search a particular report.
    How could i proceed? Should i use some variable to store the data that is passed for search in OBIEE?
    Pls help me t solve out this. Any idea is highly appreciated.
    Thanks
    Ashok

    STEP 1: Like any other add-on project, refer SBO UI and DI COM to your project. Initialize SBO APPLICATION object and SBO COMPANY object and listen to events. (This is standard add-on project steps)
    STEP 2: Add a Dataset to the project. This is used as a data source to your Crystal Reports. (For more information on this search for Push Technique Crystal Reports)
    STEP 3: Add a Windows Form to your Project.
    STEP 4: Add a Crystal Report Control to it.
    STEP 5: Design report based on dataset added above.
    STEP 6: Launch this Form with required parameters and selection criteria when any even happens.
    Remember there is lot stuff available on net if you search with PUSH TECHNIQUE CRYSTAL REPORT. SAP SDN has lot answers for adding Crystal Reports integration to SAP Business One Add-On.
    HTH
    B Ravi Shankar

  • Slow access of photos from Media Browser

    I have a computer with a small iPhoto library. Under 800 photos. iPhoto launches quickly, and effortlessly. iWeb launches easily, but when I try to access the Photos from the Media brownser...things bog down. The spinning ball goes for a couple minutes, before showing me the photos, and regaining control of iWeb. This slowness happens also from Garage Band (when accesing photos via the Media brownser). I rebuilt my iPhoto library database, but this didn't help. Any ideas?
    Thanks
    Ted
    MacBook Pro   Mac OS X (10.4.6)  

    Thanks John and Jim,
    Here's an update. I did not have iPhoto opened when launching iWeb. And the iMac Intel 20" has 1gig RAM.
    I first rebuilt the database in iPhoto...no help. I called applecare, and then first had me rebuilt the database (no help again). Then we created a new user, and the new user worked fine...no sluggishness in Media Browser. So we went back to the ailing user and removed the iPhoto prefs (no help)....then we removed ALL prefs (no help)...then they had me remove the entire user Library....and still no help. At this point, the 2nd level tech support said they didn't know the answer yet...and they are referring it to Engineering...and I should hear back in 2-3 days. I'm guessing they will have me backup, reformat, and reinstall from scratch...but we'll see.
    Thanks for your interest...
    Ted

Maybe you are looking for

  • Fed Up with BT's Complaint Department

    At the end of augest i split from my ex-wife and as the broadband was in my name she had to take out a new contract for the bt infinty, i was told at the time that i would not have to pay the £30 cancelation fee by the advisor "as its not really a ca

  • Check on repetition of employee names during hiring

    Hi All, Could anyone please guide me on how to keep a check on repetition of employee names during the hiring process? i.e whenever the administrator enters a person's name during personal data maintenance, it should throw an error if the same name a

  • Check payments problem

    Hi, In FBCJ i am able to receive the checks, and it also updating the cash journal balances, but i am unable to isuue the checks to banks in FbCj so that its not able to update the total check recipts value and finally its affecting the closing balan

  • URGENT: SKYPE Deleting my contacts randomly

    As i add contacts or they add me... either one of us accepts.. and for either a brief moment they are contacts then suddenly no longer... or... they are deleted from my contact list days or a week after... i readd them... and they readd me.. and then

  • Inactive (grayed out) thumbnails in New Tab. I have 6 in use, 3 grayed out.

    Inactive (grayed out) thumbnails in New Tab. I have 6 in use, 3 are grayed out. I tried dragging a bookmark into the thumbnail but that actually opens the website instead of fixing the thumbnail. How do I activate these grayed out thumbnails? Firefox