Ole object missing on pdf file

i have long raw field in database. i am saving excel workbook in it through ole container. it displays well on report but when i generate pdf from report it miss ole field and show that portion of report blank. It exports ole object in postscript format (.eps) but i dont now any software which can open this file and show result on screen.
i am using developer 6i with oracle 9i database in client-server environment.
thanks

Hello,
Take a look to the thread :
Re: Image in Reports
eps files are "Encapsulated PostScript", for more details :
http://www.tailrecursive.org/postscript/eps.html
for example
Regards

Similar Messages

  • OLE Object Missing in PDF/HTML File

    Hi,
    I am storing excel sheet as an OLE object in database in Long Raw field. When i run report it shows that OLE object but when i try to convert it into PDF or HTML format it does not show that OLE object. Is there any workaround that we can use to store that excel sheet on users local drive?

    if nobody knows an answer, try copy the question into the report-forum

  • Memory problem if OLE-object references to WMF files

    Hi there,
    I have a report with an OLE object containing WMFs.
    The graphic files are variable and their name is loaded from the database during runtime (path + filename).
    Running the report leads to 185 pages, each one containing a different WMF.
    If I preview the report in CR, everything looks fine.
    If I print the report, the OLE object / graphic is left empty....
    If I export the report to PDF (as an example) I get the error message 'memory full'. Reducing the data set to ~50, the PDF is created. But the pictures get resized (much bigger) and only parts are visible.
    The machine I'm using doesn't have any memory problems.
    The WM files are only 3 to 12 KB each.
    If I convert the WMFs to JPG and use these within the report it works...
    Problem with this: a loss of quality (it is necessary to stretch the pictures to certain size)
    Thanks in advance for any ideas!
    Susanne
    I'm using CR 2008 SP 3 on Windows 2003 Server

    Format the pictures outside of CR for best results.

  • Insert Object (create from pdf file) in wordpad fails

    Problem:
    I am unable to insert object (create from existing pdf file) in wordpad application.
    Environment:
    OS: Windows 7 Professional + SP1 (64-bit)
    Acrobat X (32-bit installer)
    Procedure:
    Open Wordpad application, click on 'Insert Object', choose 'Create from File', Browse and Select exsting pdf file, click 'Display As Icon' and Click 'Ok'
    Expexted Result:
    PDF should get inserted as OLE object to wordpad
    Actual Result:
    Error message "Failed to create object. Make sure the application is entered in the system registry."
    Addition Notes:
    I noticed that while insterting PDF (OLE object) it seach for certain registry key (AutoConvertTo) which is not available hence it fails.

    Yes, I am aware. But this problem appears only when I insert PDF file (which is Adobe file).
    I guess this has nothing to do specifically with 'wordpad' but I referenced known application from standard offiering. It happens with any 64-bit application using 'rich-edit' control (this is Microsoft too ) and allowing user to insert OLE objects.
    I guess somewhere Adobe Acrobat installation fails to create required registry entries which are being referred by 64-bit applications while inserting PDF files as OLE objects.

  • Dynamic OLE object not displaying proper file

    We are using CR IX R2. I have a report that I would like to attach a pdf to. This pdf will be different depending on the selection of data from the rest of the report. The file location is always the same but again the name of the file will vary.
    The location and name of the file are listed in one field of a table. Is there a way to do this. When I edit the OLE object and select the field where  the file resides it only shows the original document that I choose.
    At this point I am testing it in a blank report before I create the subreport to add it to our existing report.
    Any suggestions?

    What happens if you try this link:
    http://www.sdn.sap.com/irj/scn/index?rid=/library/uuid/e0fbebaf-07e0-2c10-ad9a-d45810ae7109&overridelayout=true
    It should open the PDF Browser viewer. If it doesn't then you likely need to add PDF support to your browser. Or configure PDF or install the latest version. Could be a permission issue also.
    Thank you
    Don

  • Text missing in PDF files

    I have been trying to print out a form from a local university for my daughter.
    http://www.wlv.ac.uk/PDF/uow-direct-app-home.pdf
    I am using Leopard 10.5.2 - but when I preview this form in finder, nearly all of the text is missing. If I try to print it to my non-postscript printer - again, all the text is missing. If I print it to my PostScript printer, then it prints.
    I notice the PDF has badly (i.e. none) embedded fonts, so Acrobat has to use the Substitute "Adobe Serif MM" font.
    Anyone else getting this problem with this PDF?
    Funnily (well, not so funny, when i recently switched to Mac as it's 'THE' platform for graphics - cough!) the PDF renders and prints fine on my XP machine.
    Steve

    OK... I think i may have a handle on this.
    As I use my Mac for design work, the only fonts I routinely have activated are the "must have" fonts in the /System/Library/Fonts directory.
    Everything else is removed, and activated via Font Agent pro.
    I think Preview has a problem when a PDF file does not have fonts properly embeded. I just activated all the standard fonts that Microsoft, and Apple plonk in ~/Library/Fonts and /Library/Fonts - including a copy of Palatino, and, hey presto - Quick view works again.
    However, this doesn't explain the text vanishing when printing from Acrobat itself to a non-postscript printer.

  • Open dataset in binary mode-data missing in pdf file

    Hi,
    I am downloading a pdf file to the appl server using the below code.
    open dataset filename for output in binary mode.
    OPEN DATASET file_name FOR OUTPUT IN BINARY MODE.
         LOOP AT lines INTO ls_lines.
           TRANSFER ls_lines TO file_name.
         ENDLOOP.
         CLOSE DATASET file_name.
         MESSAGE 'File has been Transfered' TYPE 'S'.
    pdf file is downloading to the appl server.
    I am reading the file using CG3Y transaction, an found that some tax values are missing.
    please advice on how to fix this issue ASAP.

    Pls find the code..
    In this case, the pdf file tax values are missing out as shown above screenshot..
    i also tried with legacy binary mode and binary mode code page 1100.
    * Convert OTF Data to pdf data
       CALL FUNCTION 'CONVERT_OTF'
         EXPORTING
           format                = 'PDF'
         IMPORTING
           bin_filesize          = pdf_size
         TABLES
           otf                   = ls_job_info-otfdata
           lines                 = lines
         EXCEPTIONS
           err_max_linewidth     = 1
           err_format            = 2
           err_conv_not_possible = 3
           err_bad_otf           = 4
           OTHERS                = 5.
       IF sy-subrc <> 0.
         MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
                 WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
       ENDIF.
       LOOP AT lines INTO ls_lines.
         ASSIGN ls_lines TO <fs_x> CASTING.
         CONCATENATE lv_content <fs_x> INTO lv_content IN BYTE MODE.
       ENDLOOP.
    *  call SCREEN 9001.
       SHIFT wa_final1-vbeln LEFT DELETING LEADING '0'.
       SHIFT wa_final1-bstkd LEFT DELETING LEADING '0'.
       SHIFT wa_final1-kunnr LEFT DELETING LEADING '0'.
       IF sy-sysid = 'DEV' AND  sy-mandt = '046'.   " Development Server or Client.
         CONCATENATE 'E:\OrdAckNotfctn\Acknowledgements\' wa_final1-erdat
            '_' wa_final1-bstkd '_' wa_final1-vbeln '_' wa_final1-kunnr '.Pdf'
            INTO file_name.
         OPEN DATASET file_name FOR OUTPUT IN BINARY MODE. "TEXT MODE ENCODING DEFAULT.
         LOOP AT lines INTO ls_lines.
           TRANSFER ls_lines TO file_name.
         ENDLOOP.
         CLOSE DATASET file_name.
         MESSAGE 'File has been Transfered' TYPE 'S'.
       ELSEIF sy-sysid = 'SBX' AND  sy-mandt = '046'. " Testing Server or Client.
         CONCATENATE 'E:\OrdAckNotfctn\Acknowledgements\' wa_final1-erdat
              '_' wa_final1-bstkd '_' wa_final1-vbeln '_' wa_final1-kunnr '.Pdf'
              INTO file_name.
         OPEN DATASET file_name FOR OUTPUT IN LEGACY BINARY MODE. "TEXT MODE ENCODING DEFAULT.
         LOOP AT lines INTO ls_lines.
           TRANSFER ls_lines TO file_name.
         ENDLOOP.
         CLOSE DATASET file_name.
         MESSAGE 'File has been Transfered' TYPE 'S'.
       ELSEIF sy-sysid = 'PRD' AND  sy-mandt = '046'. " Production Server or Client.
         CONCATENATE 'E:\OrdAckNotfctn\Acknowledgements\' wa_final1-erdat
           '_' wa_final1-bstkd '_' wa_final1-vbeln '_' wa_final1-kunnr '.Pdf'
           INTO file_name.
         OPEN DATASET file_name FOR OUTPUT IN BINARY MODE. "TEXT MODE ENCODING DEFAULT.
         LOOP AT lines INTO ls_lines.
           TRANSFER ls_lines TO file_name.
         ENDLOOP.
         CLOSE DATASET file_name.
         MESSAGE 'File has been Transfered' TYPE 'S'.
       ENDIF.

  • Input Objects relationship to PDF files size

    Is there a way to determine the footprint an input object makes to the final output file size(PDF)? Can this be done for the runtime delay aswell?

    On top of that - PNG stands for PORTABLE NETWORK GRAPHIC
    It is not intended for printing. It's primarily a RGB file (but it can have embedded cmyk profiles).
    Now I couldn't make a direct pdf file from photoshop, because the image
    has to be reduced and formatted in Indesign for a different book size.
    InDesign supports the placement of PDFs
    What do you mean by this? The image has to be reduced - in physical dimensions, megabytes?
    Formatted in InDesign for a different book? How are you formatting it in InDesign?
    Now I imported these 20 pages in Indesign, scaled them according to the
    size and margin requirements but when I export them doesn't matter which
    compression I use, medium, low or minimum.
    If you're going to use compression set it to Maximum
    Like this I will never be able to put 600 pages below the 100 mb limit.

  • Create 3D objects in a pdf file

    Hello,
    I have a question about creating a 3D object in pdf files. I found out that you can use Adobe acrobat prof extended to create these files but I have a mac book pro and it doens't support the program as far as i can see it. Is this right? And is there another way to create 3D pdf files on my computer?
    Hope you can help me,
    With kind regards,
    Bert

    Hello Steve Small,
    Thank you for your replay! I managed to create the 3D preview in de pdf file.. Thank you very much!
    Though I found a new problem, one that I found has been appointed before http://forums.adobe.com/message/2159438
    Do you at this moment know how I can solve it? Maybe someone found out a trick or is it all ready solved in a new update?
    Thank you in advance, have a great Easter.
    Bert

  • UFT Object recognition for PDF File

    Hi, We are using UFT in Willis and we want a solution to recognize objects in PDF file.  We have various policies and documents whose final output gets generated in PDF and we need to verify those with the help of UFT. In Adobe objects cant be recognized so what will be the solution for this?  Please reply as soon as possible Regards, Pranav

    Note: This thread was originally posted in the Swing forum, but moved to this forum for closer topic alignment.

  • Change value of option button (OLE object) in Microsoft Word file

    Hi guys,
    I would like to convert a macro from VBA to AppleScript. Unfortunately, I'm the beginner of AppleScript and I don't know how to change value of an option button in Microsoft Word.
    For example, I have an option button with 2 options (group name = question413) Yes and No. Now, I would like to open Word file, then change value of option button with group name "question413" to Yes. Below is my code in VBA.
    SetOptionButton "question413", "Yes"
    Public Sub SetOptionButton(GroupName As String, Value As String)
    Dim oShape As Word.InlineShape
    For Each oShape In ActiveDocument.InlineShapes
    If oShape.OLEFormat.ProgID = "Forms.OptionButton.1" Then
    If oShape.OLEFormat.Object.GroupName = GroupName Then
    If oShape.OLEFormat.Object.Caption = Trim(Value) Then
    oShape.OLEFormat.Object.Value = True
    Else
    oShape.OLEFormat.Object.Value = False
    End If
    End If
    End If
    Next
    End Sub
    How could I convert them to AppleScript?Any comments would be highly appreciated.
    Thanks,

    Hi
    Theirs a pretty in depth tutorial over at MACTECH, which I think will aid your in your code transition
    Moving from Microsoft Office VBA to AppleScript:
    MacTech's Guide to Making the Transition
    http://www.mactech.com/vba-transition-guide/index.html
    Budgie
    Message was edited by: Budgie
    Their is also the possibility you could use the "do Visual Basic" command, not to sure about thta though

  • HELLO ALL, I HAVE A POP UP ON ILLUSTRATOR SAYING MISSING PLUG IN SAYING MISSING PDF FILE FORMAT AND THIS IS STOPPING ME OPENING ILLUSTRATOR PLEASE HELP

    Hello all
    Trying to work on illustrator but pop up states i have a plug in missing called pdf file format cannot seem to sort problem, please help, working on mac

    Reinstall the program. This is caused by incompatible updates to Acrobat/ Adobe Reader that introduce new versions of the globally shared PDF libraries.
    Mylenium

  • Linking dynamically to a pdf file from Crystal

    I have a Crystal report in which I need to embed a link to a .PDF file   I pass the year and zone into the report which I then need to use to dynamically link to the proper .pdf file within Crystal.  I tried adding an OLE object and selecting .PDF but I need this link to be dynamic to attach the correct .pdf, not static.  Is that possible?If yes then could you please let me know how to do it.
    Thanks
    Mohan Koduru

    Depending on the version of CR... with 11.5 and higher, search the help file for:
    OLE object dynamic
    Ludek

  • OLE Object - Unknown Type

    We modified a customer's Crystal Report to contain an OLE Object (a linked PDF) and it was working fine and updating perfectly. Recently the customer was having problems using the report. Looking at the report, once it opens it tries to update the PDF but we get this error "Some links could not be updated because their sources are presently unavailable". With this message we get a links button and when we look at that the PDF is now an unknown type.
       Also now when we try to create a new report and insert an OLE Object like before, first off PDF is not in the Object Type list. and secondly it inserts it from a file as an icon if/if not the check box is checked.
       Does anyone know what could have changed for OLE PDFs not to work anymore for us? Any help would be greatly appreciated in this.

    Hi Scotty,
    Appears the DDE interpreter to handle PDF's has either been altered or AV software is blocking access now.
    What happens if they simply double click on any PDF file?
    Use ProcessMonitor to see what is happening, try running one of the reports and then look in the log for Access Denied errors.
    Don

  • Report with OLE Object Problem (Crystal Report 11)

    Post Author: ibertola
    CA Forum: General
    Hi all,I'm a new user, and I've got a problem with OLE object. I would like to have a report that show me ONLY one of many OLE (word document) in Crystal structure.I've created 3 section detail, and in each one I've insert OLE object (creating from a file, and LINK).So, if I change one document stored locally, and then refresh the report, the content doesn't change like the linked file! Actually I've got all locally  Please help me.

    CR XI r2 is not supported on WIN 2008. See the [supported platforms|https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/7081b21c-911e-2b10-678e-fe062159b453]
    documentation  and [this|https://wiki.sdn.sap.com/wiki/pages/viewpage.action?pageId=56787567] wiki.
    Ludek

Maybe you are looking for