Word document in forms 6i

Hi,
I need to open a word template when the user selects a template from the list box. The template is having bookmarks and I need to pass the field values into those book marks when the user opens the template. Then, the user should be able to edit, save, print the template and when he closes it, he should be able to come back to the application. In the background I need to save the word template in the database.
How to do this?
thanks,
anuradha

You can embed and OLE object like Word into Forms but this is a client/server only solution.
Take a look at the online help for OLE and OLEobjects.
Regards
Grant Ronald
Forms Product Management

Similar Messages

  • How integrated word document in forms 6i

    there is the possibility of integrated a word document in forms 6i?

    You can embed and OLE object like Word into Forms but this is a client/server only solution.
    Take a look at the online help for OLE and OLEobjects.
    Regards
    Grant Ronald
    Forms Product Management

  • Open word document in forms version 6

    Does anyone have a code snippet to open an existing word document through forms. I have a user document which I would like to open from my forms menu.

    hello,
    Try use HOST command to open Words and your document. It works fine for me on Excel.
    sample :
    declare
    Path varchar2(100);
    file varchar2(50);
    begin
    path:='c:\program files\microsoft office\office\excel.exe ';
    file := 'o:\ssd\tools\albook.xls';
    path:= path | | file;
    host(path);
    END;
    null

  • Viewing word documents through forms

    Hi Guys,
    I am using forms 10g and webutil to transfer documents (only word
    documents are working now, pdf isn't. Don't know why
    yet) from the client machine and storing them in the
    database tru forms. How can I view the stored document
    tru forms? The column data type is BLOB.
    Regards,

    Francois,
    I looked at that paper and it helped me greatly in getting my file transfer to work to upload files from the client to the database (BLOB column). I looked over the information on the webutil_docs dialog but I am not sure I understand how to implement the feature to allow users to edit files that have been stored as BLOBs. Can you give a quick and dirty recipe for getting this set up? Is it a standard part of the webutil package?

  • Create/Edit Word documents from Form 6 in the web

    How can I create/edit Microsoft Word documents from a form running under IAS.
    In client/server I can do it using OLE2.

    On the Web the OLE2 option would still work if your Forms server is on a windows machine with word on it. The files will be created on the server and you can get them to the client with the web.show_document built-in.
    If you want to create them on the client machine directly you need a Java bean that will activate the COM interface.

  • MS Word documents in forms/oracle database

    How does one store a word document in the database. Should be able to store the binary file and be able to retrieve it by launching MS word. Can we use BLOB. If so how to store a file into a BLOB column and how to retrieve that when required in forms 6i?
    I do not want to use OLE.
    Any help will be greatly appreciated.
    TIA,
    Tapas

    Use long raw datatype. And use OLE concepts through application
    <BLOCKQUOTE><font size="1" face="Verdana, Arial">quote:</font><HR>Originally posted by Unknown:
    If u have a solution, let me know, I am also facing the same problem
    Regards
    <HR></BLOCKQUOTE>
    null

  • Storing/Editing Word Documents in Forms 6i

    Has anyone done this in 6i ?
    Apparently, the only solution is to write some JavaBeans. Has anyone done this and are there any samples that would allow us to do this other than the samples on Technet as unfortunately they do not help much.
    It seems as though this is a fairly common request so I am hoping that someone has done it and will be able to help.
    Thanks in advance for any help on this issue.
    Andy Penver

    Thanks,
    I think it is better to use LOB's instead of LONGRAW in 8.1.6 ?
    Can you edit formatted text (WORD document) if it is stored in a CLOB or BLOB datatype.
    Has anyone got any pointers to examples of storing formatted text and being able to edit it.
    Thanks
    Andy
    null

  • Converting a Word document with form fields to become a form fillable PDF file with email

    We are trying to convert a number of word(97,and 2000) documents but it never works correctly. The converted PDF file is missing fields and the fields it does convert is one character long. The idea was to have LiveCycle just convert it without anyone having the need to re-design it. They would only need to add a submit button and an email address to the PDF form. Is there something we are missing?

    For the problem of submitting by email and still submitting a PDF file:
    The stock "Submit by Email" button submits via XML. I think you can do one of two things to get it to work:
    1) Use a regular "Button" instead of an "Email Submit Button". Set it's type to "Submit" in the Field tab; then on the Submit tab, use something like "mailto:name@company" for your email address in the Submit To URL box, and set the Submit As type to PDF.
    2) Change the XML for your Email Submit button (in the XML Source view): You'll find something like,
    <event name="event__click" activity="click">
    <submit format="xml" textEncoding="UTF-8" target="mailto:name@company"/>
    </event>
    Change it to:
    <event activity="click" name="event__click">
    <submit format="pdf" textEncoding="UTF-16" xdpContent="pdf datasets xfdf" target="mailto:name@company"/>
    </event>
    I don't know if you need to change just the "Submit format" in the XML, or also add the xdpContent tag.
    Hope that works,
    Mike

  • Word Documents and Forms 6

    Hi.
    I have spent the past three weeks reading forums and doco's from
    anywhere and everywhere on the web, and am battling to come up
    with a proper solution to my problem.
    I am currently storing office documents in a BLOB field in an 8i
    database. I use an OLE container bound to the BLOB field in the
    database to insert these documents from the client into the
    database using a forms 6 form, and this seems to be fine. Where
    the problem comes in is being able to retrieve these documents
    from the database and display them as an icon on a form so that
    users of my system will be able to edit and download these
    documents which are stored in the database. I want to allow them
    to click on the icon (which is a link to the document in the
    database) which will then launch the appropriate office product
    and allow them to do whatever they have to from there.
    Are there any suggestions as to how I can acheive this? I am
    really stumped here, and any help here would be greatly
    appreciated.
    Thanks.
    Craig.

    Is there proper ole documentation oracle provides for such types
    of problems , we are also suffering from the same(OLE & WORD
    INTEGRATION) problem and are not getting the proper soln.
    Calling oracle support for help as many peoples are suffering
    with the same problem
    ...Waiting ...

  • How to open a  Word document in forms

    Hi all ,
    I need to open a document( MS Word) while clicking a button from forms.Will u please help me to do that ?
    Regards,
    Nycy

    CLIENT_HOST will only help you if the file is accessible from the client's filesystem. If you put the documents on the server there are three options:
    1. Transfer the file to the client everytime if should be opened using WEBUTIL_FILE.AS_TO_CLIENT lets say to c:\temp, then open it using CLIENT_HOST as provided by Francois.
    2. Share the directory on the application server to that it can be accessed via UNC-path like \\server\document.doc and use CLIENT_HOST directly on the network dirve
    3. Create a virtual directory in the application server and map it to the physical directory where the doc's are located, then you can access the documents via URL and can use WEB.SHOW_DOCUMENT instaed of CLIENT_HOST.
    hope this helps.

  • PARALLEL WORK IN AN OPENED WORD DOCUMENT AND FORMS 9i

    Hello,
    Our customer want to have an enhanced integration of the Forms application and
    MS Word. Currently, he opens an existing Word-file from a Forms form, MS Word
    opens, he edits the Word file, closes it, and goes back to the Forms
    application.
    The point is, that while the Word file is being opened, he wants to be able to
    go back to the Forms application do some necessary things, and then go back to
    MS Word where his word file is "waiting". Actually, he needs the possibility to
    switch between Forms 9i application and MS Word.
    The integration with MS Word is being done using WebUtil 1.0.6. The call to MS
    Word is done using WEBUTIL_HOST.blocking. I also tried to call MS Word using
    CLIENT_OLE2-Procedures but again I'm not able to go back to the Forms
    application.
    Is it somehow possible or is there any workaround how to enable the "parallel"
    work in Forms application and MS Word?
    Thank,
    Dimce

    Hi Dimce,
    Okay. approach in the right direction. In order to get forms to wait executing the trigger code while in non-blocking mode, create a callback scenario. This is out-of-the-box webutil functionality (please read the webutil manual for details).
    In short,
    1) create a callback trigger at forms level
    2) move all code that fires after you call MS Word to the call back trigger. This code is then executed whenever MS Word is calling back to forms.
    3) use webutil_host.nonblocking_with_callback instead.
    Regards,
    Harm

  • How to open Word document in Forms Web Version

    In the Client-Server version of Forms 6i, we open a Word template by executing the Host command like below,
    host('WINWORD.EXE'||' '||ltrim(rtrim(v_new_filename)));
    How do I execute the same in Web version to open the Word template?
    Thanks in advance.

    Hi,
    I have gone thorugh the examples on OTN. Here's my requirements :
    In our case we are opening a Word template file from the server machine, making some changes, and saving it back to the server machine. The name of the template file, the location to be saved is all internally handled by forms. In the client-server version, allthe user does is hit the Save button and close the Word application.
    In the Web version, I can open the template file in the browser from the server. The user makes the changes & is then prompted to save it to his client machine. After that the user closes the browser & then has to click on a save button which moves the file from the client machine to the server.
    This extra process of saving the Word file to the client machine bothers me as the users can make changes/delete the file on their own before hitting the Save button on the form. BTW, I have borrowed the code mostly from the OTN website.
    So is there any way to avoid this step to saving to the client m/c and then moving it to the server. Thanks.
    I am running forms 6i on 9iAS on WIN 2000.

  • How read word document in form from server's filesystem?

    I want develope an application using client/server framework:
    In server's filesystem hold a variety of files,for example, .doc,.xls,.pdf,information about these files(for example,file type,file name,file summary) hold in a table,as well as file pointer hold in the table by BFILE datatype.How user open these file from client use client's program design by oracle forms?
    thanks for your help!
    my email :[email protected]

    TLF doesn't have a generic HTML importer. There is one that works with the html used by TextField. To use it, try something like this:
    var htmlString:String =  '<p>Paragraph here</p>';
    var textFlow:TextFlow = TextConverter.importToFlow(htmlString, TextConverter.TEXT_FIELD_HTML_FORMAT);
    - robin

  • Open word document from oracle forms 10g

    Hi,
    Could any one please guide me how to open a word document from forms 10g on client machine (windows). My word document resides on application server (unix).
    Thanks for the help in advance.

    I tried that, but it doesn't work.
    What I have done is, I have written a java code that has a function ope_word that opens up a word document. I have created jar out of it called wordbean.jar.
    Add this wordbean.jar in $ORACLE_HOME/forms/java directory and also added in the formsweb.cfg file (archive_jini=wordbean.jar)
    Then I created a form and usinf fbean.register and fbean.invoke functions of forms, I am trying to call wordbean.jar.
    F.bean.register is registering all the components of wordbean.jar but it is not opening the word document.
    Could you please help ??

  • How to show a word document stored in a BLOB column?

    Hi guys.
    I'm trying to show the content of a MS Word document through forms 6i. This document was stored as byte-for-byte by an application developed in .Net to an BLOB column (oracle table). Anybody could help me in how to show this document using Internal Persistend LOBs and through forms 6i?
    I've been searching for it a lot of time without success...
    Thank you in advance.
    Alex.

    I've read about using the ole2 item, but I don't how to do it with BLOB files. I tried to use it and didn't work... I don't know if I've used it correctly or not. Could anybody give a sample, please?
    If anybody knows other way to do it, please send too.
    Thanh you,
    Alex.

Maybe you are looking for

  • Is it possible to delete photos from the hard drive via a collection?

    I use collections to edit photos to find the" keepers".  Is there a way to delete rejected  photos from my hard drive via the collection?

  • Solaris 8 & Dell PowerEdge 6300

    This message goes to Sun Microsystem. I work for a Small School District which is 98% Windows NT. For more than a year I've been looking for ways to introduce a UNIX/LINUX Solution into our network. Finally, the best opportunity arrives: We need to s

  • How to save terminal command and output history to pdf on exit?

    When I exit a terminal session (terminal.app), I would like to automatically save the commands and output from the session to a PDF (or text file) as a reference.  I can do this manually in Terminal by selecting Shell --> Print... --> PDF --> Save as

  • When recording a Mono track

    Hi- I usually record with input Channel 1 (Mono) because I record my guitar w/a regular 1/4" guitar cable feeding it through with a A.R.T. preamp. Now all of a sudden nothing comes through the Channel 1 but now through Channel 2 (Mono). How do I chan

  • Triggering Print from BSP

    I have generated one letter in BSP , my requirement is ,if i fire a print for that letter from EP , it shd go to the printer of his department after 3 hrs,and that can be collected from him later . *Valuable Pts will be Awarded Rgds, J