Office Plug-in : support for MS Office 2010 version

We tried to use the Office Plug-in that is available with OBIEE version 10.1.3.3.2 for MS Office 2010 version.
It does not work and throws an error message that indicates Office 2003 or Office 2007 are the versions that are supported.
Questions:
1. Is there a patch available for this plug-in that will work with Office 2010 version?
2. Does OBIEE 11.1.1.3 (Current release) support Office 2010 through the plug in? If not any insight into when Office 2010 is supported by the OBIEE Office Plug-in
Also, I heard that Office Plug-in and Smart View are going to be merged into a single product in the future releases... any thoughts on this as well.
Thanks
Sundar

We raised a support log few weeks back on this. The answer Support gave:
At the moment, Office 2010 is not certified against the current release of OBIEE 10.1.3.4.1 and OBIEE 11.1.1.3.0
Oracle is planning on Supporting MS Office 2010 on with BI 10.1.3.4.2 and 11.1.1.4.0. No official eta's for the releases at this stage.

Similar Messages

  • I was getting support for my Office 2008 for Mac, and the support tech said my OS was very slow. I have latest update for Snow10.6.7. Question how can I speed up my Macbook?

    I was getting support for my Office 2008 for Mac, and the support tech said my OS was very slow. I have latest update for Snow10.6.7. Question; How can I speed up my Macbook?

    Hi
    In the first instance, I'd use Onyx and run through its sequence of maintenance and tune up tools:
    Verify, Maintenance, Cleaning.
    I'd also reset the SMC and PRAM (Google them)
    If that doesn't help then I'd look at System Preferences.. > Accounts > Login Items tab (not Login Options).  Check what processes get started at login and decide which ones you don't want.
    After that I'd use Applications/Utilities/Activity Monitor to see if any processes are using a lot of computer power or if anything else nasty might be happening.
    If none of this helped then my final step would be to reinstall OS X.
    Bob

  • What can I do about paying for Office from a commercial store, and itunes charging $100 for smart converter, ms office package and pack for ms office $41.99? It surely looks like double dipping

    Hi folks, I am puzzled when looking at my itunes account. I bought a store office 365 package for $100, and in the process of installing it, somehow ended up with fees for smart converter, ms office package and pack for ms office, totalling another $90 from itunes. Isn't this double dipping and if so, how do I go about a refund? Thanks jby

    Well, MS Office 2004 is available for the Mac and being a user of both the Windows and Mac versions, I think that the Mac version has a slight edge. The only downside is that it does not come with MS Access so if you use that then you have to stay with the PC version.
    But... if you are set on mainly using Windows then paying a substantial premium just for a computer that looks good rather than on the fact that it runs OSX and hence great packages such as iLife etc is probably a waste. This is especially true when you have to remember that Apple will not give any technical support to users running Windows.. nil, nada, nowt! Likewise, Microshaft (sorry Microsoft) also seem unwilling to give support at this time since (for some strange reason) they don't like the idea of Windows on a Mac.
    As I see it, the main reason for Apple to release the ability to run Windows was to:
    a> Produce an 'official' version rather than have an unauthorised version 'in the field' which if problematic, could give Apple a bad name.
    b> Give people who would like to have a Mac but have the occassional program which has to be run under Windows, the ability to switch to a Mac.
    Option b was the reason why I switched from years on a PC to the Mac.

  • Selective XML Index feature is not supported for the current database version , SQL Server Extended Events , Optimizing Reading from XML column datatype

    Team , Thanks for looking into this  ..
    As a last resort on  optimizing my stored procedure ( Below ) i wanted to create a Selective XML index  ( Normal XML indexes doesn't seem to be improving performance as needed ) but i keep getting this error within my stored proc . Selective XML
    Index feature is not supported for the current database version.. How ever
    EXECUTE sys.sp_db_selective_xml_index; return 1 , stating Selective XML Indexes are enabled on my current database .
    Is there ANY alternative way i can optimize below stored proc ?
    Thanks in advance for your response(s) !
    /****** Object: StoredProcedure [dbo].[MN_Process_DDLSchema_Changes] Script Date: 3/11/2015 3:10:42 PM ******/
    SET ANSI_NULLS ON
    GO
    SET QUOTED_IDENTIFIER ON
    GO
    -- EXEC [dbo].[MN_Process_DDLSchema_Changes]
    ALTER PROCEDURE [dbo].[MN_Process_DDLSchema_Changes]
    AS
    BEGIN
    SET NOCOUNT ON --Does'nt have impact ( May be this wont on SQL Server Extended events session's being created on Server(s) , DB's )
    SET TRANSACTION ISOLATION LEVEL READ UNCOMMITTED
    select getdate() as getdate_0
    DECLARE @XML XML , @Prev_Insertion_time DATETIME
    -- Staging Previous Load time for filtering purpose ( Performance optimize while on insert )
    SET @Prev_Insertion_time = (SELECT MAX(EE_Time_Stamp) FROM dbo.MN_DDLSchema_Changes_log ) -- Perf Optimize
    -- PRINT '1'
    CREATE TABLE #Temp
    EventName VARCHAR(100),
    Time_Stamp_EE DATETIME,
    ObjectName VARCHAR(100),
    ObjectType VARCHAR(100),
    DbName VARCHAR(100),
    ddl_Phase VARCHAR(50),
    ClientAppName VARCHAR(2000),
    ClientHostName VARCHAR(100),
    server_instance_name VARCHAR(100),
    ServerPrincipalName VARCHAR(100),
    nt_username varchar(100),
    SqlText NVARCHAR(MAX)
    CREATE TABLE #XML_Hold
    ID INT NOT NULL IDENTITY(1,1) PRIMARY KEY , -- PK necessity for Indexing on XML Col
    BufferXml XML
    select getdate() as getdate_01
    INSERT INTO #XML_Hold (BufferXml)
    SELECT
    CAST(target_data AS XML) AS BufferXml -- Buffer Storage from SQL Extended Event(s) , Looks like there is a limitation with xml size ?? Need to re-search .
    FROM sys.dm_xe_session_targets xet
    INNER JOIN sys.dm_xe_sessions xes
    ON xes.address = xet.event_session_address
    WHERE xes.name = 'Capture DDL Schema Changes' --Ryelugu : 03/05/2015 Session being created withing SQL Server Extended Events
    --RETURN
    --SELECT * FROM #XML_Hold
    select getdate() as getdate_1
    -- 03/10/2015 RYelugu : Error while creating XML Index : Selective XML Index feature is not supported for the current database version
    CREATE SELECTIVE XML INDEX SXI_TimeStamp ON #XML_Hold(BufferXml)
    FOR
    PathTimeStamp ='/RingBufferTarget/event/timestamp' AS XQUERY 'node()'
    --RETURN
    --CREATE PRIMARY XML INDEX [IX_XML_Hold] ON #XML_Hold(BufferXml) -- Ryelugu 03/09/2015 - Primary Index
    --SELECT GETDATE() AS GETDATE_2
    -- RYelugu 03/10/2015 -Creating secondary XML index doesnt make significant improvement at Query Optimizer , Instead creation takes more time , Only primary should be good here
    --CREATE XML INDEX [IX_XML_Hold_values] ON #XML_Hold(BufferXml) -- Ryelugu 03/09/2015 - Primary Index , --There should exists a Primary for a secondary creation
    --USING XML INDEX [IX_XML_Hold]
    ---- FOR VALUE
    -- --FOR PROPERTY
    -- FOR PATH
    --SELECT GETDATE() AS GETDATE_3
    --PRINT '2'
    -- RETURN
    SELECT GETDATE() GETDATE_3
    INSERT INTO #Temp
    EventName ,
    Time_Stamp_EE ,
    ObjectName ,
    ObjectType,
    DbName ,
    ddl_Phase ,
    ClientAppName ,
    ClientHostName,
    server_instance_name,
    nt_username,
    ServerPrincipalName ,
    SqlText
    SELECT
    p.q.value('@name[1]','varchar(100)') AS eventname,
    p.q.value('@timestamp[1]','datetime') AS timestampvalue,
    p.q.value('(./data[@name="object_name"]/value)[1]','varchar(100)') AS objectname,
    p.q.value('(./data[@name="object_type"]/text)[1]','varchar(100)') AS ObjectType,
    p.q.value('(./action[@name="database_name"]/value)[1]','varchar(100)') AS databasename,
    p.q.value('(./data[@name="ddl_phase"]/text)[1]','varchar(100)') AS ddl_phase,
    p.q.value('(./action[@name="client_app_name"]/value)[1]','varchar(100)') AS clientappname,
    p.q.value('(./action[@name="client_hostname"]/value)[1]','varchar(100)') AS clienthostname,
    p.q.value('(./action[@name="server_instance_name"]/value)[1]','varchar(100)') AS server_instance_name,
    p.q.value('(./action[@name="nt_username"]/value)[1]','varchar(100)') AS nt_username,
    p.q.value('(./action[@name="server_principal_name"]/value)[1]','varchar(100)') AS serverprincipalname,
    p.q.value('(./action[@name="sql_text"]/value)[1]','Nvarchar(max)') AS sqltext
    FROM #XML_Hold
    CROSS APPLY BufferXml.nodes('/RingBufferTarget/event')p(q)
    WHERE -- Ryelugu 03/05/2015 - Perf Optimize - Filtering the Buffered XML so as not to lookup at previoulsy loaded records into stage table
    p.q.value('@timestamp[1]','datetime') >= ISNULL(@Prev_Insertion_time ,p.q.value('@timestamp[1]','datetime'))
    AND p.q.value('(./data[@name="ddl_phase"]/text)[1]','varchar(100)') ='Commit' --Ryelugu 03/06/2015 - Every Event records a begin version and a commit version into Buffer ( XML ) we need the committed version
    AND p.q.value('(./data[@name="object_type"]/text)[1]','varchar(100)') <> 'STATISTICS' --Ryelugu 03/06/2015 - May be SQL Server Internally Creates Statistics for #Temp tables , we do not want Creation of STATISTICS Statement to be logged
    AND p.q.value('(./data[@name="object_name"]/value)[1]','varchar(100)') NOT LIKE '%#%' -- Any stored proc which creates a temp table within it Extended Event does capture this creation statement SQL as well , we dont need it though
    AND p.q.value('(./action[@name="client_app_name"]/value)[1]','varchar(100)') <> 'Replication Monitor' --Ryelugu : 03/09/2015 We do not want any records being caprutred by Replication Monitor ??
    SELECT GETDATE() GETDATE_4
    -- SELECT * FROM #TEMP
    -- SELECT COUNT(*) FROM #TEMP
    -- SELECT GETDATE()
    -- RETURN
    -- PRINT '3'
    --RETURN
    INSERT INTO [dbo].[MN_DDLSchema_Changes_log]
    [UserName]
    ,[DbName]
    ,[ObjectName]
    ,[client_app_name]
    ,[ClientHostName]
    ,[ServerName]
    ,[SQL_TEXT]
    ,[EE_Time_Stamp]
    ,[Event_Name]
    SELECT
    CASE WHEN T.nt_username IS NULL OR LEN(T.nt_username) = 0 THEN t.ServerPrincipalName
    ELSE T.nt_username
    END
    ,T.DbName
    ,T.objectname
    ,T.clientappname
    ,t.ClientHostName
    ,T.server_instance_name
    ,T.sqltext
    ,T.Time_Stamp_EE
    ,T.eventname
    FROM
    #TEMP T
    /** -- RYelugu 03/06/2015 - Filters are now being applied directly while retrieving records from BUFFER or on XML
    -- Ryelugu 03/15/2015 - More filters are likely to be added on further testing
    WHERE ddl_Phase ='Commit'
    AND ObjectType <> 'STATISTICS' --Ryelugu 03/06/2015 - May be SQL Server Internally Creates Statistics for #Temp tables , we do not want Creation of STATISTICS Statement to be logged
    AND ObjectName NOT LIKE '%#%' -- Any stored proc which creates a temp table within it Extended Event does capture this creation statement SQL as well , we dont need it though
    AND T.Time_Stamp_EE >= @Prev_Insertion_time --Ryelugu 03/05/2015 - Performance Optimize
    AND NOT EXISTS ( SELECT 1 FROM [dbo].[MN_DDLSchema_Changes_log] MN
    WHERE MN.[ServerName] = T.server_instance_name -- Ryelugu Server Name needes to be added on to to xml ( Events in session )
    AND MN.[DbName] = T.DbName
    AND MN.[Event_Name] = T.EventName
    AND MN.[ObjectName]= T.ObjectName
    AND MN.[EE_Time_Stamp] = T.Time_Stamp_EE
    AND MN.[SQL_TEXT] =T.SqlText -- Ryelugu 03/05/2015 This is a comparision Metric as well , But needs to decide on
    -- Peformance Factor here , Will take advise from Lance if comparision on varchar(max) is a vital idea
    --SELECT GETDATE()
    --PRINT '4'
    --RETURN
    SELECT
    top 100
    [EE_Time_Stamp]
    ,[ServerName]
    ,[DbName]
    ,[Event_Name]
    ,[ObjectName]
    ,[UserName]
    ,[SQL_TEXT]
    ,[client_app_name]
    ,[Created_Date]
    ,[ClientHostName]
    FROM
    [dbo].[MN_DDLSchema_Changes_log]
    ORDER BY [EE_Time_Stamp] desc
    -- select getdate()
    -- ** DELETE EVENTS after logging into Physical table
    -- NEED TO Identify if this @XML can be updated into physical system table such that previously loaded events are left untoched
    -- SET @XML.modify('delete /event/class/.[@timestamp="2015-03-06T13:01:19.020Z"]')
    -- SELECT @XML
    SELECT GETDATE() GETDATE_5
    END
    GO
    Rajkumar Yelugu

    @@Version : ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
    Microsoft SQL Server 2012 - 11.0.5058.0 (X64)
        May 14 2014 18:34:29
        Copyright (c) Microsoft Corporation
        Developer Edition (64-bit) on Windows NT 6.2 <X64> (Build 9200: ) (Hypervisor)
    (1 row(s) affected)
    Compatibility level is set to 110 .
    One of the limitation states - XML columns with a depth of more than 128 nested nodes
    How do i verify this ? Thanks .
    Rajkumar Yelugu

  • Whether FDQM ERPI Adapter is supported for JDE 9.0 version

    Whether ERPI Adapter is supported for JDE 9.0 version.
    or
    Any other Adapters are avaliable to mapping the data from JDE to Hyperion?
    Appreciate if any one colud help us on this information.
    Thanks.
    LRR

    Hi Ray,
    ColdFusion 9 any version (CF 9.0.0/CF9.0.1/CF9.0.2) is not at all supported on Windows 2012. We started supporting Windows 2012 platform from ColdFusion 10 onward. Hope this information helps you.
    Thanks,
    Priyank

  • Is SBO2007 XL Reporter supported for MS OFFICE 2010?

    HI Experts,
    As above, and where can I find a matrix that tells me what is supported where? This will make everyone know where to go for when they have such question. I searched the net but no avail.
    Warmest Regards,
    Chinho

    Hi Chinho,
    If you are a partner then you can access www.service.sap.com/smb/sbo
    Click on Product Availability, from here you can click on Support Platforms to see things such as Server platforms, client platforms, client software etc.
    In answer to your question, it states: Support of Microsoft® Office 2010 with the SAP Business One release tracks 2007 and 8.8 is planned to be provided in Q3/2010.
    If you are a customer you may be able to get it from the Customer portal but I'm not sure.
    Regards,
    Adrian

  • Oracle ADF support for MS Office and PDF

    Hello,
    We are required to read from / write to MS Word, MS Excel or PDF in our ADF application.
    Does ADF support this with any inuilt feature?
    If not, what are the 3rd party libraries that we may need to use?
    Regards,
    Amar

    inbuilt support for MS Excel .
    <af:commandButton text="Export To Excel" immediate="true">
    <af:exportCollectionActionListener type="excelHTML" exportedId="table"
    filename="export.xls" title="ADF Faces Export"/>
    </af:commandButton>
    Edited by: -CHS on Jul 12, 2011 2:40 PM
    http://jdevadf.oracle.com/adf-richclient-demo/docs/tagdoc/af_exportCollectionActionListener.html
    for pdf can be used jasper report
    http://www.theregister.co.uk/2006/10/24/jasperreports_tutorial/

  • Plug-in support for iWork

    I would like to make plug-in for iWork (keynote,pages and numbers). So can it be possible to make third party plug-ins for iWork like Safari supports Flash, Shockwave, and QuickTime plug-ins. Does apple provides any support for making plugin for it?

    No, it doesn't!

  • LabVIEW DSP Test Integratio​n Toolkit support for Code Composer Studio version 4

    Hi,
    I came to know about the LabVIEW DSP Test Integration Toolkit support for Code Composer Studio from the link http://zone.ni.com/devzone/cda/tut/p/id/5839. I would like to know if this works with Code Composer Studio version 4 also. I am using CCSv4 with TMS320C6748 board. If not, can you please tell me if NI has brought out any software that helps in real time data exchange between CCSv4 and Labview?
    Regards,
    Debarati. 

    Debarati,
    I did some more research into your issue and found out that unfortunately, NI no longer officially supports the DSP Test Integration Toolkit as seen here: http://zone.ni.com/devzone/cda/tut/p/id/5839 
    I also see that you located our example VI here http://zone.ni.com/devzone/cda/epd/p/id/4311 and that the VI asked you for a .pjt file that you could not locate in CCSv4. Being that we no longer support the DSP Test Integration Toolkit, your next course of action would be to contact TI and inquire what .pjt file corresponds to in the newest version of CCS. I hope TI can be of more help to you with this issue since, as I said before, we no longer support this toolkit.
    My apologies,
    Larry H
    Applications Engineer
    National Instruments

  • Why is there no Boot Camp support for the 64-bit version of Windows 7 on the 64-bit iMac that I'm using?

    The early 2008 24" iMac 8,1 has a 2.8 ghz E8235 Intel Core 2 Duo processor with a data width of 64-bits.
    I am straining badly to understand why Apple is only providing drivers for the 32-bit version of Windows 7 for the 64-bit hardware that I want to install it on.

    The 64 bit drivers are there, but there have been some installation
    issues depending on Windows OS and Apple hardware.  You may
    want to post on the Bootcamp forum to get more direct response to
    your issue.
    FWIW, at one point, I forget when, I found I needed to manually
    open the 64 bit versions of the drivers to install them that were created
    on the bootcamp driver install disk (image).  As I recall the was a
    64 bit .msi "global" installer but even at that there was an individual
    one that needed to be manually installed.
    Its been a while since I last did this since I have been doing everything
    in Windows virtual machines with Parallels.

  • Support for  MS Office (esp full Outlook and Contacts) on MacBook Pro.

    I recently purchased my first Mac - a MacBook Pro.  I'm addicted to Microsoft Office (esp Outlook and Contacts) and share my Contact between my work (Windows laptop) and my personal laptop (now a MacBook).  I purchased MS Office 2008 for Mac however it didn't come with Outlook or Contacts.  When I called Apple they told me to purchase an Apple iCloud app for my old Windows based laptop ... however that's no help since my old laptop is ready to die any day now.
    Has anyone found a solution for those of us addicted to MS Office and especially Outlook and Contacts?
    By the way the Word that came with MS Office 2008 for Mac keeps crashing ... any tips on that?

    No, and there is no Publisher either, and if you are using iCloud be aware that no version of Office for Mac will work with it (except for email) no contacts, no calendars, no tasks.

  • Northern Kurdish Language Support for MS Office

    Hi,
    Northern Kurdish Language is not supported by Microsoft. How this can be changed?
    Thanks

    Hello Lezgin,
    You can use the Submit Feedback form to leave your feedback.

  • Support for SharePoint Foundation 2010 on Windows Server 2012 R2

    I have located an article that states that SharePoint Server
    2010 is supported on Windows Server 2012 R2.
    http://support.microsoft.com/kb/2724471
    However, I deal with a large number of farms that are based on Foundation.  Honestly, I interpreted this article to mean both Server and Foundation were supported, but I'm receiving some resistance from consumers because there is no definitive statement
    of support from Microsoft re: Foundation and the R2 o/s.
    Does anyone know definitively whether foundation 2010 is supported on 2012 R2 or not?  And more importantly, is there some article on the subject I can reference? (I've searched without success).
    I suppose the conservative approach would be to assume it is NOT supported unless I can find information to the contrary.

    I think there need to be other considerations than "because it sounds good" (which is what the 2012 R2 decision almost sounds like it boils down to). Rather, the consideration should be made of what best supports the application, what version of the OS is
    widely used and known, what happens when we encounter new issues due to using a newer OS that is less used with this application?
    At least, that would be my argument. Same reason I would not deploy SharePoint 2013 to 2012 R2 when support arrives with SP1 -- 2013 with Server 2012 is a well known combination with many resources available for non-paid support.
    Trevor Seward
    Follow or contact me at...
    &nbsp&nbsp
    This post is my own opinion and does not necessarily reflect the opinion or view of Microsoft, its employees, or other MVPs.

  • Plug-in support for keynote

    I would like to make Plug-in for keynote .Can it be possible to make third party plug-ins for keynote like Safari supports Flash, Shockwave, and QuickTime plug-ins and iTunes supports visualizer plugins and device plugins.

    Is it officially supported by Mac? because I believe no hack will sustain long if Apple is not going to support it. Is there is any way we can do the same? anybody tried this our earlier...any pointer in this direction would be appreciated!
    Manish

  • It would be appreciated if you could support AVG Safe Search in Firefox 4.0, just as you did for previous versions of Firefox. Are you planning to add support for AVG Safe Search (version 9.x)?

    AVG Safe Search provides icons after the names of websites to indicate their security status. All of your previous versions of Firefox supported this feature. Could you please make it available again in Firefox 4.0?

    It is down to AVG to make their add-ons work in Firefox 4, not Mozilla .You need to contact AVG about their plans for supporting Firefox 4. It is quite common for companies to only support a new version of a browser after it has been officially released, and not support it during the beta/release candidate phase.

Maybe you are looking for

  • Mobile Banking BOA...This is a Killer App!

    Man, I LOVE this one. *Mobile Banking*. My bank is Bank of America and I pay all bills through BOA Online Banking. What a great time saving feature. I also try and receive as MANY e-bills as I can. This is an email alert directly to you of a bill. So

  • Lync 2013 and Dell Latitude 7240 Window 8.1 Problem! Please help SOS

    Hi guys, Can anyone know the solution for my current problem with Lync is frozen and crashes when I start my video call. I have brand new Dell Latitude 7240 with Window 8.1 and Lync 2013. I have tried so many different suggestion from different forum

  • InDesign PDF Export Color Issues

    So I've encountered a frustrating problem that I know others have experienced. It involves the PDF export from InDesign where the PDF color is not matching the document view. It's a critical issue regarding soft proofs for designs where color needs t

  • Sony TG5V vs Sanyo Xacti HD1010: A QUESTION ABOUT IMAGE STABILIZATION

    i have decided to return my new Sony TG5V handycam since discovering that it does not have an external mic jack for interviews that I plan on doing. The return will not be a problem, but my new question is this: I did some preliminary research last n

  • Deleting the statistics

    Hi all, After analyze a table with compute statistics command, how i can delete the generated statistics ?