OBIEE 11G report download with excel 2000 is not working properly

Hi all,
The Analytics report download is not working properly in excel 2000.
This version is no longer supported?
Is any way to workaround this problem?
Cheers
Carlos Pereira

Hi,
which version r u using? until obiee11.1.1.5 its bug but solve it by workaround method . also the bug fixed in obiee.11.1.1.6
11700314 REPORT NOT EXPORTED FULLY INTO EXCEL WHEN DOWNLOADING FROM PAGES OTHER THAN 1
1) stop it all u r bi serivices then take a back of u original instanconfig.xml file then do the below changes
D:\Oracle\Middleware\instances\instance1\config\OracleBIPresentationServicesComponent\coreapplication_obips1
instanceconfig.xml
just add below content then
<Views>
<Pivot>
<MaxCells>6500000</MaxCells>
<MaxVisibleColumns>100</MaxVisibleColumns>
<MaxVisiblePages>1000</MaxVisiblePages>
<MaxVisibleRows>65000</MaxVisibleRows>
<MaxVisibleSections>25</MaxVisibleSections>
<DefaultRowsDisplayed>500</DefaultRowsDisplayed>
<!--This Configuration setting is managed by Oracle Business Intelligence Enterprise Manager--><DefaultRowsDisplayedInDelivery>75</DefaultRowsDisplayedInDelivery>
<!--This Configuration setting is managed by Oracle Business Intelligence Enterprise Manager--><DefaultRowsDisplayedInDownload>64000</DefaultRowsDisplayedInDownload>
<!--This Configuration setting is managed by Oracle Business Intelligence Enterprise Manager--><DisableAutoPreview>false</DisableAutoPreview>
</Pivot>
<Table>
<MaxCells>6500000</MaxCells>
<MaxVisiblePages>1000</MaxVisiblePages>
<MaxVisibleRows>65000</MaxVisibleRows>
<MaxVisibleSections>25</MaxVisibleSections>
<DefaultRowsDisplayed>500</DefaultRowsDisplayed>
<!--This Configuration setting is managed by Oracle Business Intelligence Enterprise Manager--><DefaultRowsDisplayedInDelivery>75</DefaultRowsDisplayedInDelivery>
<!--This Configuration setting is managed by Oracle Business Intelligence Enterprise Manager--><DefaultRowsDisplayedInDownload>64000</DefaultRowsDisplayedInDownload>
</Table>
</Views>
Restart all u r bi services..
then test it out.
Thanks
Deva

