Call a word/pdf document

Hi all,
I would like to know which is the best way to open a word/pdf file from an Apex page.
I don't know whether locate the file in the server or in load it as an static file.
I would imagine it would be quicker to put it in the server. I would appreciate guidance on how to do it and where's the most appropriate place to put it.
Many thanks

It's your choice really.
From an end user perspective the result will be the same.
From a developer perspective the effort is similar - either a remote link or a link to #WORKSPACE_IMAGES#.
From an administration perspective, putting them into your static files means that they are stored in your database, within the flows files table. This may or may not be a good thing from backup & security perspective. However, storing them as static items has the advantage that they can be exported as part of your application (under APEX 2.2.)
I usually swing towards storing them on a remote server but YMMV.

Similar Messages

  • Display word/pdf document in the HTML region or report

    Hi,
    How to display blob content stored in a table in HTML region or report region.
    I already have a process to display the image content.
    But my question here is how to display word/pdf document within the html region so that the user can read the document without downloading it.
    Any suggestions/solutions would be of great help.
    Thanks in advance...
    Thanks,
    Ramesh P.

    I was dead wrong.
    The display of images from BLOB is a special case because APEX provides a Display Image item type.
    Moreover, HTP/HTF packages also do not provide for handling of BLOB content. So AJAX cannot be used.
    Which implies that the only way to get binary content, other than images, is with the use of a WPG_DOCLOAD.DOWNLOAD_FILE call.
    This in turn implies that it may not be feasible to "inject" the BLOB into an exist HTML DOM in the Browser.
    Regards,

  • Embed Word/PDF Documents in Documaker 12.1

    Hi
    We have a requirement to embed word/PDF documents during runtime . The path for the PDF/Word document comes as an input in a XML node and we would need to have them embeded/inserted in between the formset. We use Documaker 12.1 ODEE and would like to know if there is any built in utilites/rules that would support adding word/PDF documents during run-time. The documents can be inserted anywhere on the policy package. Though the Rules reference manual says the rule AddMultipageBitmap can be used to embed word/PDF, it doesn't seems to work with them in UNIX. It works perfeclty well for TIFF images. Let us know if we would need to add entries in the INI files to support the rule to embed word/PDF documents.
    Any other approach out of the box is also appreciated. Thanks in advance..

    Hi,
    If it is Linux or Solaris the Word attachment to the document should work out-of-the-box with configuration. For AIX the Oracle Outside In Image Export runtime component that converts the documents for most document types (except for specific types of TIFF) needs a X11 DISPLAY context with user authorization for which to run the rule in because that what it uses to do the conversion to an image.
    Is this AIX you are trying to do this on? If so the ODEE installer for 12.1.x sets a DISPLAY variable in the docfactory.sh startup script in a section for that platform that you would have use to point to a X11 Motif or Lesstif DISPLAY (e.g. my.server.com:2) that has a running X11 server. VNC server option will work also so that the system can remain headless.
    I thought that the Oracle Documaker Enterprise Edition document covers this requirement under its attachments notes, not sure.
    See documentation on Oracle Outside In Image Export for supported documents it can handle and platforms.
    I am not sure if the version Oracle Documaker uses but here is a document reference for v8.3.5 for the Unix particulars, http://docs.oracle.com/cd/E14154_01/dev.835/e12885/c03_unix.htm .
    SCCOPT_RENDERING_PREFER_OIT settings referenced in the above document is only option on Solaris SPARC and Linux x86_32 platforms according to the Oracle Outside In Image Export Developer's Guide for v8.3.5 (http://docs.oracle.com/cd/E14154_01/dev.835/e12885.pdf).
    Regards,
    -Steve

  • SAve as a Word / PDF document

    Hi,
    I have a JSP web application. This application has several user forms to be filled in by the user. The forms are developed using JSP and Java codes. Right now, I am able to print the forms through the application. I would need to save these forms as a word document or a PDF document. Can anyone suggest me how do I go about incorporating this feature in my applicaion.
    Thanks in advance for the help!
    Anu

    If you haven't already, download Cocoon and set it up, then take a look at the examples. That should give you some ideas. I think there may be a forum or mail list for Cocoon implementors.

  • Select a text from a word/pdf document for tagging.

    Hi,
    After an overwhelming response for my [first thread|Thumbnail creation during Image Upload; , I am hoping that my second post will have a solution.
    I am currently working on a knowledge management tool using ABAP WD. The requirement is to open the existing documents and select some text and tag/categorize it.  I also found out that using flash islands, it is possible to get the selected text from textField and pass it back to the ABAP WD binded variable.
    Is there a way to display word/pdf file and perform the text tagging in WD ? using office integration ? Kind help would be greatly appreciated.

    Never mind--I figured it out.

  • How to open word&pdf document in the AplicationServer from Clients (Forms10

    Hi,
    How can in open MS Word & PDF files in the application server/any other PC in network, from the Client. I am using forms 10g.
    Thanks in advance.
    Rizly

    Hi ,
    But it is not working. I think u mean the below code that I copied from the Webutil Document.
    However, when you change this code to use CLIENT_OLE2 (using search-and-replace)
    it doesn’t work.The following example is code which will convert to CLIENT_OLE2:
    DECLARE
    app CLIENT_OLE2.OBJ_TYPE;
    docs CLIENT_OLE2.OBJ_TYPE;
    doc CLIENT_OLE2.OBJ_TYPE;
    selection CLIENT_OLE2.OBJ_TYPE;
    args CLIENT_OLE2.LIST_TYPE;
    BEGIN
    -- create a new document
    app := CLIENT_OLE2.CREATE_OBJ('Word.Application');
    CLIENT_OLE2.SET_PROPERTY(app,'Visible',1);
    docs := CLIENT_OLE2.GET_OBJ_PROPERTY(app, 'Documents');
    doc := CLIENT_OLE2.INVOKE_OBJ(docs, 'add');
    selection := CLIENT_OLE2.GET_OBJ_PROPERTY(app, 'Selection');

  • Including Word/PDF documents and Jpegs in a folder on a DVD

    Hello
    I'm building a DVD of my short film and want to include the press pack in a folder on the DVD. The folder will contain 5/6 JPEGs and 3/4 word documents/pdf documents.
    Anyone have any idea how I go about this?
    Thanks

    Add the files to the ROM section of your project.

  • Use xml file to create a word/pdf document

    i have a xml doument created using jdom i need to create a word or a pdf document from this file
    is there a way to tackle this using java? or what else would you recomend?

    Without knowing any details, I would guess that you have a couple of options;
    Parse the xml using SAX or some similar tool and use the data recovered to create the document using an existing API; HWPF for example would allow you to create a simple Word documnet or, if you were much braver, you could use the SWT to 'drive' Word using OLE/COM.
    If you are very lucky and the xml document conforms to the format Word has recently begun to recognise, you could just try opening the document in Word using the Desktop class.
    As far as I am aware, there is no one tool that will do all of this for you. Of course, you could try using Google of visiting Sourceforge to see if anyone is working on such an application.

  • I filled in a Word pdf document, sent it to a client who uses Word in Windows 7 and the form appears blank when they open it. They can read the form, but nothing that I filled in. Help!

    I was sent a lengthy pdf form that required me to enter data onto it. The sentences appeared compressed on my screen, but I could see everything that I entered. Next emailed it to my boss and when he opened it on his Windows 7 with Word, all of the data that I had entered appeared lost. It was as if I hadn't entered anything on the form. So I asked him to send it back to me. He did and when I opened it on my Mac Book Air, all of the information that I had filled in was there on my screen.
    This went back and forth a few times, but the result was always the same. I have been requested to complete the form on a Windows based computer, which will take me hours. Any ideas what causes this problem and how to fix it?

    What has this to do with Pages? You probably did this in Preview.
    Peter

  • How to upload(my CV) word/PDF document to a website

    Hello,
    I am trying to upload my CV to a website which the job posted on, but I face grayed box, which is locked and doesn't let me to upload my profile!,
    Could you please help me with that?

    Dear red555,
    This problem is existing for any website, which needs to upload file!,,
    This is about 2 days continuously looking for troubleshooting of this problem by searching the net and IPforums,and I found too many people suffering from this,,,,
    Does it need any special application to install?

  • Attachment of Word/PDF to Sapscript layout

    Hello everyone,
    Need some help regarding attachment of document in script.
    I know that we can convert the ouput of a SAPscript form to a PDF in a mail attachment or a spool.
    But what we require is attaching a word/pdf document to an existing SAPscript so we can print it at the end of the existing SAPscript layout as terms & conditions.
    Has anyone does this before? I know how to upload word documents in ole and in document management, but am unsure if its possible to add it to a layout. We can add bmp/tiff files, but pdf files??
    Please advise! Thank you in advance.
    Regards,
    Ketaki

    Hi Rich
    Great to hear that someone has already solved the challenge we are facing now.
    We have to print some PDF’s which are stored in iXOS archiving system and linked with archive link to a SD invoice.
    Is it possible you describe a bit more detailed your solution and if possible you send a copy of the coding to me.
    Thanks in advance.
    Walter Wohlgemuth

  • I have an issue with some PDF documents   some MS Office documents, notably MS Word when received in eMail as attachments not displaying on iPhones, iPad 2s

    Hi,
    I have an issue with some PDF documents & some MS Office documents, notably MS Word when received in eMail as attachments not displaying properly on iPhones, iPad 2s & new iPads?
    PDF docs - areas of the doc only show as grey splotches regardles of viewer
    MS Word Docs -
    inserted graphics don't display at all,
    tables & lists especially with borders are broken &
    tables & lists missing the borders &
    tables & lists missing the 1st 1-2 lines of the lists/tables.
    This is replicated on iPhone 4s, iPhone 4Ss, iPad 2s, iPad new (x2)
    It certainly happens in iOS 5.1.1 & iOS 5.1
    We believe it all worked aok in iOS 5.0.1(?) & prior
    There is no problems reading/seeing these PDF & Word docs on anything other than iDevices.
    This is rather critical for us & if not quickly fixed/rectified will prevent us from further purchases of these devices
    Rolling back to iOS 5.0.1 or prior I believe isn't possible because of the BaseBand update(?) & isn't much of an option because of the quite noticeable Battery/Charging/WiFi improvements in 5.1 & 5.1.1

    Hi,
    I logged a call with AppleCare & have since had explained why this occurs (some time ago)
    I'll try to explain what was indicated to me.
    iOS has a limited Font Set & this affects what PDFs can display. You need to use iOS supported fonts in your PDFs to see/read them properly  
    These supported fonts are indicated here => http://support.apple.com/kb/HT4980
    Regards MS office docs, iOS doesn't have much of an API to work with MS Office documents at all so is stuck with 3rd Party Apps to try to do it.
    Unfortunately Mail in/on iOS uses the API to attempt to open/use MS Office attachments unless you tell it to use an App to open the attachment.
    I have had success opening & reading MS office docs now with CloudOn, but find it slow & very awkward to use.
    Not too sure if this helps others, but at least it explains why this is occurring

  • Hyperlink from within a Word Document to a specific page within a PDF document.

    I was hoping that someone would be able to assist me.  I would like to create a hyperlink (used as a citation) on my Word document that opens directly to a specified page within a PDF document (possible other word docs and so on, but less
    often).  How do I go about performing this?  Another note, all the documents would reside within a SharePoint site.

    I was hoping that someone would be able to assist me.  I would like to create a hyperlink (used as a citation) on my Word document that opens directly to a specified page within a PDF document (possible other word docs and so on,
    but less often).  How do I go about performing this?  Another note, all the documents would reside within a SharePoint site.
    I am not a Word guru, but I don't think you can run a macro from a hyperlink. But you can create an active X label that runs a macro when clicked. You can use the following macro to go to a specific page in a PDF file.
    Sub OpenPDFPageView(DisplayPage As Integer)
    'In order to use the macro you must enable the Acrobat library from VBA editor:
    'Go to Tools -> References -> Adobe Acrobat xx.0 Type Library, where xx depends
    'on your Acrobat Professional version (i.e. 9.0 or 10.0) you have installed to your PC.
    Dim PDFApp As AcroApp
    Dim PDFDoc As AcroAVDoc
    Dim PDFPageView As AcroAvPageView
    Dim PDFPath As String
    Dim DisplayPage As Integer
    PDFPath = "C:\Users\doudou\documents\test1.pdf"
    'Set the page you want to be displayed
    'DisplayPage = 3
    'Initialize Acrobat by creating App object
    Set PDFApp = CreateObject("AcroExch.App")
    'Set AVDoc object
    Set PDFDoc = CreateObject("AcroExch.AVDoc")
    'Open the PDF
    If PDFDoc.Open(PDFPath, "") = True Then
    PDFDoc.BringToFront
    'Maximize the document
    Call PDFDoc.Maximize(True)
    Set PDFPageView = PDFDoc.GetAVPageView()
    'Go to the desired page
    'The first page is 0
    Call PDFPageView.GoTo(DisplayPage - 1)
    'Set the page view of the pdf
    Call PDFPageView.ZoomTo(2, 50)
    End If
    Set PDFApp = Nothing
    Set PDFDoc = Nothing
    On Error Resume Next
    'Show the adobe application
    PDFApp.Show
    'Set the focus to adobe acrobat pro
    AppActivate "Adobe Acrobat Pro"
    End Sub

  • Send word or pdf document as HTML email

    Hello all,
    we have word documents (on a local file) that we want to send via SAP as HTML email, i.e. we need the content of the word document in the email body. The documents also contain images. With the class cl_bcs I can send mails including attachments and also pure HTML but I don't know how to convert the word or pdf document into HTML and how to process it to get the images in the correct way. Is there perhaps a more direct way to achieve the goal to mail the word documents? Is there anybody who can help?
    Thank you very much and best regards
    Frank

    First, as you guessed, most (all?) mail clients don't display "complex" documents (doc, xls, pdf, etc.) inside a mail, they are always provided as attachments. Only simple documents like images can be directly displayed.
    SAP's job is not to convert from a format to another, especially .DOC and .PDF formats, which are rather complex.
    You'd better look at specialized third-party softwares. Note that SAP has a connection tool called BC-XDC (eXternal Document Converter) which is used to connect these third-party softwares to SAP. You may look at the certified softwares using this connection tool.
    Notes: if the .DOC and .PDF documents are generated by one of your programs, prefer to modify them to generate the documents in another format (HTML) instead of converting them. I can't say much as I don't know your exact scenario.
    There is also SO_RTF_TO_HTM (and CONVERT_TEXT maybe) function module, but I wouldn't expect much of it.

  • Problem Converting Word 2007 Document to PDF

    I am having trouble converting a Word 2007 document to a PDF document.  I have Adobe Acrobat 8 Professional.  I have tried to convert the document using the right-click drop down list as well as converting from within the Word document screen itself.  I get the same results -- no PDF document is converted (or opened in a PDF screen).
    When I do the convert from the drop down list or from within the Word document, it gets to the point where it asks me for the name of the new document.  I click save (on the Word document name) and it looks like it is converting, but then the Adobe Acrobat conversion window disappears and no PDF document opens.  I noticed that on the frequently used documents list (from the Windows start button), the new PDF document is listed, but when I click on it, Windows say it cannot find the associated file.  When I look through the list of documents in the folder, the new PDF file is not there either.
    I ran the repair program in Adobe Acrobat.  After it was done, I clicked the button not to restart until later.  When that window closed, I heard the windows "gong" sound with a message to reinstall acrobat.  I rebooted and the problem persists.
    I also have a Fujitsu Scansnap machine which scans documents to PDF files and that seems to still be working fine, so I know at least part of Acrobat is working fine.
    I check the list of disabled add ins in Office and nothing is disabled.
    Any suggestions?
    Thanks,
    Steve

    Open the document in WORD. Select the print menu in WORD (don't know what to call the stupid file icon MS now uses) and select the Adobe PDF printer. See if printing there works.
    If the print does work, then skip the next few comments. If it does not, then go back to the print menu and check the print-to-file button and print. You will be asked for a location and file name. Be sure to note where you put the file and change the extension to PS (like filename.ps). Then starte Distiller and open the PS file you created in Distiller (if you forget to change the extension to PS, then it will be a PRN file and just select that one). Check if the PDF is created this time. If not, you should get error messages from Distiller -- copy all of the error message back here for us to see.
    If the PDF creation in the last step worked, then open the task list (ctrl-alt-del -- select the task list) and look for AcroTray.exe. If it is not running, then it has probably been deleted from the startup. It is found in the Distiller folder of Acrobat for most versions, but may have moved for your version. In any case, restart it if needed.
    As for PDF Maker that you are apparently using, that is a different process. However, check the printing process first and see if you can get it working. If not, PDF Maker will likely not work either. With AA8 and before, PDF Maker was simply a preprocessor for the printer and the selection of a DOC file in Acrobat simply uses PDF Maker to create the PDF. So you have to back out to more basics in creation and be sure those are working before the more advanced technique you are trying to use has any hope.

Maybe you are looking for

  • Error while running disco report (Help needed urgent)

    Hello All, When i am running a disocoverer report i am getting the following error. ORA-01840 input value not long enough for date format ORA-02063 preceding line from prod The data retrieved by the query is incomplete because it was canclled? Kind R

  • User defined path, assigned file name

    I would like enable the user to define the directory where the file created will be saved but keep the naming convention I implemented the same.  I set up a small, and yes crude, program to test out the functionality of the code and its just not work

  • Apple TV3 Not Showing The Main Screen Icons except Computer

    I tried to do everything that i've read in here.. I tried to unplug the power cable for 30 seconds and replug it, same problem occurs. The Main Screen icons don't appear such as Youtube, Radio, the internet, etc.. I get the computer and settings icon

  • My new Game

    Hi,I am a Chinese student and I published a Mobile Game on Nokia Ovi,Display name is whack-a-whacker. Moderator edit: link removed whack-a-whacker is an upgrade version of the classic game with upbeat music and funny characters.You can whack any of p

  • In FF 23.0, Bookmarks (with dropdown menu) does not stick.

    Why would mozilla peeps would make this very useful button disappear? In what way it helps the users? It looks like their Vista moment. For now, I have re-installed FF 22.0 version. Hope they fix this bug soon.