WD Abap - show pdf content

hi folks,
i'm trying to show pdf content (type binary) with wd abap, but how?
- with interactive forms ADOBE -> i bound pdfsource the type binary value but i always get the message "ugly scripts are running at that url"
- "normal" interactive froms with a normal interface rather than pdf-data stream work.
we use NW2004s SP 05
any ideas?
kind regards oliver

hi thomas,
well i didnot see the url but i got out following acf trace:
ERROR|20060103160230|WD0284_5376|CAcfControl::ParseParameter|ReadArrayFromUrl failed, Url= http://cat01130.tyrolit.com:8080/sap/bc/webdynpro/tyed/ca_atcp_cre_0001/~wd_key43ACC6054ACC02C8000000000A180A82/acf_control?sap-contextid=SID%3aANON%3acat01130_NY1_01%3aIUyg6v83oBfW_5oMpeaC3BmYWOS9DRej4fSmLpQq-NEW&sap-wd-clientWindowId=2855&sap-wd-resource-id=WD0284&sap-wd-filedownload=X|HRESULT=-2147467259(Unspecified error)
ERROR|20060103160230|WD0284_5376|CAcfControl::ParsePropertyParameters|ParseParameter failed|HRESULT=-2147467259(Unspecified error)
ERROR|20060103160230|WD0284_5376|CAcfControl::SendDataFromClientToAcf|SetProperty: ParsePropertyParameters failed for property dataSource|HRESULT=-2147467259(Unspecified error)
ERROR|20060103160230|WD0284_5376|CAcfControl::invoke|InovkeInternal failed|HRESULT=-2147467259(Unspecified error)

