Zen V Plus support for Office 2007 Supp

Hi All?Anybody heard when the Zen V PLus will have support for Office 2007 to be able to synchronize contacts, etc.Message Edited by stevenvj on 06-20-200703:20 AM

well, I got a very very quick response from Creative. I don;t know if what they said to do will solve my problem but they sent a very detailed list of things to do so we are now off to copy the info from our zen v pluses in case we lose what we put on them and will post an update to let you all know if we solved this and how. While I am not impressed with the product at this moment if this works? then I will be very impressed with how this has been handled so far....

Similar Messages

  • Support for Office 2007 files (especially docx) ?

    Hi,
    can you please give me a hint if it's possible to use ora-text with the current office 2007 file formats ?
    I need to have support for word 2007 (docx) format very soon
    Is it already available ?
    If not, is there a plan to support those formats ?
    Thank you

    Hi,
    the workaround descrived above would also work for your plsql app. Therefore you can use the PL/SQL XSLT Processor in order to extract the content needed from the office 2007 documents. See DBMS_XSLPROCESSOR.
    What is your business case? How do you store and index your documents?
    p.s Here is an example of an xslt to extract the text content from an docx document. The internal structure of docx document is based on the Open Packaging Conventions (see http://openxmldeveloper.org/articles/OPC_parts.aspx )
    <?xml version="1.0" encoding="utf-8"?>
    <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
    xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main"
    xmlns:v="urn:schemas-microsoft-com:vml"
    exclude-result-prefixes="w v">
    <xsl:output method="text" indent="no" encoding="UTF-8" version="1.0"/>
    <!-- document root -->
    <xsl:template match="/">
    <!-- root element in document -->
    <xsl:apply-templates select="w:document"/>
    <!-- root element in header -->
    <xsl:apply-templates select="w:hdr"/>
    <!-- root element in footer -->
    <xsl:apply-templates select="w:ftr"/>
    <!-- root element in comments -->
    <xsl:apply-templates select="w:comments"/>
    <!-- root element in foornodes -->
    <xsl:apply-templates select="w:footnotes"/>
    <!-- root element in endnodes -->
    <xsl:apply-templates select="w:endnotes"/>
    <!-- root element in glossary -->
    <xsl:apply-templates select="w:glossaryDocument"/>
    </xsl:template>
    <!-- ****************************
    start document
    **************************** -->
    <xsl:template match="w:document">
    <xsl:for-each select="//w:p">
    <xsl:apply-templates select="*/w:t"/>
    <xsl:text>
    </xsl:text>
    </xsl:for-each>
    <!-- used for word art text -->
    <xsl:apply-templates select="//v:textpath"/>
    </xsl:template>
    <!-- get all text nodes within a para -->
    <xsl:template match="*/w:t">
    <xsl:value-of select="."/>
    </xsl:template>
    <!-- gword art text -->
    <xsl:template match="//v:textpath">
    <xsl:value-of select="@string"/>
    </xsl:template>
    <!-- ****************************
    end document
    **************************** -->
    <!-- ****************************
    start header
    **************************** -->
    <xsl:template match="w:hdr">
    <xsl:for-each select="//w:p">
    <xsl:apply-templates select="*/w:t"/>
    <xsl:text>
    </xsl:text>
    </xsl:for-each>
    </xsl:template>
    <!-- ****************************
    end header
    **************************** -->
    <!-- ****************************
    start footer
    **************************** -->
    <xsl:template match="w:ftr">
    <xsl:for-each select="//w:p">
    <xsl:apply-templates select="*/w:t"/>
    <xsl:text>
    </xsl:text>
    </xsl:for-each>
    </xsl:template>
    <!-- ****************************
    end footer
    **************************** -->
    <!-- ****************************
    start comments
    **************************** -->
    <xsl:template match="w:comments">
    <xsl:for-each select="//w:t">
    <xsl:value-of select="."/>
    <xsl:text> </xsl:text>
    </xsl:for-each>
    </xsl:template>
    <!-- ****************************
    end comments
    **************************** -->
    <!-- ****************************
    start footnodes
    **************************** -->
    <xsl:template match="w:footnotes">
    <xsl:for-each select="//w:p">
    <xsl:apply-templates select="*/w:t"/>
    <xsl:text> </xsl:text>
    </xsl:for-each>
    </xsl:template>
    <!-- ****************************
    end footnodes
    **************************** -->
    <!-- ****************************
    start endnodes
    **************************** -->
    <xsl:template match="w:endnotes">
    <xsl:for-each select="//w:p">
    <xsl:apply-templates select="*/w:t"/>
    <xsl:text> </xsl:text>
    </xsl:for-each>
    </xsl:template>
    <!-- ****************************
    end endnodes
    **************************** -->
    <!-- ****************************
    start glossary
    **************************** -->
    <xsl:template match="w:glossaryDocument">
    <xsl:for-each select="//w:p">
    <xsl:apply-templates select="*/w:t"/>
    <xsl:text>
    </xsl:text>
    </xsl:for-each>
    <!-- used for word art text -->
    <xsl:apply-templates select="//v:textpath"/>
    </xsl:template>
    <!-- ****************************
    end glossary
    **************************** -->
    </xsl:stylesheet>
    Edited by: user304344 on Mar 30, 2009 10:23 PM

  • Export to excel using service for office 2007

    Hi All,
    I am using a service to download the opport search result data into excel. Inside the code, it gets all the data and opens one window of excel download and closes automatically after few second. And finally does not download anything.
    It is working for office 2003, not for office 2007.I am following piece of code.Please help me how to achieve the same.
    DATA: l_xstring TYPE xstring,
          app_type type string,
          app_type_c(50) type c.
    app_type = 'APPLICATION/MSEXCEL; charset=utf-16le'.
          app_type_c = app_type.
          CALL FUNCTION 'SCMS_STRING_TO_XSTRING'
            EXPORTING
              text     = output      "my data to be exported into excel
              mimetype = app_type_c
            IMPORTING
              buffer   = l_xstring.
          CONCATENATE  cl_abap_char_utilities=>byte_order_mark_little
                       l_xstring
                       INTO l_xstring IN BYTE MODE.
    server->response->set_header_field( name =  'content-type'
                                        value = app_type ).
    server->response->delete_header_field( name = if_http_header_fields=>cache_control ).
    server->response->delete_header_field( name = if_http_header_fields=>expires ).
    server->response->delete_header_field( name = if_http_header_fields=>pragma ).
    server->response->set_header_field( name = 'Content-Disposition'
                                        value =  'attachment;filename=Opportunity_Result.xls'  ).
    CLEAR lv_length.
    lv_length = XSTRLEN(  l_xstring ).
    server->response->set_data( data =  l_xstring
                                 length = lv_length ).

    Maybe it's possible, but I doubt it.
    Reason is that you're asking the URL to run the report and then once done export out the values and I just don't think the 'i' - or now 'g' versions support this.
    This was why the command line interface with the Desktop version was so popular as this is exactly the kind of thing you can do, plus much more.
    I checked the documentation for Plus and can find nothing about doing this in the URL. Maybe someone will say otherwise, but with Plus I don't think it's possible.
    Russ

  • IFilter 9 not searching OCR .PDFs post SP2 for Office 2007 Servers

    Prior to the installation of Service Pack 2 for Office 2007 Servers, .PDF files that were scanned in and then ran against Optical Character Recognition software could be searched with the iFliter 9 for Windows MOSS, x64.  Now, those specific files no longer are searchable however; files that were converted directly from another application, such as MS Word or Excel, that were converted directly into .PDF files work fine.  Has anyone ever seen anything like this or can give me a direction to go to get this resolved?  Adobe's support for this product is non-existant and I am sure Microsoft will not be a help since it is not their product.

    See if this discussion helps:
    http://www.microsoft.com/communities/newsgroups/en-us/default.aspx?dg=microsoft.public.sha repoint.general&tid=d11d3de7-8344-4dad-9f09-bd84c39e9817&mid=d11d3de7-8344-4dad-9f09-bd84c 39e9817&cat=en_US_2BE0F7C1-F80B-C480-EA27-790E679D7E1B&lang=en&cr=US&sloc=&p=1
    or
    http://www.adobe.com/special/acrobat/configuring_pdf_ifilter_for_ms_sharepoint_2007.pdf

  • GroupWise 7.0 API Gateway is supported for Exchange 2007?

    Can someone confirm that GroupWise 7.0 API Gateway is supported for Exchange 2007?
    I found a note in a guide that stated it was not YET supported as of 1/27/2008.

    bwalker2,
    It appears that in the past few days you have not received a response to your
    posting. That concerns us, and has triggered this automated reply.
    Has your problem been resolved? If not, you might try one of the following options:
    - Visit http://support.novell.com and search the knowledgebase and/or check all
    the other self support options and support programs available.
    - You could also try posting your message again. Make sure it is posted in the
    correct newsgroup. (http://forums.novell.com)
    Be sure to read the forum FAQ about what to expect in the way of responses:
    http://support.novell.com/forums/faq_general.html
    If this is a reply to a duplicate posting, please ignore and accept our apologies
    and rest assured we will issue a stern reprimand to our posting bot.
    Good luck!
    Your Novell Product Support Forums Team
    http://support.novell.com/forums/

  • WebADI cannot create template for office 2007

    Hi all,
    When I created document for template office 2007, the page became blank without any error and warning;
    Could you please advise solution?
    OS: Window 7;
    EBS: 11.5.10.2
    Office: 2007
    Here is the bne.log:
    4/25/12 2:19 PM ERROR BneBajaServlet:doRequest() - Throwable: java.lang.NoClassDefFoundError: oracle/apps/bne/integrator/document/template/BneBundleTemplateInterface
    4/25/12 2:19 PM ERROR BneBajaServlet:doRequest() - Throwable: java.lang.NoClassDefFoundError: oracle/apps/bne/integrator/document/template/BneBundleTemplateInterface
    at java.lang.Class.forName0(Native Method)
    at java.lang.Class.forName(Class.java:141)
    at oracle.apps.bne.integrator.document.BneViewerFactory.loadViewerObject(BneViewerFactory.java:110)
    at oracle.apps.bne.integrator.document.BneViewerFactory.createViewerObject(BneViewerFactory.java:75)
    at oracle.apps.bne.integrator.document.BneDocumentService.createViewerContent(BneDocumentService.java:623)
    at oracle.apps.bne.integrator.document.BneDocumentService.createPage(BneDocumentService.java:352)
    at oracle.apps.bne.integrator.document.BneDocumentService.handleRequest(BneDocumentService.java:191)
    at oracle.apps.bne.framework.BneBajaServlet.doRequest(BneBajaServlet.java:256)
    at oracle.apps.bne.framework.BneBaseServlet.doGet(BneBaseServlet.java:75)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:499)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:588)
    at org.apache.jserv.JServConnection.processRequest(JServConnection.java:456)
    at org.apache.jserv.JServConnection.run(JServConnection.java:294)
    at java.lang.Thread.run(Thread.java:534)
    Thanks in advance.

    Hi Susan,
    As my understanding, your development and production environments are two (two way) trusted domains in one forest, and the SharePoint instance was built on the development domain. If this is the truth, please first verify whether your production domain account
    profile has been imported into the user profile service application. If it is not, refer to the following article to check the configuration of your user profile synchronization.
    https://technet.microsoft.com/en-us/library/ee721049.aspx
    If your user profile can be searched correctly, the issue might be caused by fact that the people picker search was limited to the development domain. Please use the following command to configure the people picker search domains:
    stsadm –o setproperty –pn peoplepicker-searchadforests –pv <list of forests or domains> -url <WebApp>
    More information can be found in
    https://technet.microsoft.com/en-us/library/cc263460.aspx
    Thanks,
    Reken Liu
    TechNet Community Support
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact
    [email protected]

  • Web Location URLs for Office 2007 documents (pptx, xlsx, docx) not working

    In our current Content Server solution implemented, each content has a Web Location URL and a Native File associated with it. The Web Location URL(for a content in Public security group) is of the following format:
    http://ucmurl/groups/public/intranetcontent/CONTENT_ID.doc
    So far when a user clicks on this link, they are just presented with an 'Open' 'Save' dialog box, which clearly shows that UCM identifies this file format. So for a Word 2003 document called test.doc, the Open-Save dialog box says:
    Name: test.doc
    Type: Microsoft Word document..etc.
    The behaviour is the same for all Office 2003 documents, pdfs and images. However, it seems like UCM does not identify Office 2007 documents. When I check-in a content - test.pptx, and click on the Web Location URL, it prompts me to Open/Save a 'ZIP' file, which is what UCM does for any unidentified file formats.
    Any suggestions on how to fix this?
    The file formats under configuration manager have been updated to include the following formats with PASSTHRU conversion (since we dont need any conversion on these):
    pptx: application/vnd.openxmlformats-officedocument.presentationml.presentation
    docx: application/vnd.openxmlformats-officedocument.wordprocessingml.document
    xlsx: application/vnd.openxmlformats-officedocument.spreadsheetml.sheet
    The desired functionality is that when the user clicks on web location url, UCM should identify these file formats, and NOT consider them as ZIP files. Any help would be greatly appreciated.

    Try these - if you're using IIS. If not, them something similar should fix.
    Update IIS to include additional MIME types
    Also, if you want to add all of the Microsoft Office 2007 mime-types to IIS in one step you can do this:
    1. Stop IIS
    2. Edit the metabase XML file (C:\WINDOWS\system32\inetsrv\MetaBase.xml) using a text editor.
    3. Search for the <IIsMimeMap Location="/LM/MimeMap" …> element and append the lines below to the MimeMap attribute
    .docm,application/vnd.ms-word.document.macroEnabled.12
    .docx,application/vnd.openxmlformats-officedocument.wordprocessingml.document
    .dotm,application/vnd.ms-word.template.macroEnabled.12
    .dotx,application/vnd.openxmlformats-officedocument.wordprocessingml.template
    .potm,application/vnd.ms-powerpoint.template.macroEnabled.12
    .potx,application/vnd.openxmlformats-officedocument.presentationml.template
    .ppam,application/vnd.ms-powerpoint.addin.macroEnabled.12
    .ppsm,application/vnd.ms-powerpoint.slideshow.macroEnabled.12
    .ppsx,application/vnd.openxmlformats-officedocument.presentationml.slideshow
    .pptm,application/vnd.ms-powerpoint.presentation.macroEnabled.12
    .pptx,application/vnd.openxmlformats-officedocument.presentationml.presentation
    .xlam,application/vnd.ms-excel.addin.macroEnabled.12
    .xlsb,application/vnd.ms-excel.sheet.binary.macroEnabled.12
    .xlsm,application/vnd.ms-excel.sheet.macroEnabled.12
    .xlsx,application/vnd.openxmlformats-officedocument.spreadsheetml.sheet
    .xltm,application/vnd.ms-excel.template.macroEnabled.12
    .xltx,application/vnd.openxmlformats-officedocument.spreadsheetml.template
    4. Save the C:\WINDOWS\system32\inetsrv\MetaBase.xml file
    5. Start IIS
    6. Perform Collection Rebuild on Content Server

  • Acrobat add-in for Office 2007 Word

    I had a problem with the tab for acrobat in Word 2007 it suddenly decided to disappear. I found it in the disabled add-ins. but it would not re activate.
    the solution was to completely remove the add-in and then add it back in from the file menu. all now works as it should

    Presenter has never been a "free" download. If you are a
    member of the Authors group in Connect then you can get your plugin
    from the "Getting Started" link on your homepage. The current build
    is Presenter 6.2 and it does work in Office 2007.
    Jorma@RealEyes

  • Microsoft patches for Office 2007 applications . . . . .

    How do I get the MS Office 2007 extensions (.docx, etc) to open and be readable without going to textedit? I have downloaded the Microsoft patches, but apparently they are not being placed in the correct file to automate the process. Can anyone help. Thanks. jn

    This forum is for troubleshooting Apple Software Update for Windows, a software package for Windows designed to update Apple products that run on Windows, and not related to Microsoft Office. Please post Office related questions on Microsoft's own forums for their Mac products.
    http://www.officeformac.com/productforums

  • Zen Sleek Photo: support for Album A

    As the title already says: will there be support for Album Art for the Zen Sleek Photo in future firmware versions?

    Yes I also ask the same question. I ordered mine earlier this week and thought the sleek would support album art. I actually downloaded MediaMonkey and took about 6+ hours going thru and organizing everything and making sure every album had an album cover. Please Creative just fix this one setback and it would be an even sweeter player then it already is! I couldn't afford to get a ZVM but the Sleek Photo was the next best thing. Please we're not asking much just help us out. There are people out here that still use your earlier players and are being left in the dust...don't leave us there when we know that you can fix it or provide us a way to fix it. Thanks!

  • Presenter Plug in for Office 2007

    hi! We were using Breeze for Office 2003, Power point 03 in
    particular. Now, we are upgrading to Office 2007. Is the new
    Presenter plug available for free just like the older version of
    Breeze plugin? If the Presenter plug in is available for free
    download. Please let me know where can i get it. Thanks.

    Presenter has never been a "free" download. If you are a
    member of the Authors group in Connect then you can get your plugin
    from the "Getting Started" link on your homepage. The current build
    is Presenter 6.2 and it does work in Office 2007.
    Jorma@RealEyes

  • 10.1.3.0.9 available via metalink  - still no support for Outlook 2007

    It's available as Patch 6120041 via metalink...

    Well, AFAIK 10.1.3.10 was the version released for Outlook 07. In any case, for me it doesn't work either...
    Clean XP SP3 install, and Office 2007 Enterprise SP1. When I install the connector, it crashes trying to connec to the calendar server (outlook hangs, crashes, etc.)
    Cleared out profiles, deleted the files as well, uninstalled, reinstalled - nothing.
    Tried out 10.1.3.11 released in metalink but still same issues.
    Tried to configure it as calendar only - still nothing.
    I'm back at uninstalling Office 2007 - Installing Outlook 2003 and then installing back Office 2007, keeping Outlook 03.

  • Uploading files Mime Type not correct for Office 2007 default extensions.

    hi all,
    My company has recently moved over to MS Office 2007 and the default extensions for word, excel etc are now .docx, xlsx etc (ie xml based).
    Unfortunately now when we upload files through APEX to the database the MIME TYPE value for these files isn't being recognised and not loadeding correctly into the APEX_APPLICATION_FILES table and subsequently any future retrieval of these files fails.
    I could put some logic inthe up load procedure to look at the filename in APEX_APPLICATION_FILES and hard code in the releavnt mime types but this still causes problems when retrieving the content.
    Has anyone come across this and got a workround? Is it a bug in AE?
    regards
    James
    FYI - using APEX 3.0.2 over 11G.

    I have not any response to my question and not sure if it is in Apex I need to look or the tomcat server that I need to look. I have a useful application to try to show others what Apex can do for our customers to collaborate. However, most of our customers are using office 2007 so, hoping this is possible.
    I am using apex 3.2.0.00.27 if that helps someone to point me where to find more info on being able to have Word 2007 or excel 2007 fire up to open a .docx or .xlss file stored in a table blob column. Word or Excel does fire up to open .doc and .xls files.
    The following is the query for a report selecting the filenames uploaded into a blob column in my table:
    { SELECT s.ID, SUBSTR(s.NAME,INSTR(s.NAME, '/',1,1)+1,length(s.NAME)) SHORT_FNAME, s.SUBJECT
    FROM spp_attachments s
    WHERE s.PROGRAM_ID = :P2_PROGRAMID }
    Below is the stored procedure called from the link on the short_fname column in report query above.
    { create or replace PROCEDURE  download_file(p_file IN number) AS
    v_mime VARCHAR2(48);
    v_length NUMBER;
    v_file_name VARCHAR2(2000);
    Lob_loc BLOB;
    BEGIN
    APEX_APPLICATION.G_FLOW_ID :=245;
    IF NOT (wwv_flow_custom_auth_std.is_session_valid) then
    owa_util.status_line(404, 'Page Not Found',true);
    return;
    else
    SELECT MIME_TYPE, BLOB_CONTENT, name,DBMS_LOB.GETLENGTH(blob_content)
    INTO v_mime,lob_loc,v_file_name,v_length
    FROM spp_attachments
    WHERE id = p_file;
    -- set up HTTP header
    -- use an NVL around the mime type and
    -- if it is a null set it to application/octect
    -- application/octect may launch a download window from windows
    owa_util.mime_header( nvl(v_mime,'application/octet'),
    FALSE );
    -- set the size so the browser knows how much to download
    htp.p('Content-length: ' || v_length);
    -- the filename will be used by the browser if the users does a save as
    htp.p('Content-Disposition: attachment;
    filename="'||replace(REPLACE(substr(v_file_name,instr(v_file_name,'/')+1),chr(10),NULL),chr(13),NULL)|| '"');
    -- close the headers
    owa_util.http_header_close;
    -- download the BLOB
    wpg_docload.download_file( Lob_loc );
    end if;
    end download_file; }
    Thank you,
    Mark

  • UE-V support for Office 2013?

    Hi
    Can we expect a UE-V template for Office 2013 from Microsoft?
    Mario

    There are some Office 2013 UE-V settings templates here that are worth testing: http://gallery.technet.microsoft.com/site/search?f%5B0%5D.Type=RootCategory&f%5B0%5D.Value=UE-V&f%5B0%5D.Text=UE-V
    Please remember to click "Mark as Answer" or "Vote as Helpful" on the post that answers your question (or click "Unmark as Answer" if a marked post does not actually
    answer your question). This can be beneficial to other community members reading the thread.
    This forum post is my own opinion and does not necessarily reflect the opinion or view of my employer, Microsoft, its employees, or other MVPs.
    Twitter:
    @stealthpuppy | Blog:
    stealthpuppy.com |
    The Definitive Guide to Delivering Microsoft Office with App-V

  • Support for Office 64bit

    Does anyone have an ETA on when Office 64 bit will be supported by SAP 8.8? Reason being able to run XL reports in excel 2010 64bit.

    Dear Ms. Watters,
    i think in the Moment SAP does not handle Office 2010 64 Bit.
    Please see the following Information:
    Microsoft® Office 2010
    - Standard & Professional Edition
    According to Microsoft® Corp., Microsoft Office 2010 by default installs the 32-bit version even if your computer is running 64-bit editions of Windows.
    Before upgrading from earlier Microsoft Office versions, make sure you carefully read the Microsoft Office 2010 System Requirements as stipulated by Microsoft Corp. (1)
    6) For the time being, the SAP Business One release tracks 2007 and 8.8 only support the 32-bit version of the Microsoft Office 2010 editions.
    https://websmp101.sap-ag.de/~form/sapnet?_SHORTKEY=01100035870000706454&_SCENARIO=01100035870000000183&_ADDINC=011000358700001192682007E&
    Best regards,
    Indira Siebmanns

Maybe you are looking for

  • How to set file name and destination folder without user interaction

    how can I set the file name and destination folder to generate a pdf file like "c:\myfolder\document.pdf" in this folder automatically. Is there a tag in .joboptions ? Goal: User click print button. In the background a pdf will be generated in e.g. "

  • XML support in SAP 4.6

    Hi all ! I'm looking for information about XML support in SAP 4.6c. I have to implement a data exchange mechanism between SAP and web application written in Java. Whole idea looks simple: Java application send an XML document through RFC and ABAP pro

  • Change the bar graph color

    Hi Is it possible to change the bar graph color? I want the first bar to be green, second to be red, thrird to be orange and fourth to be gray. Is there anywhere to specify the color? Thanks

  • TREX server

    Hi Exports I am working on Solution Manager 7.0 EHP. we want to install trex server, my question is do we require any additional software licensing for this installation from SAP. consider it as high priorty Regards Subbaraju

  • Need a example about calling cobol by java?

    hi all, who can post a exampe about call cobol by java, thanks a lot.