Uploading word document in sap(as a attachment)

Hello all,
I want to upload a word file into sap server. How can i do this.
Pls guide me...
I want to save this word file in sap as a attachment and use this attachment in future.
Please guide me...

Hello Ravi,
You can use BDS to upload your word document, ref class CL_BDS_DOCUMENT_SET.
Below example is to upload JPG image, in the same way you can upload .DOC/.DOCX
http://wiki.sdn.sap.com/wiki/display/Snippets/Use+BDS+to+Store+Files+Like+Excel+JPG+through+ABAP
Regards,
Sujeet

Similar Messages

  • Upload word document into SAP

    Is it possible to attach or upload MS Office Word documents into SAP?

    Hi,
    exactly what is your requriement?
    if you want to uplaod .doc into any particular transaction for particular ouccurence(say PO number) , then it depends on the options provided with in that transaction(ME21N for this Ex.)
    otherwise if you want to store some documents in general  then you can store it on Application server.
    Regards,
    Suresh

  • How to store word document in SAP

    Hi Friends,
         How to store and retrive word document in SAP?
    Thanks & Regards,
    Vallamuthu.M

    Hi,
    Check for the SAP ArchiveLink & BDS feature which SAP is providing . I think it will help you.
    Regards
    Maneesh Chandran

  • Storing Word Documents on SAP

    What is the best method to store Word documents on SAP?  I have a requirement for developers to create unit test scripts and then load them into SAP to enable them to be referenced by other programs.  They will have to be stored within a certain hierarchy as well like a directory structure.
    Any help much appreciated!

    Cheers Serdar
    I have been looking at the BDS as this will be the most likely place for storage.  I was also having a look at SE61 - Dcoumentation as you can also store chapters as word documents and then retrieve them using functions from the DSYS group.

  • Create new project files with uploaded word document

    How do I create a new project file with an uploaded word document.  I tried to follow the guidelines using the Robohelp PDF file but after I upload the word document, I cannot see it in the workspace.  Are there other steps to bring the document into Robohelp 9.  I am using the trial version and have never used Robohelp before.
    Thank you!

    I was finally able to fix my problem and I hope to publish this in as many pages as I can.  First I had the exact same issue.  My file was password protected (the one I used as a shell for a new project) spent two hours of work, went home and next
    day “Nothing” same errors.  Cannot open file etc. etc.  So after two hours searching the net I found this company that has a
    Project Repair Toolbox that is cloud based for FREE (no useless downloads).
    I went in > It asked me for the file that I had on my local drive > prompted me for the password and > BAM! the file opened right up.  Since it as viewer only I was able to at least begin re-typing the project plan which was small in nature.
     Check it out, hope it works for you. 
    http://www.project.repairtoolbox.com/

  • Upload of Sections in Word Document into SAP SE38 editor

    Hi
    I was wondering if we can build a ABAP tool which would read different sections within the 'Technical Specification Document' word document and  
    - Create ABAP program in SE38
    - pull content from various sections of Word document under the respective event in SE38
    e.g program could pick up the content written under section '1.1- Input Selection' and have it replicated in ABAP editor before 'Initialization' Event.....
    To make this happen, i am currently struggling to read the content from Word Document. Would apprecaite if you can help /share some light on this subject.
    thanks

    First of all I am wondering who places all the code in techinical documenation. For me it should be just a summary of all things done in the program, so it actually should be created after the report is ready, not before.
    Secondly generating the code from some input stream is highly risky. Word or other applications don't have syntax checker for ABAP, right? So how do you know this coding doesn't dump once loaded to the report.
    Next, dynamic report generation is of course possible with at least two ways, one would be using [generate subroutine pool|http://help.sap.com/abapdocu_70/en/ABAPGENERATE_SHORTREF.htm] but it would require whole program to be self-written not just part of it. Another way with [READ REPORT|http://help.sap.com/abapdocu_70/en/ABAPREAD_REPORT_SHORTREF.htm]  and then insert your part using [INSERT REPORT|http://help.sap.com/abapdocu_70/en/ABAPINSERT_REPORT_SHORTREF.htm]  but this is also not a convenient way of changing the report unless you do this deliberately and totally aware of the consequences.
    As for reading Word you can use OLE or [Desktop Office Integration|http://help.sap.com/saphelp_nw04/helpdata/en/e9/0be7b9408e11d1893b0000e8323c4f/frameset.htm]. For the latter you might look at package SOFFICEINTEGRATION .
    To sum up, although technically possible there is no quarantee you will have the code proper in your document so inserting it in some program might be disaster in consequences.
    Regards
    Marcin

  • Unable to store PDF , XL , Word document into SAP archived tables

    Hi Experts,
    I have created a web interface in WD ABAP which stores the employee's attachement data into sap arcived link.
    For that I have carried out following activities.
    I have Complted customizing for a document type under business object PREL and for this I have reffered following link.
    SASAP Archived Link
    Now I have used file Upload UI element in WDABAP which passes the local file data in Xstring to following function modoules for creating
    an attachment.
    data: it_out type TOADT,
    it_storage type ZDMSSTORAGE.
    CALL FUNCTION 'ARCHIV_CREATE_TABLE'
    EXPORTING
    ar_object = 'HRPDATA' " Object catagory that I have created for file storage under Business Object PREL
    object_id = '10000008'
    sap_object = 'PREL'
    document = filedata
    IMPORTING
    OUTDOC = it_out
    EXCEPTIONS
    error_archiv = 1
    error_communicationtable = 2
    error_connectiontable = 3
    error_kernel = 4
    error_parameter = 5
    error_user_exit = 6
    OTHERS = 7.
    For reading the attached document I am using following FM's
    CALL FUNCTION 'SCMS_AO_TABLE_GET'
    EXPORTING
    MANDT = SY-MANDT
    arc_id = 'Z1'
    doc_id = lv_doc_type"im_doc "'4D5D8445165220C8E10000000A3C082E'
    COMP_ID = 'data'
    IMPORTING
    LENGTH =
    tables
    data = bindata.
    *data: BINARY_TAB type
    CALL FUNCTION 'SCMS_BINARY_TO_XSTRING'
    EXPORTING
    input_length = 10000
    FIRST_LINE = 0
    LAST_LINE = 0
    IMPORTING
    BUFFER = V_XSTRING
    tables
    binary_tab = bindata.
    Now when I upload any file text or image file, its working fine. When I try to upload any pdf , XL or word document, it uploads the file into acchived table
    but when I read this file by converting file data into xstring and passing it into file downlod UI element, It says file is corrupt. Please suggest that if that
    is a issue with object catagory configration ( With storage class) or it is wrong way of reading a document for PDF, XL and word
    Thanks in advance
    Abhay

    hi
    please check the function module used whether it can handle the PDF as well as xl, word documents. if not use some other function module

  • Getting Error While Uploading Clause Document in SAP Sourcing 9.0

    Hi,
    --------------------system description--------------
    SAP Sourcing 9.0
    SAP NW7.31 AS JAVA
    IBM DB2 9.7
    I am getting error while executing clause document.
    ----------------------Error Description---------------
    Login with buyer link into the system-> it has all authorizations
    then Goto -> Contract Management -> Clause Library -> Clause list -> Click on New button -> Click on Add button -> Browse Document
    it is showing POPUP with Error that "There is a problem with the Contract Generation web service Contact your system administrator"
    Thanks and Regards,
    Murtaza Najmi

    Hi Gary,
    it is standalone system i have, everything i have installed on one server.
    i have already checked with restarting IIS server, and i can see word service while running url in contractgen.serviceurl, word service is running fine on browser but when i upload the document a popup window comes with error as i have shown above in my query
    Thanks once again Gary for replying
    Thanks and Regards,
    Murtaza Najmi

  • Mass upload of documents through SAP Archive Link

    Hi Experts,
    Our client is having a requirement, to upload legacy (old) data from third party tool to DMS Content server through Archive link. Tool is implemented and it works fine for attaching individual document along with SAP Object like, Purchase Order, material, etc.
    We dont have any idea as how to upload bulk of drawings for material, need your advice on this.
    Regards,

    Hi,
    I am trying to get more info on how to bulk upload employee documentation through SAP Archive Link' OpenText Enterprise Scan into the categories in OAWD. Once the documents are in Enterprise Scan the Administrator needs to link these to the categories in SAP. This is a manual process - is there a way to bulk upload these documentation to the right categories? Since these documents vary I am not sure that OCR will be a help.
    Pleae could you help in this regard.
    Thank you.
    Regards,
    -- Gustav de Bruyn

  • Upload/Read Documents from SAP-CRM to/from SharePoint

    Hello ,
    We have a requirement to upload documents from SAP CRM to share point(select the document from the desktop and pass the data to sharepoint server) , the user should also be able to view the documents located in Sharepoint.
    There are web methods in SharePoint already developed which will allow the uploading of the documents and passing the location of the stored documents as URL back to CRM.
    Could any one please help me in the follwoing
    1. Configurations to do on SAP side for Calling the methods developed in Sharepoint.
    2. Configuration to pass the document from SAP CRM(Uploaded from desktop) to sharepoint.
    Thanks in advance

    Hi Ravi,
    We also have a similar requirement in which we need to read the document stored in an external server from SAP CRM. Can you please let me know know how you achieved this. I will know the exact path (URL) of the document. Using this is it possible to retrieve the content of the document.
    Regards,
    Sudha.

  • How to convert a Word Document to SAP SCript standard text.

    Hi team,
    Does any one know how to convert a word document or text in Word format to standard text.
    So that we can use that standard text in Script output.
    This might be very useful if we need to convert a lot of text into standard text.

    Hi,
    Create the name of the standard text you want in SO10.
    When the editor is called up, select Text -> Upload and then browse for your file(s). Must be saved in RTF format in Word remember.
    Cheers
    Colin.

  • How to upload word documents in iphone?

    Hello, I need to give a talk and I dont have printer... I should use the iphone, but I dont know how to read Word documents in the iphone... Someone can help me?

    Apple has a paid  app called Pages.  I have never used it but I guess it will open Word documents and might even allow you to store them on your phone maybe in ibooks or somewhere

  • Upload word document

    I am using 9iDS.
    I want to store different types o letter
    (word document .doc)
    in database through form.
    I want to know data type in which file to be stored.
    and how.
    if any one can help me through all steps.
    lastly i want that letter in report output.
    thnks in advance.

    is it integrated or standalone?
    check this oss note
    775424
    Regards
    Raja

  • Inplace Word document into SAP in ECC 6.0 (it runs in 4.6)

    We are in the process of upgrading from 4.6C to ECC 6 and have encountered an unusual situation.
    In 4.6 system, we have a Z report which charge a word template (integrated in SAP Screen) with some data about employees. This programs doesn't run in ecc 6.0.
    Doing a debbug, we change the parameter inplace (before had 'X', now we've clear it) of the following methods, and now it runs, but take out, in a Microsoft Word window, the template with the data.
      CALL METHOD control->init_control
                          EXPORTING r3_application_name = text-bas
                                    inplace_enabled = inplace
                                    inplace_scroll_documents = 'X'
                                    parent = container
                                    register_on_close_event = 'X'
                                    register_on_custom_event = 'X'
                                    no_flush = 'X'.
    and
      CALL METHOD document->open_document
                        EXPORTING open_inplace = inplace
                                  document_url = item_url.
    Does anybody know how we can do for maintain the old presentation way (without an external Word Window)?
    Thanks and Best regards.
    Abel Raya.

    Refer to Note 160892
    A modification is described in the below with which more than 120 value fields are allowed for an operating concern. SAP does not accept responsibility for problems resulting from the implementation of this modification.
    Pre-Requisite
    Before you increase the number of the characteristics or value fields, check whether all characteristics and value fields of the operating concern are required.
    I guess, there is no increase in the number of value fields in ECC6 standard over 120.

  • Is there any app that supports uploading word documents from iPad?

    Not being able to upload my cv from iPad. Is there any app that will help me do it? Please help!

    I've used Quick Office Pro HD. There is an option within iTunes then to associate documents on your local desktop with the app and then import them. 

Maybe you are looking for