Similar Messages

  • Showing PDF content

    Hi,
    I want to show PDF content which is coming from webservices in my flex application. Please suggest any ideas on how to show it.
    -Thanks
    Vishal Kumar

    Hi,
    #1
    do convertion server-side to format accessible in Flash runtime
    #2
    open new window (new location) in browser so user can see pdf content in separate window via PDF plugin
    #3
    depending on content you could be able to extract it all-client side and show in Flash runtime:
    http://code.google.com/p/purepdf/
    #4
    use air runtime or 3rd party solutions for non-web browser based solutions (so you would be able to embed pdf in your application directly).
    hth,
    regards,
    Peter

  • File Explorer in Windows 8.1 does not find and show pdf content in Search?

    Have a new computer using Windows 8.1 and I have to search foe file content. I am not able to find my .pdf file content when I use File Explorer

    Sounds like a question for Microsoft...

  • PDFs that cause Digital Editions to crash/PDFS that show no content...

    I've been happily using Digital Editions with lots of my PDFs and have been very pleased with the first version of this product. However, I've run into two issues that I was hoping someone could help me with...
    1) I've found a PDF that causes Digital Editions to just crash when you try to view it. The PDF is InfoQ's free version of "Getting Started with Grails" (downloadable at http://www.infoq.com/resource/minibooks/grails/en/pdf/grails-getting-started.pdf if you register). The PDF is secured so it can't be printed. I loaded this into Acrobat Reader 8, no problem. I loaded it into Digital Editions, opened it, got a blank page. Tried to go to page 2, Digital Editions quits with the Windows standard dialog "Digital Editions has encountered a problem and has closed".
    2) Some older PDFs (such as O'Reilly's free X Windows books) import but show no content at all (every page is blank). They work fine in Reader 8.
    Has anyone else run into this or found a solution? I'm using Digital Editions 1.0.467.
    Mark Davidson

    dang! you're right. It does crash. I have logged a bug and we will fix it for the next release. The blank files may well be JPEG2000 images, which we do not yet support.

  • Concatenated PDF file does not show all content.

    When I concatenate 2 single page pdf file into one pdf file, the concatenated page does not show all the content. It misses the last line on the 2nd page.
    However the thumbnails view shows the missing line correctly.
    Also, if I view the concatenated pdf into another pdf view, it shows the content correctly.

    Upon further research in the merged pdf file, it appears the merged pdf file has 2 references to the same field "UFE_ISSUE_DATE".
    If I edit the pdf file in the text editor and change one of the field name to "UFE_ISSUE_DATE_TEST", then the pdf gets rendered correctly with date value shown correctly!
    So, we decided to use 2 different field names in each of the individual pdf for this field only.
    But, what causes confusion is that we do have several other fields with same field name in each of the individual pdf file, but upon merge they appear correctly. Searching for such field name in the merged pdf file via text editor, I can see only 1 reference. Not sure, why this particular field "UFE_ISSUE_DATE" has 2 references in the merged pdf file.
    Any one has any thoughts?

  • Who has an Abap to show the content of iSeries OutQ's ?

    Hi,
    does somebody has an small abap to show the content of the iSeries OUTQs oder perhaps for the status of the QUEUE?
    Best Regards,
    Carsten Schulz

    We've setup a command in SM69 simply named ZWRKOUTQ with command WRKOUTQ.  It can be called from ABAP using the function module SXPG_COMMAND_EXECUTE.
    Here is the code:
      CALL FUNCTION 'SXPG_COMMAND_EXECUTE'
        EXPORTING
          COMMANDNAME                         = COMMAND1
          ADDITIONAL_PARAMETERS               = PARM
        OPERATINGSYSTEM                     = SY-OPSYS
          TARGETSYSTEM                        = PAHOST
        DESTINATION                         =
        STDOUT                              = 'X'
        STDERR                              = 'X'
        TERMINATIONWAIT                     = 'X'
        TRACE                               =
        IMPORTING
          STATUS                              = STATUS
        EXITCODE                            =
        TABLES
          EXEC_PROTOCOL                       = ITAB
      EXCEPTIONS
        NO_PERMISSION                       = 1
        COMMAND_NOT_FOUND                   = 2
        PARAMETERS_TOO_LONG                 = 3
        SECURITY_RISK                       = 4
        WRONG_CHECK_CALL_INTERFACE          = 5
        PROGRAM_START_ERROR                 = 6
        PROGRAM_TERMINATION_ERROR           = 7
        X_ERROR                             = 8
        PARAMETER_EXPECTED                  = 9
        TOO_MANY_PARAMETERS                 = 10
        ILLEGAL_COMMAND                     = 11
        WRONG_ASYNCHRONOUS_PARAMETERS       = 12
        CANT_ENQ_TBTCO_ENTRY                = 13
        JOBCOUNT_GENERATION_ERROR           = 14
        OTHERS                              = 15
      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 ITAB.
        IF itab-f1 eq 1 or itab-f1 eq 6.
          WRITE:/ itab-f3.
        endif.
      ENDLOOP.
    COMMAND1 = ZWRKOUTQ
    PARM = PRINTER NAME
    PAHOST = first part of the PAMSSERVER from table TSP03D
    STATUS LIKE  BTCXP3-EXITSTA
    DATA: BEGIN OF ITAB OCCURS 10,
          F1(1),
          F2(2),
          F3(147),
          END OF ITAB.
    You can use that function module to do stop and start as well by defining the commands in SM69.
    thanx
    Mark

  • Version of file protected by timestamp signature (3161) alone shows "Unrecognized PDF Content"

    Documents which have been signed with a RFC 3161 timestamp signature alone show "Report Code: 4000" described as "Unrecognized PDF Content" in the PDF Signature Report.  I access this report by selecting the signature in the panel and "Click to view this version", then an option to "View Report" is in the top right corner.
    Documents with digital signatures and attached timestamps from the same TSA verify properly and show no errors in the PDF Signature Report.
    All of the timestamps verify properly, though the TSA root certificate must be downloaded and trusted manually.
    Any ideas as to what's going on here?
    An example called InvoiceTS.pdf can be found here. You may also use the link to StarField below to timestamp any PDF you like; the problem occurs universally.
    Version Info: Problem shows in Acrobat X and XI and Reader X and XI, occurs in files with timstamps attached by both Acrobat X and XI.
    TSAs affected: DigiStamp, StarField
    Explicit Error:
    Unrecognized PDF content: The document contains PDF content or custom content not supported by the current version of Adobe Reader.The document appears to have been produced by a later version of Acrobat.

    I have been on the phone with Adobe support more times than I care to remeber about this issue.  It would be nice if the problem would be addressed so a capability Adobe claims to exist with Adobe X actually functions properly.

  • ABAP Programming PDF

    Hello ABAP Programmers,
    I am new to ABAP. I am learning ABAP Programming. I have the SAP PDF file of the ABAP Programming but it is of version April 2001.
    Is any body have latest version of the same.
    Please provide me some link of the PDFs.
    Thanks in Advance,
    Prashant

    go through the links
    Start with this.Refer this
    http://www.sapbrain.com/FAQs/TECHNICAL/SAP_ABAP_DATADICTIONARY_FAQ.html
    http://www.****************/InterviewQ/interviewQ.htm
    http://help.sap.com/saphelp_46c/helpdata/en/35/2cd77bd7705394e10000009b387c12/frameset.htm
    Reports
    http://www.sapgenie.com/abap/reports.htm
    http://www.allsaplinks.com/material.html
    http://www.sapdevelopment.co.uk/reporting/reportinghome.htm
    http://www.sapfans.com/forums/viewtopic.php?t=58286
    http://www.sapfans.com/forums/viewtopic.php?t=76490
    http://www.sapfans.com/forums/viewtopic.php?t=20591
    http://www.sapfans.com/forums/viewtopic.php?t=66305 - this one discusses which way should you use - ABAP Objects calls or simple function modules.
    ALE/ IDOC
    http://help.sap.com/saphelp_erp2004/helpdata/en/dc/6b835943d711d1893e0000e8323c4f/content.htm
    http://www.sapgenie.com/sapgenie/docs/ale_scenario_development_procedure.doc
    http://edocs.bea.com/elink/adapter/r3/userhtm/ale.htm#1008419
    http://www.netweaverguru.com/EDI/HTML/IDocBook.htm
    http://www.sapgenie.com/sapedi/index.htm
    http://www.sappoint.com/abap/ale.pdf
    http://www.sappoint.com/abap/ale2.pdf
    http://www.sapgenie.com/sapedi/idoc_abap.htm
    http://help.sap.com/saphelp_erp2005/helpdata/en/0b/2a60bb507d11d18ee90000e8366fc2/frameset.htm
    http://help.sap.com/saphelp_erp2005/helpdata/en/78/217da751ce11d189570000e829fbbd/frameset.htm
    http://www.allsaplinks.com/idoc_sample.html
    http://www.sappoint.com/abap.html
    http://help.sap.com/saphelp_erp2004/helpdata/en/dc/6b835943d711d1893e0000e8323c4f/content.htm
    http://www.sapgenie.com/sapgenie/docs/ale_scenario_development_procedure.doc
    http://edocs.bea.com/elink/adapter/r3/userhtm/ale.htm#1008419
    http://www.netweaverguru.com/EDI/HTML/IDocBook.htm
    http://www.sapgenie.com/sapedi/index.htm
    http://www.allsaplinks.com/idoc_sample.html
    Check these step-by-step links
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/library/uuid/ccab6730-0501-0010-ee84-de050a6cc287
    https://sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/library/uuid/8fd773b3-0301-0010-eabe-82149bcc292e
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/library/uuid/3c5d9ae3-0501-0010-0090-bdfb2d458985
    for Smartforms material
    http://www.sap-basis-abap.com/sapsf001.htm
    http://www.sap-press.com/downloads/h955_preview.pdf
    http://www.ossincorp.com/Black_Box/Black_Box_2.htm
    http://www.sap-img.com/smartforms/sap-smart-forms.htm
    http://www.sap-img.com/smartforms/smartform-tutorial.htm
    http://www.sapgenie.com/abap/smartforms.htm
    How to trace smartform
    http://help.sap.com/saphelp_47x200/helpdata/en/49/c3d8a4a05b11d5b6ef006094192fe3/frameset.htm
    http://www.help.sap.com/bp_presmartformsv1500/DOCU/OVIEW_EN.PDF
    http://www.sap-img.com/smartforms/smart-006.htm
    http://www.sap-img.com/smartforms/smartforms-faq-part-two.htm
    Re: Need FAQ's
    check most imp link
    http://www.sapbrain.com/ARTICLES/TECHNICAL/SMARTFORMS/smartforms.html
    step by step good ex link is....
    http://smoschid.tripod.com/How_to_do_things_in_SAP/How_To_Build_SMARTFORMS/How_To_Build_SMARTFORMS.html
    SAPScripts
    http://esnips.com/doc/1ff9f8e8-0a4c-42a7-8819-6e3ff9e7ab44/sapscripts.pdf
    http://esnips.com/doc/1e487f0c-8009-4ae1-9f9c-c07bd953dbfa/script-command.pdf
    http://esnips.com/doc/64d4eccb-e09b-48e1-9be9-e2818d73f074/faqss.pdf
    http://esnips.com/doc/cb7e39b4-3161-437f-bfc6-21e6a50e1b39/sscript.pdf
    http://esnips.com/doc/fced4d36-ba52-4df9-ab35-b3d194830bbf/symbols-in-scripts.pdf
    http://esnips.com/doc/b57e8989-ccf0-40d0-8992-8183be831030/sapscript-how-to-calculate-totals-and-subtotals.htm
    SAP SCRIPT FIELDS
    http://help.sap.com/saphelp_erp2005vp/helpdata/en/d1/8033ea454211d189710000e8322d00/content.htm
    scripts easy material
    http://www.allsaplinks.com/sap_script_made_easy.html
    Debugging Document.
    http://www.cba.nau.edu/haney-j/CIS497/Assignments/Debugging.doc
    http://help.sap.com/saphelp_47x200/helpdata/en/c6/617ca9e68c11d2b2ab080009b43351/content.htm
    http://www.cba.nau.edu/haney-j/CIS497/Assignments/Debugging.doc
    http://help.sap.com/saphelp_erp2005/helpdata/en/b3/d322540c3beb4ba53795784eebb680/frameset.htm
    http://help.sap.com/saphelp_nw04/helpdata/en/84/1f624f4505144199e3d570cf7a9225/frameset.htm
    http://help.sap.com/saphelp_bw30b/helpdata/en/c6/617ca9e68c11d2b2ab080009b43351/content.htm
    http://help.sap.com/saphelp_erp2005/helpdata/en/b3/d322540c3beb4ba53795784eebb680/frameset.htm
    BAPI
    http://help.sap.com/saphelp_46c/helpdata/en/9b/417f07ee2211d1ad14080009b0fb56/frameset.htm
    http://searchsap.techtarget.com/originalContent/0,289142,sid21_gci948835,00.html
    Checkout !!
    http://searchsap.techtarget.com/originalContent/0,289142,sid21_gci948835,00.html
    http://techrepublic.com.com/5100-6329-1051160.html#
    http://www.sap-img.com/bapi.htm
    http://www.sap-img.com/abap/bapi-conventions.htm
    http://www.sappoint.com/abap/bapiintro.pdf
    http://www.sapgenie.com/abap/bapi/example.htm
    http://help.sap.com/printdocu/core/Print46c/en/data/pdf/BCMIDAPII/CABFAAPIINTRO.pdf
    http://help.sap.com/printdocu/core/Print46c/en/data/pdf/CABFABAPIREF/CABFABAPIPG.pdf
    http://help.sap.com/printdocu/core/Print46c/en/data/pdf/BCFESDE8/BCFESDE8.pdf
    List of all BAPIs
    http://www.planetsap.com/LIST_ALL_BAPIs.htm
    http://www.sappoint.com/abap/bapiintro.pdf
    http://www.sappoint.com/abap/bapiprg.pdf
    http://www.sappoint.com/abap/bapiactx.pdf
    http://www.sappoint.com/abap/bapilst.pdf
    http://www.sappoint.com/abap/bapiexer.pdf
    http://service.sap.com/ale
    http://service.sap.com/bapi
    http://www.geocities.com/mpioud/Abap_programs.html
    http://www.sapdevelopment.co.uk/reporting/reportinghome.htm
    Simple ALV report
    http://www.sapgenie.com/abap/controls/alvgrid.htm
    http://wiki.ittoolbox.com/index.php/Code:Ultimate_ALV_table_toolbox
    ALV
    1. Please give me general info on ALV.
    http://www.sapfans.com/forums/viewtopic.php?t=58286
    http://www.sapfans.com/forums/viewtopic.php?t=76490
    http://www.sapfans.com/forums/viewtopic.php?t=20591
    http://www.sapfans.com/forums/viewtopic.php?t=66305 - this one discusses which way should you use - ABAP Objects calls or simple function modules.
    2. How do I program double click in ALV?
    http://www.sapfans.com/forums/viewtopic.php?t=11601
    http://www.sapfans.com/forums/viewtopic.php?t=23010
    3. How do I add subtotals (I have problem to add them)...
    http://www.sapfans.com/forums/viewtopic.php?t=20386
    http://www.sapfans.com/forums/viewtopic.php?t=85191
    http://www.sapfans.com/forums/viewtopic.php?t=88401
    http://www.sapfans.com/forums/viewtopic.php?t=17335
    4. How to add list heading like top-of-page in ABAP lists?
    http://www.sapfans.com/forums/viewtopic.php?t=58775
    http://www.sapfans.com/forums/viewtopic.php?t=60550
    http://www.sapfans.com/forums/viewtopic.php?t=16629
    5. How to print page number / total number of pages X/XX in ALV?
    http://www.sapfans.com/forums/viewtopic.php?t=29597 (no direct solution)
    6. ALV printing problems. The favourite is: The first page shows the number of records selected but I don't need this.
    http://www.sapfans.com/forums/viewtopic.php?t=64320
    http://www.sapfans.com/forums/viewtopic.php?t=44477
    7. How can I set the cell color in ALV?
    http://www.sapfans.com/forums/viewtopic.php?t=52107
    8. How do I print a logo/graphics in ALV?
    http://www.sapfans.com/forums/viewtopic.php?t=81149
    http://www.sapfans.com/forums/viewtopic.php?t=35498
    http://www.sapfans.com/forums/viewtopic.php?t=5013
    9. How do I create and use input-enabled fields in ALV?
    http://www.sapfans.com/forums/viewtopic.php?t=84933
    http://www.sapfans.com/forums/viewtopic.php?t=69878
    10. How can I use ALV for reports that are going to be run in background?
    http://www.sapfans.com/forums/viewtopic.php?t=83243
    http://www.sapfans.com/forums/viewtopic.php?t=19224
    11. How can I display an icon in ALV? (Common requirement is traffic light icon).
    http://www.sapfans.com/forums/viewtopic.php?t=79424
    http://www.sapfans.com/forums/viewtopic.php?t=24512
    12. How can I display a checkbox in ALV?
    http://www.sapfans.com/forums/viewtopic.php?t=88376
    http://www.sapfans.com/forums/viewtopic.php?t=40968
    http://www.sapfans.com/forums/viewtopic.php?t=6919
    Go thru these programs they may help u to try on some hands on
    ALV Demo program
    BCALV_DEMO_HTML
    BCALV_FULLSCREEN_DEMO ALV Demo: Fullscreen Mode
    BCALV_FULLSCREEN_DEMO_CLASSIC ALV demo: Fullscreen mode
    BCALV_GRID_DEMO Simple ALV Control Call Demo Program
    BCALV_TREE_DEMO Demo for ALV tree control
    BCALV_TREE_SIMPLE_DEMO
    BC_ALV_DEMO_HTML_D0100
    Remote Function Call:
    RFC is an SAP interface protocol. Based on CPI-C, it considerably simplifies the programming of communication processes between systems.
    RFCs enable you to call and execute predefined functions in a remote system - or even in the same system.
    RFCs manage the communication process, parameter transfer and error handling.
    http://help.sap.com/saphelp_47x200/helpdata/en/22/042860488911d189490000e829fbbd/frameset.htm.
    ALE/ IDOC
    http://help.sap.com/saphelp_erp2004/helpdata/en/dc/6b835943d711d1893e0000e8323c4f/content.htm
    http://www.sapgenie.com/sapgenie/docs/ale_scenario_development_procedure.doc
    http://edocs.bea.com/elink/adapter/r3/userhtm/ale.htm#1008419
    http://www.netweaverguru.com/EDI/HTML/IDocBook.htm
    http://www.sapgenie.com/sapedi/index.htm
    http://www.sappoint.com/abap/ale.pdf
    http://www.sappoint.com/abap/ale2.pdf
    http://www.sapgenie.com/sapedi/idoc_abap.htm
    http://help.sap.com/saphelp_erp2005/helpdata/en/0b/2a60bb507d11d18ee90000e8366fc2/frameset.htm
    http://help.sap.com/saphelp_erp2005/helpdata/en/78/217da751ce11d189570000e829fbbd/frameset.htm
    http://www.allsaplinks.com/idoc_sample.html
    http://www.sappoint.com/abap.html
    http://help.sap.com/saphelp_erp2004/helpdata/en/dc/6b835943d711d1893e0000e8323c4f/content.htm
    http://www.sapgenie.com/sapgenie/docs/ale_scenario_development_procedure.doc
    http://edocs.bea.com/elink/adapter/r3/userhtm/ale.htm#1008419
    http://www.netweaverguru.com/EDI/HTML/IDocBook.htm
    http://www.sapgenie.com/sapedi/index.htm
    http://www.allsaplinks.com/idoc_sample.html
    Refer this
    http://www.sapbrain.com/FAQs/TECHNICAL/SAP_ABAP_DATADICTIONARY_FAQ.html
    http://www.****************/InterviewQ/interviewQ.htm
    http://help.sap.com/saphelp_46c/helpdata/en/35/2cd77bd7705394e10000009b387c12/frameset.htm
    http://www.techinterviews.com/?p=198
    http://www.techinterviews.com/?p=326
    http://www.sap-img.com/abap/answers-to-some-abap-interview-questions.htm
    http://www.sap-img.com/abap/more-than-100-abap-interview-faqs.htm
    http://www.geekinterview.com/Interview-Questions/SAP-R-3/ABAP
    http://sap.ittoolbox.com/documents/popular-q-and-a/abap-sample-interview-questions-3240
    http://www.sap-img.com/abap/abap-interview-question.htm
    http://www.allinterview.com/Interview-Questions/ABAP.html
    new to abap
    New to ABAP
    New to ABAP
    new to ABAP
    Reward points..

  • Showing pdf in Fire fox giving problem

    Hi every body ,
    I have a problem related to PDF showing in the browser , It is working fine in the IE , but in the FF it is not showing .
    Here is my Backing bean code for fetching the PDF .
    The main backing bean name is myBean.
      public void showPDF() throws IOException  
              BufferedInputStream input = null; 
              BufferedOutputStream output = null; 
              InputStream inputStream =null;  
              FacesContext facesContext = FacesContext.getCurrentInstance(); 
              ExternalContext externalContext = facesContext.getExternalContext(); 
              HttpServletResponse response = (HttpServletResponse) externalContext.getResponse(); 
             try  
             //It is a simple POJO , it will return the pdf content 
                     PDF  pdf =  new PDF(); 
                 inputStream = pdf.getPDFContent(); 
                 input = new BufferedInputStream(inputStream, DEFAULT_BUFFER_SIZE); 
                 response.reset(); 
                 response.setContentType("application/pdf"); 
                 response.setHeader("Content-disposition", "inline; filename=\"" + pdf.getFileName() + "\""); 
                 output = new BufferedOutputStream(response.getOutputStream(), DEFAULT_BUFFER_SIZE); 
                 byte[] buffer = new byte[DEFAULT_BUFFER_SIZE]; 
                 int length; 
                 while ((length = input.read(buffer)) > 0)  
                     output.write(buffer, 0, length); 
                 output.flush(); 
             }catch(Exception ex) 
                 ex.printStackTrace(); 
             finally { 
                output.close();  
                input.close();  
              facesContext.responseComplete(); 
         }  Here is my view JSF
    <h:commandLink  value="Show PDF" action="#{myBean.showPDF}" target="_blank" />  Thanks & regards,
    S

    The problem is
    ul.MenuBarHorizontal li
        margin: 0;
        padding: 0;
        list-style-type: none;
        font-size: 100%;
        position: relative;
        text-align: left;
        cursor: pointer;
        width: 7em;
       float: right;
    Change the value back to left.
    The menu bar will now left align itself. To fix that we will go to the container, give it a width and float it to the right as follows.
    ul.MenuBarHorizontal
        margin: 0;
        padding: 0;
        list-style-type: none;
        font-size: 100%;
        cursor: default;
        width: 42em;
        float: right;
    Gramps

  • PDF content disposition on IE

    Hi,
    I am having difficulties in displaying PDF content from JSP. Obviously URL ends with mypdffile.jsp. From the JSP, I set attributes as follows. It works as intended on Firefox. Not on IE;
    response.setContentType("application/pdf;charset=UTF-8");
    response.setHeader("Content-Disposition", "inline;filename=\"Document.pdf\""); Any suggestions how I can fix this mess?

    On IE, it shows nothing! I can see that it reads something then nothing shows up. It is meant to display inside the viewing frame without creating external frames. If I change to "Content-disposition: attachment; filename=ddd.pdf", it comes out with PDF view frame. If you move the frame, you see lots of dirty traces on Windows frame!
    It may IE is not handling extension well.Or size information may be required.
    JSP is convenient to write changeable reports. PDF is generated using iText.
    Regards.

  • I want to open a Illustrator file in Illustrator CS4 but i am getting this message "This is an adobe illustrator file that was saved without PDF content..."

    I want to open a Illustrator file in Illustrator CS4 but i am getting this message "This is an adobe illustrator file that was saved without PDF content..." I tried the save as option with "Create PDF compatible file" option but still same message is showing. PLEASE HELP.
    Thanks in advance.

    I have uploaded the files to my dropbox - Dropbox - AI
    I would really appreciate it if anyone is willing to down-save the version of these files to Illustrator CS4 and send it to me.
    thanks

  • Cannot show PDF contain at Acrobat X standard

    I have a PDF send from external parties, I open it from Acrobat X Standard, it shows a blank page on the screen.
    But it can normally print out the content from Acrobat X Standard and preview at Windows Explorer.
    I did repair and check update.  Everything see work in good condition.
    I use a 3rd parties PDF reader, it shows the PDF content on the screen.
    Anything I can do to solve this issue?
    Thanks in advance.

    Unless the PDF was created by an Adobe product, it might not be fully compliant with the standard set by Adobe and ISO 32000. Open the PDF file properties and look to see what the Producer and PDF Version is for the file.
    It might help if you can post a sample.

  • RoboHelp air help application does not show pdf files

    Hello everyone,
    I hope this is the right place to post my problem.
    I am developing an air help application and I want to embedd some pdf files. I tried two different ways yet:
    1. A direct link to the pdf file (which is located in the project folder)
    2. An iframe
    In the topic preview both ways are working fine. But when I generate the application, it just shows a black page, where the pdf content should be.
    Thanks for your help.
    Holger

    Welcome to the forum.
    It is the right place to ask but it will not be the answer you want.
    Only links to HTML and Microsoft Office files are supported. Although it will not help you short term, the more people who report a bug or request a feature, the more likely it is to be actioned. Please follow this link.
    http://www.Adobe.com/cfusion/mmform/index.cfm?name=wishform&product=38
    Please take a look at the sticky topic Before You Post as often answers depend on the version of RoboHelp being used.
    See www.grainge.org for RoboHelp and Authoring tips
    @petergrainge

  • Question about display PDF content

    Hi,
    I'd like to show the content of a PDF file directly in a page region, without having to open the Acrobat reader in the same window and hide all the tabs, other regions...
    I am not sure whether this is feasible with HTMLDB, so would like to know that to avoid spending lots of time in no avail.
    Thanks in advance.

    I know it will be hard to make a report or other things to be generated to PDF version. However I only need to display the contents of PDF for now.
    As you guys suggested, I've tried to use frameset. After I created a frame page with Frontpage, I copied the HTML into a HTML type region:
    <frameset cols="356,*">
    <frame name="contents" target="main" src="new_page_5.htm">
    <frame name="main" src="new_page_6.htm">
    <noframes>
    <body>
    <p>This page uses frames, but your browser doesn't support them.</p>
    </body>
    </noframes>
    </frameset>
    However it didn't show anything at all. May I have a more elaborated explanation. Sorry I don't have much experiences with HTML.
    Thanks.

  • Showing PDF without using InteractiveForm

    Hi experts,
    I receive PDF content from a RFC in the "XSTRING" format.
    I can show this in an interactive form (by mapping the pdfSource property of my InteractiveForm with the Xstring), but then we need to install ACF on all the PCs of the customer.
    So what I would like to do is display a PDF not included in a Web Dynpro.
    I read in this forum (from Bogdan) that this could be a solution:
    byte[] pdfContent={here document is created};
    IWDCachedWebResource pdfResource=WDWebResource.getWebResource
        (pdfContent,WDWebResourceType.PDF);
    wdComponentAPI.getWindowManager().createExternalWindow(
         pdfResource.getURL(),"Report View",true).open();
    But how can I convert my Xstring format to byte[] ?
    Thanks in advance for your answers.
    Regards,
    Julien

    Hi Julien.
    Yesterday I can solved it.
    I found a solution in a post, and it works.
    I am only coded this in the wddoInit, and I use a FileDownload UI element.
    //segun nota
      /* The FileDownload UI element requires: */
      final IWDAttributeInfo fileAttrInfo = wdContext.nodeOutput().getNodeInfo()
              .getAttribute("Bin_File");   
      final IWDModifiableBinaryType pdfType =
         (IWDModifiableBinaryType)
           fileAttrInfo
            .getModifiableSimpleType();
      /* In addition the FileDownload
    UI element needs for  defined resource types
      pdfType.setFileName( "MyPdfFile.pdf" );
      pdfType.setMimeType( WDWebResourceType.PDF );          
        //@@end
    "bin_file" is the xstring parameters that return my RFC module function.
    Really I don't know the difference with your sample (I am newbbie in Java and webdynpro) but this code is the way that works in my aplication.
    Thanks a lot anyway!
    regards.
    Leandro

Maybe you are looking for

  • DVD Drive Broken -Can I install from another Mac?

    Hello All A friend has a MacMini with a broken DVD Drive. He also has a MacBook, which has a working drive. He is still using Leopard and wants to upgrade to Snow Leopard. Can he upgrade the MacBook, then upgrade the MacMini using the MacBook? If so,

  • Iphoto library not loading

    Iphoto has not loaded since about 44 unwanted photos were sent to trash from the library file in pictures. I have since read the piece on tamper. But can anyone tell me if and how I can fix this? The files are still in 'trash'. Cheers.

  • Loading SWF's in AIR for iOS

    Hi, I am working on a project in AIR for iOS.  It's great that we as flash developers are now able to compile our actionscript code for iOS. The project i'm working on is divided in different SWF-files.  There is one master SWF file that loads the ot

  • Error de descarga

    Al tratar de descargar la versión de prueba de Creative Cloud me aparece un mensaje emergente informando de un error debido a la falta de una aplicación para iniciar la descarga. Si alguien má ha experimentado este error y ha conseguido solucionarlo,

  • Instant hotspot Troubles

    I have 2 iPhone 6 and they are both at ios8.02 I also have a iPad 2 on ios 8.02 The iPad is wifi only and it was connecting to either phone through the instant hotspot Now the iPad doesn't even see the phones instant hotspot I also have a Mac book ai