OFFICE 2007 file attachements in SO_DOCUMENT_SEND_API1

Hi Experts,
In our existing application, the mails along with attachments are sent by using the function module 'SO_DOCUMENT_SEND_API1'.
The attachments having four letter extension (DOCX, XLSX, PPTX,....) are not opened properly.
When I do analysis I find that the document extension is supported for 3 characters only (PACKING_LIST-DOC_TYPE).
Please provide solution to send the files as attachment which are having four characters extension.
Regards,

Hi Gupta,
The FM SO_DOCUMENT_SEND_API1 can be used only to send formats prior to 2007 formats. You can send the documents in same format as office 2007 supports previous formats.
Please go through the following links
[ http://forums.sdn.sap.com/thread.jspa?threadID=1291137]
[[http://forums.sdn.sap.com/thread.jspa?threadID=1224671]
Regards,
Aravind.
Edited by: Aravindhan Palanivel on Feb 16, 2012 8:54 AM

Similar Messages

  • MS Office 2007 files are not being indexed (Failed to Index)  in oracle

    Oracle is not able to index MS Office 2007 files who are having extensions like *.docx, *.pptx, *.xlsx. I googled and found that its a bug in oracle. Have they released the fixes for it.
    Request to please help me in this regard

    user10933671 wrote:
    There is no particular error it shows. The files are not getting indexed. In our application it says currently *.docx files are not index. My Oracle client is of version 10.2.0.
    Since am really new to this, can you please tell me where i can find Metalink note 732823 as am not a paid customer.
    That would be a problem. Access to patches (and MetaLink) are part of what you pay for when you buy a support contract.
    Plz help me in this regard
    Thanks in advance
    Edited by: user10933671 on Apr 15, 2009 5:53 AM

  • Add-On to Open Office 2007 Files

    An Apple salesman told me there is an add-on to open Office 2007 files in Office:Mac. Can someone point me to the download location for this? I'm a brand new Mac user so I'm still a little lost. Thanks!

    The salesman was wrong. The converter is not yet available.
    Please search the discussions before posting, as your question has already been asked and answered:
    http://discussions.apple.com/thread.jspa?messageID=4394289&#4394289

  • Reading office 2007 files on my curve 8900

    Hi
    I have recently been provided with a curve 8900 by my company. I can read office 2003 file e.g. .ppt but not office 2007 files e.g. .pptx
    does anyone know if I can do this  please and if so how

    I was wondering whether there is anyway of getting a 512mb or 1gb graphics card into the new iMac?
    Sorry but no, there isn't.
    Does anyone know how I can open docx files or any other Office 2007 files on Microsoft Office for Mac 2004
    Try Microsoft's Open XML File Format Converter

  • 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

  • Pub 6.4 and Office 2007 file extensions.

    Hello all,
    I had an issue pop up recently regarding ALUI 6.5.1, Publisher 6.4, and Office 2007 files.
    Our user base was upgraded to Office 07 several months ago, and we modified our crawlers to handle the new file extensions. We also have a Publisher portlet where users can post various for sale items; kind of a company bulletin board. This portlet uses the News template and sometimes users will attempt to publish a Word or Excel document link to accompany their for sale item. The portlet will publish okay, but when we click on the doc link we get a pop up window that shows the file name with a .ZIP extension and not the correct .DOCX or .XLSX extension. Of course the file does not open either.
    Other than instructing users to save files in the older format/name, is there a way for Publisher 6.4 to support the new file extensions of Office 07? Would this work in Pub 6.5?
    Thanks for any help.

    Any solution to this?
    We are on Publisher 6.5 and are getting the same error.
    I'm assuming this is an issue with the Publisher mime-types (which aren't the same as the general portal mime-types) not being set for the new extensions?
    But it is curious that it is redoing them as .zip files!

  • Office 2007 files

    How can I open office 2007 files from BB 8820?
    Baha

    if you receive the file by email, you can view it by clicking on it.
    The search box on top-right of this page is your true friend, and the public Knowledge Base too:

  • Gaming on new iMac. / Office 2007 files on Mac.

    1)
    My brother plays a lot of games and is currently using a N-Vidia GeForce 512MB Graphics Card.
    I want to get him the new iMac because his current PC is too outdated (yeah it runs windows, lol). I was wondering whether there is anyway of getting a 512mb or 1gb graphics card into the new iMac?
    2)
    Does anyone know how I can open docx files or any other Office 2007 files on Microsoft Office for Mac 2004. I haven't been able to find anything anywhere.
    Thanks.
    Message was edited by: sidmenda

    I was wondering whether there is anyway of getting a 512mb or 1gb graphics card into the new iMac?
    Sorry but no, there isn't.
    Does anyone know how I can open docx files or any other Office 2007 files on Microsoft Office for Mac 2004
    Try Microsoft's Open XML File Format Converter

  • Office 2007 Document Attaching in Solution Manager

    Dear Gurus,
    When document attaching in Solution Manager 7.01, the system does not support Microsoft Office 2007 formats. (docx, xlsx) Are there any customizing for this topic?
    Thank you,

    Hi,
    Thanks, in lieu with your detailed system message, please try with this
    The warning is because the file extension docx is not known for the
    system. All the known extension is defined in table SDOKMIME by standard
    . And customer can extend it in table SDOKMIME_C.
    Actually that is only a warning message, which will not block the
    following up processing. The docx file will be attached if you click on
    the green tick. And the file can be previewed and checked later on.
    If you would like to get rid of this warning anyway, you may extend the
    customer table using the following step:
    -spro->SAP Customizing Implementation Guide
    ->SAP NetWeaver->Knowledge Management
    ->Settings in the Knowledge Warehouse System
    ->Document Management Service
    ->Define MIME Type for File Name Extension
    -add an entry like
    File name extension = docx
    MIME type of a Web object = application/vnd.openxmlformats
    After everything has been done as above, please retry to attach, it should help.
    Cheers,
    sh

  • New Mac User Needs help opening Microsoft office 2007 files on a Mac!!!

    I just got a used ibook G4. I had an old Pentium upgrade IBM before. I love my Mac, but I need my old school files form my IBM. I have OpenOffice.org 2.2 for Mac OS X 10.4.11 and I have a file converter program called X 11 that opens with a huge list of options for converting files, but it dose not say Microsoft offices 2007 it says the version numbers. I tryed the latest version and It wouldn't open in OpenOffice.org. Should I use Apple Script instead? I don't have Apple Works do I need it? I just want to look at the files. Why is there not a office viewer for Mac?

    You have Tiger. Tiger=10.4.x; Panther=10.3.x; Leopard=10.5.x.
    If you are trying with OpenOffice 2.2, it might be worth updating. I have version 2.4, which is the latest. Since 2.4 fixes a security issue, you should update if you plan to use the application anyway.
    NeoOffice, as a previous poster pointed out, should be able to open Office 2007 documents.
    See the discussion at http://user.services.openoffice.org/en/forum/viewtopic.php?f=5&t=4542 for the main OpenOffice thread discussing this issue. It discusses the ODF converter at sourceforge which NeoOffice uses to open Office 2007 documents. Apparently, you can use it with regular OpenOffice, too, but if 2.4 doesn't come with it (and maybe it does - I haven't checked), it might be easier to use NeoOffice for now.
    X11 is not a file converter, by the way. It is the traditional unix GUI. Apple provides a version of this for OS X which enables you to run applications which haven't been ported to the native OS X environment. OpenOffice for Mac OS X uses X11 as do some other applications, such as GIMP, which you may have heard of/used. NeoOffice is a version of OpenOffice ported to the native OS X environment (i.e. it doesn't have to use X11). I haven't used it in a long time - I always use OpenOffice on X11 - but it is supposed to be very good now and should seem very familiar if you're used to OpenOffice. If you can't get OpenOffice to work with your files, you should definitely try NeoOffice before buying MS Office - unless, of course, you especially want to send MS a few hundred of your preferred currency.
    The other thing you can try, if you've still got Office on your IBM machine is converting the files there by opening them and choosing "save as...". That should allow you to select an earlier version of Word/Excel/... which OpenOffice should have fewer problems with. Since you may lose formatting this way, try the other options first. (Also, if you have a lot of files, this option will be very annoying to implement.)
    I do not think AppleWorks is likely to help. (I'm not sure if AppleWorks is even still available... somebody?) There are some suggestions Pages might help, but I would personally try the other solutions first. (On the other hand, I have a very old version of Pages.)
    AppleScript is almost certainly not what you want. It has nothing to do with AppleWorks. It is a scripting language.
    Good luck,
    cfr

  • Why will Numbers not open this Office 2007 file?

    Hi everyone
    This xlsx file:
    http://senduit.com/90ba96
    opens fine in Excel 2003 with compatibility pack, but won't open in Numbers. Can anyone tell me what is wrong with it?
    Thanks
    dtw

    Hi James
    Thanks for the reply. Numbers'08 is supposed to be able to read xlsx (Office Open XML) and xls formats (BIFF) and it does work for other xlsx files, just not the simple one attached.
    I plan to generate xlsx files and thought I might as well keep an eye on compatibility with Numbers, though it is not required. The above xlsx example fails in Numbers (but works okay in Excel) and I'm curious to know why.
    Cheers
    dtw

  • Data transfer problems office 2007 files

    Hallo,
    i have a problem to transfer docx, xlsx and so on with gui_upload.
    With open dataset it worked, but i will transfer files(docx, xlsx ..) from frontend with gui_upload. It dosn´t work.
    Have anyone a idea?
    CALL METHOD cl_gui_frontend_services=>gui_upload
      EXPORTING
         filename                = iv_path
         filetype                = 'BIN'
       HAS_FIELD_SEPARATOR     = SPACE
       HEADER_LENGTH           = 0
       READ_BY_LINE            = 'X'
       DAT_MODE                = SPACE
        codepage                = lv_cp2
       IGNORE_CERR             = ABAP_TRUE
       REPLACEMENT             = '#'
       VIRUS_SCAN_PROFILE      =
      IMPORTING
        filelength                = lv_filelength
       HEADER                   =
        CHANGING
          data_tab                = lt_line
    Thanks.

    Dear Harryatworld,
    Try with different variations for 'FILETYPE' i.e (BIN,ASC,DAT) and 'HAS_FIELD_SEPARATOR' parameter.
    The differences will be available in the method documentation.  
    I had a similar requirement to read from a xlsx file in my project. The below code helped in my case.It reads both xls and xlsx filetypes.
    types: begin of ty_output,
          sno(5)          type c,
          obj_type(20)    type c,
          out_level(2)    type c,
          out_num(20)     type c,
          id(24)          type c,
          desc(40)        type c,
          network(12)     type c,
          netprof(7)      type c,
          nettype(4)      type c,
          wbs_net(24)     type c,
          ctrl_key(4)     type c,
          wbs_elem(24)    type c,
          dur(15)         type c,
          pred            type string,
         end of ty_output.
    data: it_output type standard table of ty_output.
    CALL FUNCTION 'GUI_UPLOAD'
        EXPORTING
          FILENAME                      = l_v_filename
         FILETYPE                       = 'DAT'
         HAS_FIELD_SEPARATOR           = 'X'
        HEADER_LENGTH                 = 0
        READ_BY_LINE                  = 'X'
        DAT_MODE                      = ' '
        CODEPAGE                      = ' '
        IGNORE_CERR                   = ABAP_TRUE
        REPLACEMENT                   = '#'
        CHECK_BOM                     = ' '
        VIRUS_SCAN_PROFILE            =
        NO_AUTH_CHECK                 = ' '
      IMPORTING
        FILELENGTH                    =
        HEADER                        =
        TABLES
          DATA_TAB                      = it_output
       EXCEPTIONS
         FILE_OPEN_ERROR               = 1
         FILE_READ_ERROR               = 2
         NO_BATCH                      = 3
         GUI_REFUSE_FILETRANSFER       = 4
         INVALID_TYPE                  = 5
         NO_AUTHORITY                  = 6
         UNKNOWN_ERROR                 = 7
         BAD_DATA_FORMAT               = 8
         HEADER_NOT_ALLOWED            = 9
         SEPARATOR_NOT_ALLOWED         = 10
         HEADER_TOO_LONG               = 11
         UNKNOWN_DP_ERROR              = 12
         ACCESS_DENIED                 = 13
         DP_OUT_OF_MEMORY              = 14
         DISK_FULL                     = 15
         DP_TIMEOUT                    = 16
         OTHERS                        = 17
    Regards,
    Rijuraj

  • GOS attachment list could not open office 2007 docs

    HI All,
    My client environment is still uses office 2003.
    but documents attached to the financial accounting documents may have office 2007 files attached.
    when we try to open these docs we get an error.
    Is there any OSS note available for the same?
    it is in GOS services.

    Office 2007 changed their file structure. Files are now saved as .docx for word files. Old style was just .doc. Open the document on your PC, choose FILE-> SAVE AS-> 97-2003 document. This will save it with the .doc extension. Then transfer to your BlackBerry. Same for Excel and Powerpoint as well.

  • MS Office 2007 Excel files pdf conversion using Adobe Acrobat 7.1.0 Professional

    How can I use Adobe Acrobat 7.1.0 Professional to convert EXCEL files (to pdf) from MS Office 2007?

    I don't think Acrobat 7 can recognize Office 2007 files; Acrobat 7 was released way before Office 2007.

  • Switching to MAC from Windows: How to open files in Office 2007  VMFusion?

    Dear all,
    Intro:
    I switched to MAC and now cannot find the solution to a simple problem.
    First: I need an Office 2007 PowerPoint FULLY compatible solution.
    What did not work: IWork, NeoOffice, Office 2008 (this is not fully compatible with Office 2007 Files)
    I also had problems with: Parallels (not stable, too many hangups), codeweaver crossover (office files do not even open sometimes, good idea but not suitable for serious office jobs)
    Now I have VMWare Fusion with WinXP and Office 2007 as this seems to be the only truly stable and best solution to run Office 2007 on Mac
    Question:
    How to open files in Office 2007 on MAC VMWare Fusion easily?
    It would be nice to spotlight the file and click and it opens in powerpoint or excel or word 2007 in Virtual Machine.
    The only known solution to me is to use the Windows explorer to navigate to the file and then open it from Fusion WinXP. This is very cumbersome and honestly makes me think of getting back to a windows machine as I work with office frequently.
    Thank you for your help.

    Thank you for the quick reply.
    Yes, I have Office 2007 installed. The problem is that to open files in Fusion virtual machine I have to use the windows explorer and navigate to the file to open it. Now that I have the mac I want to use the good feature of spotlight. So when I search and find the file I want to open I cannot click on it on the mac (or in finder) but I have to switch back to the virtual machine, locate the file again and open it from windows.
    You might think - ok, why not skip the first step of using spotlight, and look up the file in windows explorer before anything else?
    Correct, but I know from parallels that there is a file association possible to directly access the file in office 2007.
    This does not seem possible in Fusion - So the question is whether there is a possibility on the mac to associate the file and to click on it in finder/spotlight and the office 2007 application in fusion opens the file. So far I could not find anything.
    Thanks

Maybe you are looking for