Get the word document

Hello
Some contract templates(MS Word-2010) are storing in DOCUMENTAM (This MS-Word 2010's location name looks like, [http://emdn.dct.jppharma.com/includes/site_selector/index.html?FM?#includes/FM/dirview,asp]
For some reason, i need to fetch them into application, is there any standard FM / BAPIs / Classess?
Pls. let me know how can achieve it?
Actually, i need not fetch it as a 'document'....... just i need the content / text / matter wrote on that MS-Word-2010 document
So that, i will may put that content / text into a new (preferably PDF or MS-Word2010 again) document and i will email it
Thank you

Any reply pls.
Thank you

Similar Messages

  • HT2506 hi i can't seem to copy and paste pdf files from preview to a microsoft word document. it always comes up with nonsense characters in the word document. how do i fix this? thanks in advance

    hi i can't seem to copy and paste pdf files from preview to a microsoft word document. it always comes up with nonsense characters in the word document. how do i fix this? thanks in advance

    Hi,
    The quickest way to do this (tested with OS 10.8.2, MS Word 2011) is in one line:
    tell application "Microsoft Word" to close every document whose name begins with "book"
    The reason why your script doesn't work is that you aren't specifying to Word which document you want it to close.
    So, changing one line ought to do it:
    close document incrementvalue -- instead of "close document"
    But... when you close a document, you change the document count. Document 2 becomes document 1, document 3 becomes document 2 etc. So eventually you'd get a message saying "The object you are trying to access doesn't exist".
    Because of this, if you want to do it in a repeat loop, you have to work backwards:
    tell application "Microsoft Word"
      set doc_count to count documents
      repeat with x from doc_count to 1 by -1
      if name of document x begins with "book" then close document x
      end repeat
    end tell
    Hope this helps.

  • How do I retain Microsoft Word hyperlinks (internal to the Word document) in pdf export?

    How do I retain Microsoft Word hyperlinks (internal to the Word document) in pdf export? I lose them in process. Using Word 2011 (14.4.3) and Mavericks. Have tried importing to Pages 5.2 and exporting, but that does not work either.

    If you don't get an answer here, search/ask in the forums devoted entirely to MS stuff by its maker.  These forums are for the Apple app Pages.
    http://answers.microsoft.com/en-us/mac/forum/macword

  • I just tried to copy text from power point to a word document. Since then the word document is frozen an shows no reaction. Also can not restart word. Can anyone help me to unfreeze or recover the word document?

    I just tried to copy text from power point to a word document. Since then the word document is frozen an shows no reaction. Also can not restart word. Can anyone help me to unfreeze or recover the word document?

    If the PDF page content is an image (for text that'd by the image that any scanner provides) then it is an image that exports to Word.
    Regardless, Adobe Reader cannot export PDF page content, cannot create PDF and cannot manipulate PDF page content.
    Adobe Reader is a PDF viewer only.
    Perhaps you have a subscription to one of Adobe's online subscription services.
    (ExportPDF, PDF Pack, etc.)
    Each of the online subscription services have their own dedicated user-2-user forums.
    Easy find as there here in Adobe's Forums. Hmmm, just dumping somewhere means ... Ah well, won't go there. Miss Manners would not approve eh.
    Resources for getting into a dialog with Adobe:
    (other than the user-2-user forums)
    ~~~~~~~~~
    To contact support for acrobat.com subscription services: 
    https://www.acrobat.com/misc/en/contact-support.html 
    Other links to support:
    http://helpx.adobe.com/contact.html
    http://helpx.adobe.com/support.html
    contact Adobe Customer Care on Twitter @AdobeCare.
    Phone support (for a fee - have credit card ready)
    800-833-6687, Mon - Fri, 5AM - 7PM PT 
    Be well...

  • Get a word document at background

    Hi all,
    We have a requirement here that we need to get a word document at background. Basically to archive the result layout of a smartform but in a word document. Since the client need to change it. And since it is an BSP application, we need to do it in background. No OLE or GUI function should be available.
    Do anybody have any idear.
    Thanks in advance.
    Hansen Chen

    Hello Hansen,
    if you have a Web AS running on Windows avaliable. You can try a combination of <a href="http://www.phpbuilder.com/columns/yunus20031124.php3">Creating Word Documents on the Fly</a> and <a href="/people/eddy.declercq/blog/2005/09/13/die-mensch-maschine">Die Mensch-Maschine</a>.
    Regards
    Gregor

  • How to handle the word document which is already opened(Add content to it) using VbScript using "Word.Application" method

    Hello,
    I want to add some content to the word document which is opened already and active using vbscript.
    Here is the sample code to have an idea.Kindly Help.
    Set oWord = CreateObject("Word.Application")
    oWord.Documents.Open
    "c:\test.docx" ----->Here i dont want to open the Document as such as my document which is opened already,i have get the control over that document-I try to achive this by using HP UFT tool for word document automation
    oWord.Selection.EndKey
    6,0
    oWord.Selection.TypeText
    " This text has been entered by opening the exisitng document. "
    oWord.ActiveDocument.Save
    oWord.Quit
    Set oWord = Nothing

    Hello,
    Nice to see the Reply from you. I have done the same thing what you have suggested but unfortunately i am not achieving the result as expected.
    Here i explain you clearly,
    Business Scenario:
    Using an aplication we will create word documents-To do this we need to fill all the document properties and click on OK button-After this,Application automatically launches a Word Document with the File name given by itself as per the Configuration and
    it will be available for the Editing-After user add content,he has to check in the document in the application in order to replicate the changes made by user to the document-This is the Business process
    Here my Document actually resides in the Users Folder-"C:\Users\narayanasamy_r\Documentum\Checkout\" before checkin event happened,once i add content,save,close the document,i will navigate to the document in the application  and Do check-in
    operation.
    Interesting point is that,after i do check-in operation my actual document which was resided in "C:\Users\narayanasamy_r\Documentum\Checkout\" will not be available anymore
    So My logic Should be,
    1.identify that particular Document from the Folder and add content,save and close(Note:i dont want to open the document from "word.application" control here, as the application itself opens up the Document)
    Kindly Help On the same.
    Thanks,
    Narayan

  • How do i retrieve the word document format

    I write a java program which writes a word document in to a BLOB in oracle database. and i retrieve the word document from the database and flush the output to a word document in local path. i do get the output and the word document is saved to my local path, but when i try to open the document it opens ina junk format which cannot be read.. how to preserve the format of the document??
    here is the sample code..
    I open a connection.......
    File fileIn     =     new File("C://input.doc");
    FileInputStream     finput     =     new FileInputStream(fileIn);
    BufferedReader br     =     new BufferedReader(new InputStreamReader(finput,"Cp1252"));
    String lStrDoc_name     =     "1011";
              Conn.setAutoCommit(false);
              String lStrQuery     =     "insert into TESTPDF (" +"DOC_NAME,"+"DOCUMENT,"+"DOC_URL) "+" values(?,?,?)";
              pStmt = Conn.prepareStatement(lStrQuery);
              pStmt.setString(1,lStrDoc_name);
              pStmt.setBlob(2,newblob);
              pStmt.setString(3,"C://testing.doc");
              pStmt.executeUpdate();
              pStmt.close();
              Conn.commit();
              Statement     st     =     Conn.createStatement();
              ResultSet rs= st.executeQuery("select DOCUMENT from TESTPDF where DOC_NAME = " + lStrDoc_name + " for update");
              if(rs.next())
                   oracle.sql.BLOB blob=((oracle.jdbc.driver.OracleResultSet)rs).getBLOB(1);
                   System.out.println("BLOB-------->"+blob);
                   OutputStream outbb=blob.getBinaryOutputStream();
                   for(int i = 0; i < fileIn.length(); i++) {
                        outbb.write(br.read());
                   outbb.flush();
              rs.close();
              Conn.commit();
    Later i read the blob and store my output...
    the code is as follows....
    String lStrQuery     =     null;
              String lStrDoc_Name     =     "1011";
              String lStrDoc_Url     =     null;
              Blob newBlob     =     null;
              InputStream     fInput     =     null;
              BufferedReader br     =     null;
              FileOutputStream     fOutput     =     null;
              lStrQuery     =     "Select * from TESTPDF where DOC_NAME=" +lStrDoc_Name;
              try {
                   pStmt     =     Conn.prepareStatement(lStrQuery);
              } catch (SQLException e2) {
                   // TODO Auto-generated catch block
                   e2.printStackTrace();
              try {
                   rs = pStmt.executeQuery();
                   if(rs.next())
                        lStrDoc_Name     =     rs.getString(1);
                        newBlob               =     rs.getBlob(2);
                        lStrDoc_Url          =     rs.getString(3);
                        if(newBlob != null)
                             fInput = newBlob.getBinaryStream();
              } catch (SQLException e3) {
                   // TODO Auto-generated catch block
                   e3.printStackTrace();
              String lStrOutputFileName     =     "C://"+lStrDoc_Name+"testing.doc";
              try {
                   fOutput     =     new FileOutputStream(lStrOutputFileName);
              } catch (FileNotFoundException e5) {
                   // TODO Auto-generated catch block
                   e5.printStackTrace();
                   byte b;
                   try {
                        while ((fInput.read()) > -1) {
                             b = (byte) fInput.read();
                             fOutput.write(b);
                   } catch (IOException e4) {
                        // TODO Auto-generated catch block
                        e4.printStackTrace();
    The word document is stored in my local path.. but iwas not able to read the document. it opens in some ascii format..
    Your help is appreciated..

    BufferedReader br = new BufferedReader(new InputStreamReader(finput,"Cp1252"));Preserving the format would include not mangling it by using a Reader to read it. If you want to preserve it byte for byte then only use InputStream and OutputStream.

  • How can I get a word document onto my ipad

    I tried emailing myself a word document and opening it on my ipad. The tutorial says I should just be able to touch on the attachment, but I get the message saying it can't open the document.

    Per the iPad tech specs:
    Mail attachment support
    Viewable document types: .jpg, .tiff, .gif (images); .doc and .docx (Microsoft Word); .htm and .html (web pages); .key (Keynote); .numbers (Numbers); .pages (Pages); .pdf (Preview and Adobe Acrobat); .ppt and .pptx (Microsoft PowerPoint); .txt (text); .rtf (rich text format); .vcf (contact information); .xls and .xlsx (Microsoft Excel)
    What app generated the word document and what is the extension of that document?
    The iPad will open an emailed word document without any additional apps.
    David M Brewer wrote:
    You need an app on the iPad that can open a word doc. Pages is one app, $9. A free app called box.net can open word docs.

  • How do I get my word documents on my iPad

    Im trying to get my word document on my iPad so I can edit and send them. Can anyone help?

    HansOo wrote:
    If you have iOS5 you have iCloud. If you create an iCloud account, you can upload your Office documents to the iCloud, and they will be pushed to your iPad. Any changes you make in the documents using your iPad will be synced with the iCloud, and can be downloaded again. If you have an iMac, this syncing is fully automated between all your machines.
    This is what Apple says, but what they don't tell you is that you still need to have Pages on one or both machines.  I tried what you suggested and could not get them to load much less sync, since neither my iMac nor iPad have Pages.

  • How to get the words in an opened but unsaved Voice board file?

    I'm using the software named ViaVoice from IBM, which can change the voice from the computer's microphone to text, and display the words on the Voice board file that the software provides.(See attachment)
    Each time the user speaks two words to microphone, the Voice board displays these words on it(but doesn't save the words in the file automatically). I want to get the words into LabVIEW after the user finished speaking everytime.
    For example, in my application, I want to control a car by user's voice, once the user speaks "to Left", the voice board displays " to Left" on it, LabVIEW reads the voice board file every 2 seconds, once LabVIEW finds the number of words changed, it reads the last two words and does the corresponding task.
    The problem is that how can I get the words into LabVIEW from the Voice board? I can pre-run the ViaVoice, pre-open the Voice board, and pre-save the Voice board as a .doc file or a .txt file, But the ViaVoice can’t save the doc/txt file antomatically as the speaker adds new words on. What should I do?

    the attachment

  • Just converted a PDF document to Word, none of the graphics from the PDF file show up in the Word document?

    Just converted a PDF document to Word, none of the graphics from the PDF file show up in the Word document?
    What do I need to do to bring the graphics and exhibits from the PDF file to the Word file?

    Hi jackp52432917,
    How was that PDF file created? Please see  Will Adobe ExportPDF convert both text and form... | Adobe Community
    It could be that the PDF file you're converting was created using a third-party application, and it doesn't contain all the information necessary to ensure a clean conversion. Have you had similar troubles converting other PDF files?
    Best,
    Sara

  • How do I get the word Bookmarks to appear on the right side of my bookmarks toolbar? It has disappeared.

    In my Bookmarks toolbar there is a star, an arrow, and a house. There used to be the word "bookmarks" but it disappeared. I want the word "bookmarks" back so that I can click on that. If I right click in the blue area, all I get is Open all in Tabs, etc. There is nothing to say how I get the word bookmarks.

    Firefox has two bookmark buttons with a star in the Customize window.<br />
    One star button has a drop-marker that open the Bookmark menu and may appear on the Navigation Toolbar or on the Bookmarks Toolbar if the menu bar is hidden.<br />
    The other star button without the drop-marker opens the bookmarks in the sidebar (View > Sidebar > Bookmarks).
    *https://support.mozilla.org/kb/How+to+customize+the+toolbar
    *https://support.mozilla.org/kb/Back+and+forward+or+other+toolbar+items+are+missing
    You can drag the Bookmarks menu button with the drop-marker in the Customize window from the toolbar palette on a toolbar (e.g. Navigation Toolbar or Tab Bar or to the left side of the Bookmarks Menu Items).<br />
    If you do not see the drop-marker then try them both to see which works.
    You only see the Bookmarks Menu button when the Menu bar with the Bookmarks menu is hidden (View > Toolbars or Firefox > Options).<br />
    If the Bookmarks Toolbar is visible then the Bookmarks Menu button is displayed on the Bookmarks Toolbar as part of the Bookmarks Toolbar Items (bookmarks), but you can move it from the right side to the left side of the Bookmarks toolbar if the Customize window is open.<br />
    Otherwise the Bookmarks Menu button will appear on the right hand side of the Navigation Toolbar.

  • I created a 5x7 postcard document in Word with text boxes and graphics.  When I converted it to PDF, some of the items were missing, even though they were in the boundaries of the page and looked fine on the Word document.  What happened, and how do I fix

    I created a 5x7 postcard document in Word with text boxes and graphics.  When I converted it to PDF, some of the items were missing, even though they were in the boundaries of the page and looked fine on the Word document.  What happened, and how do I fix it?  I'm trying to upload the PDF version to Vistaprint.  Thanks.

    Reader doesn’t create pdf files. You can use Acrobat (ask in that forum) to create pdfs. You can subscribe to the Adobe PDF Pack which has a create pdf functionality (please ask in that forum), or you can use a third party utility such as ghostscript, cutepdf, or Microsoft’s own PDF creation capability. For third party pdf creation you will need to ask in a forum dedicated to that software as fellow users of Reader are unlikely to have the knowledge to help.

  • After i export a pdf file (written in Hebrew) to a Word document, the Word document is written in a Mirror-writing, how can i fix it?

    after i export a pdf file (written in Hebrew) to a Word document, the Word document is written in a Mirror-writing, how can i fix it?

    Hi,
    thank you for your help.
    I am using an Adobe Acrobat XI Pro.
    It is not a specific file that causes trouble, it is happening with all the documents with Hebrew fonts.
    I tried the "Save as" option and the same problem happened.

  • Report for editing the word document with xml tags

    Hi all,
    My requirement is to edit the contents of the word document in the presentation server through report programming and save that document  in the presentation server.
    For eg if my word document contains many xml  tags with spaces < EDI_DS40 >, i would like to remove the spaces and i want it to be lyk <EDI_DS40>.Then say if i wanted to make some modification (addition, deletion,replacing with some text) in the text in some nth line of the document how can dis be dione.
    Is there any function module or bapi which serves this purpose.
    Can anyone pls guide me on dis.
    Thanks & Regards,
    Revathi.

    Hi,
    just to let you know I have sorted this.
    http://macintoshhowto.com/leopard/how-to-merge-pdf-files-with-preview-in-leopard .html
    Thanks.

Maybe you are looking for

  • Survey suite

    Hi freinds, I am finding an error in creating a Survey Suite (Define Questionaire), I tried this both in GUI & WEB. In GUI it throws an error '' RFC_VMC_COMMUNICATION_ERROR'' Wheareas in Web the error is '' Error during VM container communication bet

  • Network Topology for Performance/Redundancy

    Hello there, I am projecting my first Oracle VM Pool for the test the virtualization the many Single Oracle Databases 11Gr2 Standard Edition One, but I have difficult about the network topology best practices. I have imagined this: bond0(2x 1gb) - Ma

  • How to install patch in silent mode

    All, I need to install Oracle patch 40 (oracle version 11.1.0.7) in silent mode. Please suggest method. As per oracle it says its documented in Readme.txt but i can't find that information. Thanks in advance

  • Error 1606:BlackBerry Link installation on Windows 8

    I just upgraded my Windows to 8 Enterprise, I downloaded the latest  BL software, it runs well on any other PC but on mine it gives the error 1606 error. I tried searching and only get info on Windwos XP problems which i have tried and failed to work

  • InDesign files disappear from Epson SP R1800 print queue

    I'm on a MAC OS 10.5.8 and using InDesign CS3 5.0.4. I have an Epson SP R1800. When I try to print an InD file it momentarily shows up in the printer queue, but then disappears and nothing happens. There are other printing issues, but we'll address t