Attachement of Word Document in QM

Hi,
I just wanted to know can we attach a word document in QM module of SAP. If yes please explain
With Regards

Hi ,
If you want to use that word document during Results recording or inspection , you can create & use as follows.
1) create document using CV01N
2) Attach that document in Inspection method using QS31
3) Attach that inspection method to MIC.
By this way , you can attach that Word or any document to MIC & can be used during results recording process.
Regards
K.M.Arun

Similar Messages

  • Ole, attaching a word document in forms6i

    Hi everyone,
    I am planning to attach a word document using an ole container in a blob database item in oracle 6i forms environment.
    I was able to do it but when a word document is opened i was not able to restrict few users from editing the word.(Allow all user to add notes(insert) via word document, allow all users to double click and read the notes but restrict few users from updating the notes in the word document)
    I can control on preupdate of the block but I not able to do any validation when the word document is opened.
    I wanted to check if anyone has done this before.Are there any tips, suggestion, pros and cons on using ole.
    Thanks in Advance.
    Vin.

    Hi everyone,
    I am planning to attach a word document using an ole container in a blob database item in oracle 6i forms environment.
    I was able to do it but when a word document is opened i was not able to restrict few users from editing the word.(Allow all user to add notes(insert) via word document, allow all users to double click and read the notes but restrict few users from updating the notes in the word document)
    I can control on preupdate of the block but I not able to do any validation when the word document is opened.
    I wanted to check if anyone has done this before.Are there any tips, suggestion, pros and cons on using ole.
    Thanks in Advance.
    Vin.

  • OTM can not open attachment with Word Document(*.docx)

    With more and more use of Word Document(*.docx) (version 2007). OTM (Oracle Test Manager) can create an attachment with it, but can not open attachment with Word Document(*.docx). Is this a problem for anyone else? Any wok around?
    Thanks
    Katherine

    I am using OTM version 9.2 and the Word document (*.docx) attachment can be opened in this.
    For being able to open a docx file, try to attach an word document from the file option in the Requirements, Test or Issue tabs in OTM , once you upload the file, please check if location is " in Database" Else click update DB and upload the document.
    Once the attachment is attached to the Attachment section in the right pane, clicking on the attachment will open the *.docx document.
    This has worked for me.
    Hope this helps.

  • Attach the word document in Sales order .

    Dear All
       How can i attach the word doc file in sales order & this file should be printed  in next page of order confirmation output ?
    Thanks
    Chahat

    Hi
    Go to SU3, go to parameters tab and enter parameter ID = SD_SWU_ACTIVE and value as X.
    Now go to sales order in VA02
    You can see "Services for Object" link at the top left.
    Click this and then click the Create button. Here you can link the attachments.
    You can also do this by means of a program.
    You can retrieve such documents from teh sales order whenever you want.
    Hope this helps

  • Attaching a word document to the work item

    Hello Everyone,
                              I want to send an attachment with the work item. My requirement is as follows.
    Iam working on CRM.  The Business Object which Iam using is BUS2000116. In this Activity, there is an attacment tab. Here the user will generate a word document which is populated with the values from the Activity.
    I need to send this word document as an attacment through a work item when status gets changed.
    I can send the work item. But in my BO BUS2000116, the attachment is not being shown. So I can't do any binding to the Container element Attach_objects.
    Please let me know how to achieve this.
    Regards
    Hari

    Use SAP_WAPI_ATTACHMENT_ADD function module.
    or  There is also a step type in 4.6 you can use in the workflow -Generate
    Document from a template. You can create doc template (e.g. using
    MS Word) and insert a placeholders in the text which would at
    generation time be substituted with values from corresponding container
    elements.
    <inappropriate content removed by moderator>
    Thanks
    Yogesh Sharma
    Edited by: Mike Pokraka on Jul 1, 2008 1:34 PM

  • Requirement to attach a word document to an Appointment page

    Hi All,
    We have a requirement to attach or show a Word document which can be edited on the Appointment page.
    This document is like a form which has few questions , while creating an Appointment the use can open this and enter relevant answers and save the same . This form will not pull out any data from the Appointment created.
    The same form must be shown for every appointment created in that Transaction type.
    I am trying to use the Template designer and webservice for the same . But i understand this tool is used to pull out info from the Object like the appointment.
    Is there any way we can attach a document to the Appointment page , where the user can open it , put it all the answers to questions manually and save it to the same page .
    Experts please help with the same !
    Thanks in advance !!!

    Thanks Neha,
    Issue  resolved,  I followed  this SAP note
    https://websmp130.sap-ag.de/sap%28bD1lbiZjPTAwMQ==%29/bc/bsp/spn/sapnotes/index2.htm?numm=1566793
    My requiremnt was to pull the data and pre fill the word doc .. so a web service was required and i was fasing the issue of grey blank page which was not editable , later on i discovered that in CRM 7 they have changed the way and we need to follow the following steps :
    1. Fill all the required details in the template designer with the web service that was craeted
    2, Download the schema and save
    3. press start designer
    4. Download the template and save
    5. open the downloaded template , press the XML schema button in the developer's tab
    6. Add the schema and enter the alias name
    7. Remember to uncheck the validate button and tick the "Allow saving the XML even if not valid "
    8 . Design the template save it
    9 Upload it in UI using the upload option
    Hope this will be usefull for people working in CRM 7 with Ehp1
    Regards
    Abhinav

  • Attaching a word document

    Some of the time when I send an email with a word document attached, PC cannot open it. Am I doing something wrong? Could someone let me know how to fix this problem. Thank you in advance for all your help.
    PowerBook G4   Mac OS X (10.4.7)  

    This link should be helpful.
    http://docs.info.apple.com/article.html?path=Mail/2.0/en/ml1014.html

  • How to attache a word document file

    Hi all,
       Thanks in advance,
       Does anyone know please help me out.
       I want to attach word document file  into one of the field in my customised screen, and when i double click the path it has to open that particular file in a small window .
    Please provide  me sample of code, I think that can be done throu oop .
    Thanks and reagards
    Shiva prasad D

    Use the following code to execute the native application to open your document.  Example,  if user click on a word document, this will open the document in Microsoft Word.  If execl, will open the document in Microsoft Excel. 
      CALL METHOD CL_GUI_FRONTEND_SERVICES->EXECUTE
        EXPORTING
          DOCUMENT               = 'C:test.doc'
          MAXIMIZED              = 'X'
          SYNCHRONOUS            = 'X'
        EXCEPTIONS
          CNTL_ERROR             = 1
          ERROR_NO_GUI           = 2
          BAD_PARAMETER          = 3
          FILE_NOT_FOUND         = 4
          PATH_NOT_FOUND         = 5
          FILE_EXTENSION_UNKNOWN = 6
          ERROR_EXECUTE_FAILED   = 7
          OTHERS                 = 8.
    Regards,
    Rich Heilman

  • Document web item issue when we attach a Word document

    Hi experts,
    I have created a word document in BW and i want this document to be displayed in the List of documents webitem where the users can add some more comments in the template i have added.
    But even after the document is in place the document icon is not displayed but if i keep normal plain type text document then the document icon is visible with a edit option. but this edit option is also not avaialble for Worddocument
    do i need to make some config settings.
    thanks and regards

    Hi
    Thanks for the info, okay but when i am creating the document its getting me into plain text instead of opening the MSWORD format.
    i am doing this in portal from comments button.
    thanks and regards

  • Mac Mail v4.1 stalls after attaching a Word document

    I have had intermittent trouble when attaching a Word doc onto an email. Right after the attachment is made, if I click back into the email body to continue typing, Mail stalls. This has occurred since the upgrade to Snow Leopard.

    I think you may be misundestanding. It freezes up just after the attachment is inserted - meaning, I get the dreaded spinning wheel. I have to force quit. When I reopen Mail, the message window reappears, but without the attachment. So I reattach, and typically it works, as long as I don't try to amend the message.

  • How to attach a MS Word document to Quotation/Sales Order?

    Hi all
    Can somebody let me know how to attach MS Word documents in Quotation (VA 21) or Sales Order (VA01) screens

    Hi,
    Please use the "Services for Object" Icon just below the menu bar in the Sales order overview screen for attaching any document into the sales order. Once you get into the drop down, select Create - Create Attachment" option.
    The attachment can be viewed from the same icon! In the drop down, select Attachment list!
    Hope, this helps!
    Thanks
    Siva
    Sorry,when I opened the message for replying, no one had replied till then. ***
    Message was edited by:
            Sivasubramanian Senguttuvan

  • Attaching word document with PO?

    Hello Gurus,
    I want to attach a word document while creating PO(ME21N) to vendor.
    is it possible?

    DEAR,
    under the command field (where we enter the T.code) and beside create purchase order there is a icons called service object click  on that we will get create attachement ,here u can attached the word document and in me23n or me22n remaining people can view this document...
    Regards
    venu gopal

  • Attaching word documents with process intsnace??

    Hi All,
    Iam using WLI 8.1. One of our reqmqnt is such that we need to attach many word documents with process instances.
    I believe this is possible using a data type as RawData. Can somebody confirm this??
    Thanks,
    Prashanth Bhat.

    Any thoughts?
    Yep.
    Why are you posting this question in the iPod forum?

  • Attaching word documents

    Whenever I attach a word document to a windows user, they are unable to open the document (I think they lose the extension).
    Any suggestions?

    First, make sure the file does have an extension before you attach.
    Second, make sure the two options in Edit menu, Attachments are checked.
    Third, format the email as Plain Text. Format menu, Make Plain Text.
    There is really nothing else you can do to make Outlook work with the rest of the world. Outlook is pretty much only compliant with itself.

  • Cannot open Word document attachment in mail before sending.

    Cannot open Word document attachment in mail before sending.
    In Snow Leopard Mail 4, (Version 4.0 (1075/1075.2)) if I attach a word document to a message and, BEFORE sending the message, I double click the attached document to open it, to make sure it is the right one, I get the error "Mail was unable to save the attachment “Test.doc” to disk. Verify that your downloads folder exists and is writable."
    The attachment is mailed correctly and arrives at the destination, but the ability to verify an attached document before sending it is essential. This has worked fine in all previous editions of OS X.
    Any ideas?
    Thanks - Lawrence

    I have same problem. I've done the following testing to pinpoint where the problem lies and there are clues (see below):
    1. My machine had SnowLeopard installed "fresh" (i.e. disk reformat and installed cleanly)
    2. I have a comparison machine running Leopard (10.5.6) - essentially a mirror but with different OS
    3. Problem is triggered when creating new email, with a MS Word .doc attachment added. If you attempt to open the attached file in the mail (not yet sent) it produces the error message "unable to save file XXX.doc to disk. Verify that your downloads folder exists and is writeable"
    4.However, once the mail is sent, the recipient can open the attachment without problems.
    5. I have run Disk Utility and all permissions are correct. My downloads folder exists.
    6. The problem is not present in Leopard (mirror machine other than OS)
    7. I have uninstalled and reinstalled MS Office. Problem still present
    8. I have deleted and recreated the preference files for both MS Office and for Mail. Problem still present.
    And finally...
    9.The problem is confined to .doc files.It works fine for .pdf, .ods AND even for Microsoft .xls files.
    So it may be a MS Word problem triggered by Snow Leopard?
    Apple: if you can confirm this is a Microsoft problem it may be able to be reported to them as a compatibility issue?
    Hope this helps.

Maybe you are looking for