Similar Messages

  • After I downloaded firefox 4 it does not work properly.before was great now it stalks like a tiny hickup

    video films do not play properly
    i have to update ff4 and it does not work because it cannot contact the server

    I use now firefox 4
    before with the older version I had no problems .
    I tried to download 4 again but it does not help I only have on my desktop the big firefox icoon and I cannot get rid of it

  • Problems with swiping, highlighting text, not working properly

    Hello and new to forum as well as new to BB10. I have the Q10 model and really like it alot. However, these swiping techniques or gestures have me puzzled. Sometimes they work, and most times I find myself swiping the hell out of the screeen out of aggravation. Is there any way this can be tested as to working properly since it is a touch activated control?
    I really find myself swiping three times, 5 times or more, just to get to the hub. I cannot close out a screen with one swipe. It will not copy test without repeated taps. The circle pointer is hard to get on. I realize my swiping is a new technique to me, but could it be the protective cover that was put on it? Can anyone help me try to fix this very annoying problem as I am not used to repeated attempts at trying to do something so simple as closing a program or moving to another location tab. I sure would appreciate it.
    Thanks in advance.

    Hello greg30
    Welcome to the BlackBerry Support Community Forums.
    Sorry to hear you are having issues with your BlackBerry Q10 smartphone navigational gestures. Please view the follow link as it takes you to a "BlackBerry Q10 Gestures Overview".
    The screen protector is some cases can effect the gesture input on the BlackBerry Q10 smartphone screen. This is simply due to the increased thickness of the scratch resistant liner on the touch screen.
    Goose947
    Come follow your BlackBerry Technical Team on Twitter! @BlackBerryHelp
    Be sure to click Like! for those who have helped you.
    Click Accept as Solution for posts that have solved your issue(s)!

  • Report Parameters with a space between, not working

    I have a problem with a report in SQL Server 2012 that uses cascading multi-valued parameters. I am using AdventureWorks2012DW as a sample, and all parameters work except for one with a space in this case its SalesTerritoryCountry and the parameter is 'North
    America' which has a space. How do i get it to return data? here is my Stpre procedure for you to try.
    Create Procedure dbo.uspReportParams
    @Region varchar(15),
    @Country varchar(60)
    AS
    BEGIN
    SET NOCOUNT ON
    Select st.SalesTerritoryGroup [Region], st.SalesTerritoryCountry [Country], r.BusinessType [Business Type], SUM(rs.SalesAmount) [Sales Amount]
    from DimReseller r join FactResellerSales rs on r.ResellerKey = rs.ResellerKey
    join DimDate d on rs.OrderDateKey = d.DateKey
    join DimProduct p on p.ProductKey = rs.ProductKey
    join DimSalesTerritory st on rs.SalesTerritoryKey = st.SalesTerritoryKey
    where st.SalesTerritoryGroup IN (Select [splitdata] FROM dbo.fnSplitString (@Region,', '))
    --AND st.SalesTerritoryGroup <> 'NA'
    AND st.SalesTerritoryCountry IN (Select [splitdata] FROM dbo.fnSplitString (@Country,', '))
    Group by st.SalesTerritoryGroup, st.SalesTerritoryCountry, r.BusinessType
    END
    IF i check it with other parameters it works except for North America
    EXEC dbo.uspReportParams @Region = 'Europe,Pacific,North America', @Country = 'Germany,France,United Kingdom,Australia,Canada'

    Thanxs for the reply i will explain more. The Issue is on parameter region which is 'North America', it should return data for United states and Canada.... the spaces for the SalesTerritoryCountry dont matter but for the SalesTerritoryGroup. 
    I have made another discovery which has puzzled me more: If i place paramater 'North America' as the first value when executing the procedure, everything works well but if i place it elsewher ther is a problem here is a example to show what im saying
    EXEC dbo.uspReportParams @Region = 'North America,Europe,Pacific', @Country = 'Germany,France,United Kingdom,Australia,Canada'
    The results for Region 'North America' and Countries 'United States' + 'Canada' Show 
    Its working as expected
    You're using an AND condition in the filter so it will only return the countries which are included in @Country filter as it is the lower level
    I guess may be what you want is this??
    Create Procedure dbo.uspReportParams
    @Region varchar(15),
    @Country varchar(60)
    AS
    BEGIN
    SET NOCOUNT ON
    Select st.SalesTerritoryGroup [Region], st.SalesTerritoryCountry [Country], r.BusinessType [Business Type], SUM(rs.SalesAmount) [Sales Amount]
    from DimReseller r join FactResellerSales rs on r.ResellerKey = rs.ResellerKey
    join DimDate d on rs.OrderDateKey = d.DateKey
    join DimProduct p on p.ProductKey = rs.ProductKey
    join DimSalesTerritory st on rs.SalesTerritoryKey = st.SalesTerritoryKey
    where (st.SalesTerritoryGroup IN (Select [splitdata] FROM dbo.fnSplitString (@Region,', '))
    --AND st.SalesTerritoryGroup <> 'NA'
    OR st.SalesTerritoryCountry IN (Select [splitdata] FROM dbo.fnSplitString (@Country,', ')))
    Group by st.SalesTerritoryGroup, st.SalesTerritoryCountry, r.BusinessType
    END
    Please Mark This As Answer if it helps to solve the issue Visakh ---------------------------- http://visakhm.blogspot.com/ https://www.facebook.com/VmBlogs

  • Crystal Report XI R2 - export to .csv not working properly

    Hi Folks,
    I developed reports in Crystal Report XI R2 version (with service pack 6) and calling them from Power Builder 11.5. When I export the report to .csv format I see only parameter names with values (supplied to call this report) in csv file.
    For eg:
    Parameters are
    Start Date: 01/01/2012
    End Date: 02/01/2012
    CompanyID: 21234
    Regular output:
    colum1 colum2 ...... columnn
    data1    data2 .......  data-n
    data1    data2  ......  data-n
    data1    data2  ....... data-n
    ..... 10 records
    csv output looks like this:
    Start Date 01/01/2012 End Date 02/02/2012 CompanyID 21234
    Start Date 01/01/2012 End Date 02/02/2012 CompanyID 21234
    Start Date 01/01/2012 End Date 02/02/2012 CompanyID 21234
    ..... 10 records
    Please let me know what changes should I do.
    Thanks
    Indra

    Perform below steps
    - export the report from the CR XI R2 designer, verify the oputput.
    - View the report in the CR viewer from the app, verify the output
    - Export the report through code using the ExportOptions, check the output.
    You may would like to upgrade to CR XI R2 A
    15[1598392 - What is Crystal Reports XI R2A and where did all the CR XI R1 and CR XI R2 updates go? |http://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/oss_notes_boj/sdn_oss_boj_bi/sap(bD1lbiZjPTAwMQ==)/bc/bsp/spn/scn_bosap/notes%7B6163636573733d36393736354636443646363436353344333933393338323636393736354637333631373036453646373436353733354636453735364436323635373233443330333033303331333533393338333333393332%7D.do]
    15[1599339 - SAP Crystal Reports XI R2A and CR XI R1, CR XI R2 Fix Packs and Service Packs |http://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/oss_notes_boj/sdn_oss_boj_bi/sap(bD1lbiZjPTAwMQ==)/bc/bsp/spn/scn_bosap/notes%7B6163636573733d36393736354636443646363436353344333933393338323636393736354637333631373036453646373436353733354636453735364436323635373233443330333033303331333533393339333333333339%7D.do]
    - Bhushan.

  • BW 3.5 / GUI 7.20 / Excel 2010 : RRMX not working properly

    Hi,
    We are here working on BW 3.5 with GUI 7.20 FEP 2.
    BEx 3.5 is being used on Office 2010.
    When we run a workbook from SAP GUI (user menu), then Excel 2010 is opening but:
    - Thereu2019s no automatic connection to BW as it should.
    - The workbook doesn't show up.
    - We have the following message in the SAP GUI status bar: "Please install Excel as a viewer".
    Same thing happens when we run RRMX alone.
    Any idea on how to correct that bug would be greatly appreciated!
    Regards,
    John

    Hi,
    This is an installation issue. reinstall both the Excel 2010 and SAP GUI7.20 with latest patch along with .net component also.
    For an intermediate solution, just copy the file "BExAnalyzer.xla" (normally located in "C:\Program Files\SAP\Business Explorer\BI") to the path "C:\Program Files\Common Files\SAP Shared\BW".
    Or  follow the steps given in the below link
    http://www.sytecpa.org/software/BWInstructions/Installing%20the%20SAP%20BEx%20Analyzer%20Excel%20Add-In.pdf
    Also check the below note for more info.
    Note 1078523 - RRMX problems when using BI 7.X AddOn based on SAPGUI 7.10
    Regards
    KP

  • Ipad1 with 64 gb, video not working properly. Is it fixable?

    My very first iPad, I rec'd 5 yrs ago. It's a first generation and has 64 GB. I use it mostly to watch the videos - T V Shows & Movies I have downloaded on it. Today I watched a couple of short videos, then was going to watch a movie. It simply would not load. I tried with the "Video" icon and then by going to iTunes and choosing the movie I wanted. Sometimes it would not go to iTunes, it would revert back to the wallpaper. I never could get it to let me get to tech support to see if it was fixable. I am on another iPad at this time. I just love that little iPad and I love all of my movies and T V shows. This iPad I am using at present is only 16 GB so it will not support very many downloads. Help!!!

    DDid you try quitting all the apps and then reset your iPad? Double click the Home button to show the screen with running and recently used apps. Tsp and hold on an app icon until they all start to jiggle and display a minus sign. Tap on the minus sign to close out or quit the app. Then reset your ipad. Press and hold the Home and Sleep buttons simultaneously, ignoring the Red Slide to Power Off. Keep holding until the Apple logo appears. Let go of the buttons and let the device restart. See if that fixes your problem.

  • Photoshop cc 2014 with Extension Builder 3 not working properly.

    I can't get even the most basic panel to work in CC 2014. I have created a Default Extension Builder project in eclipse. I then follow this instructions Adobe Extension Builder and Creative Cloud 2014, but when I try to debug it, it doesn't work. The panel shows up (with nothing in it) but says "Cannot complete command because the extension could not be loaded."
    I have created an extension for CC, then changing everything according to the link above, tried to start it in CC 2014 I get the same error, even though it worked in CC.
    Does anyone know how I can fix this problem or what is causing it?
    If not, could anyone provide me with an empty panel project made in Extension Builder that works for you, so that I can maybe figure out what the differences are.
    Regards,
    Mattias

    I think so, yo, only add the PlayerDebugMode like this right?
    <?xml version="1.0" encoding="UTF-8"?>
    <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
    <plist version="1.0">
    <dict>
      <key>SmsManifestBaseURL</key>
      <string>http://serviceupdates.adobe.com/CEP4/SmsManifest.xml</string>
      <key>SmsUpdateCheckInterval</key>
      <string>7200</string>
      <key>LogLevel</key>
      <string>1</string>
      <key>PlayerDebugMode</key>
      <string>1</string>
    </dict>
    </plist>
    In this file /Users/<username>/Library/Preferences/com.adobe.CSXS.5.plist
    As you can see I am on a mac.
    Thanks for the help,
    Mattias

  • Why are videos taken with a 4S suddenly not working properly when sent to non iphone users since the update?

    Suddenly non I-Phone users cannot view videos anymore, they can hear the sound, but no audio.  Iphone users are having issues viewing the videos too.  This all started with the 6.0 update.  Please fix it or tell me how to restore my phone back to the previous update, it is quite annoying.

    Hello VintageShaay,
    It sounds like you are getting some audio issues with the included Ear Buds when they are plugged in. I wanted to recommend these troublehsooting steps from the article named:
    Troubleshooting iPhone, iPad, and iPod touch accessories
    http://support.apple.com/kb/ts2634
    3. Disconnect and Restart
    Disconnect the accessory and turn it off, if possible. Restart iPhone, iPod touch, or iPad by turning it off and then back on. When the Home screen reappears, reconnect the accessory.
    4. Isolate
    Isolate the issue to the accessory, if possible. Or, if available, try to reproduce the issue with another identical or similar accessory.
    Examples:
    If there is static coming from the left audio channel when using headphones, try connecting the headphones to a stereo, or try connecting a different set of headphones to the device.
    If the device is not syncing when connected to the dock, try connecting it directly to the computer using the Dock Connector to USB Cable, or try another USB port.
    6. Restore iPhone, iPad, or iPod touch
    Restore iPhone, iPad, or iPod touch to its factory default state. You should rarely need to use this step with an accessory issue. If the issue only affects a third-party accessory, contact the manufacturer before restoring the device.
    Also if that does not resolve the issue, try the steps from the following article:
    Apple EarPods: Low or muffled sound
    http://support.apple.com/kb/TS4395
    Thank you for using Apple Support Communities.
    All the very best,
    Sterling

  • I have downloaded PDF Converter and its not working properly

    the pdf I am attempting to convert to edit is not working. I have converted it to all that is available and the lines are off  in someplaces and some data is in the wrong place when I try to Move it I can't or it makes it worse. what can I do?

    As Pat said, which PDF Convertor are you reffereing to here? Which adobe application are you using for the same? What's the operating system that you are using?

  • Download to Excel 2000 Functionality

    Hi,
    I use the "Download to Excel 2000" functionality in OBIEE.
    When i see the output in Excel,columns B and C of excel get merged and display the second column in my report
    The point here is the first column in the report also has the same property and type as Column 1.but it is displayed properly in Cell A in the excel
    Is this an known OBIEE issue?
    Can anybody please help in this regard??
    Thanks in advance

    I think you got it correctly.
    I doubt this is Analytics problem - I think it's more of international codepages.
    Even if you open the same spreadsheet in a different localized Excel version, you'll see similar results. And then if you save it and open it in original version, it'll be messed up.
    Globalization :-)

  • OBIEE 11g Report UI not showing data

    Hi,
    On Obiee 11g Report, the query hit by the report at the backend shows results for all the columns but on UI only few of these columns show the data. From Query log, when I run the same query in the database I see all columns have data which is somehow not showing up on the UI end. What could be the problem? Can this be resolved or is it a bug in the OBIEE 11g?
    Regards
    VM

    Hi Vanaja M/Gurus,
    Is that your problem resolved?
    I'm facing same issue here.
    I was checking for solution/suggestions in blogs, but unfortunately i couldn't find much information in blogs too....
    Can you help me out to cross this hurdle, as this issue is in Production.

  • Known issues for OBIEE Office Add in with Excel 2007?

    Hi,
    Does anybody know if there are issues for the office add-in with Office 2007?
    i'm playing around a little bit to see how it works, but it seems that Excel interferes with the layout.
    I do get different grafs and also i tried the tutorial with the excel template and my changes come only partly through.
    Thanks
    Sandra

    Hi Sandra,
    Were you able to use OBIEE Office Add in with Excel 2007? I am planning to look at this compatibility. I am looking here to seeif anyone found issues with this setup..
    Thanks,
    Bharat

  • ToolTip in OBIEE 11G Reports when we hover on its data!!

    Hello gurus,
    I have a requirement where I have to display ToolTip in OBIEE 11G reports when one hovers on its data. For example, If I have a column in a report which displays "serial no." say the data in column is 1,2,3,4,5 etc. when I hover on 1, it should display name corresponding to it. when I hover on 2, it should display another name.
    These values which will be displayed on hover action can be hardcoded, they are static values.
    Thanks in advance !!

    Hi User,
    Try this , Goto Column Properties of a particular Column ->Data Format->Check mark "Override Default Data Format" and select
    Treat Numbers As : Custom
    In Custom Numeric Format, Copy paste this code: [html]<p title=\""Comments which you want to Mention" \">#
    Please Mark helpful if it is correct.
    Regards,
    OBIEELearner.
    Edited by: obieelearner on Nov 2, 2012 10:09 AM

  • OBIEE 11g having problems with password protected PDF files.

    I have been able to get an analysis in OBIEE 11g to display PDF files.
    However, some of these documents contain sensitive information and must be secured. Since anyone with access to the file name
    could simply type in the proper path in the browser window, this is unacceptable. In order to try and prevent this, I created a pdf file
    that is protected with a password.
    Opening the file by itself, produces the desired results. The password is requested before the file will open.
    When I open the file through my analysis in OBIEE, Adobe reader activates, but the password is not requested and the file does not open.
    It is as if OBIEE is somehow not sensing that Adobee is asking for a password.
    Does anyone have any experience with this?

    FYI, in case anyone is interested, I found out what is going on.
    I created the original password protected PDF using Microsoft Word. I did this because I do not have a full version of Adobe Acrobat that allows me to create files.
    On a hunch, I found someone that has a full version of Acrobat, and had them create a password protected PDF file. This file worked perfectly.
    Apparently, Word is not strictly adhering to PDF guidelines, and OBIEE senses the differences, resulting in the file not opening properly.
    Something to keep in mind for anyone linking to password protected PDF files in OBIEE.

Maybe you are looking for