Displaying Graphs in PDF

Dear Adobe Community,
Can you please advice me how I can build a graph in PDF using the raw data I have. I am basically looking for displaying the bar chart graph in PDF.
Thanks!
Vivek.

Acrobat/Reader is not an "authoring" program.
You use the annotation object in Acrobat to create a dynamic graph.
http://forum.planetpdf.com/wb/default.asp?action=9&read=54939&fid=34#150796
Since this is an Annotation in Acrobat, it will not work in LiveCycle Designer.
But one might be able use the "Line" object.

Similar Messages

  • Error from reports from ZAM(Graph or PDF) - File does not begin with '%PDF-'.

    I just noticed today that any Graph or PDF report I try to view I get the
    following error - Error from reports from ZAM - File does not begin with
    '%PDF-'. I tried to just save the file and then open it, but get the same
    error. I can open other pdf files I have downloaded from other sites ok.
    Anyone have any idea? I haven't done anything to that server that I am
    aware of in quite a while.
    Thanks
    Bill

    I took a closer look at the files it downloaded, opened them with notepad,
    haer is what it says:
    XSL Transform or subsequent processing failedThe document has no pages.
    "Bill" <[email protected]> wrote in message
    news:2bBtk.2164$[email protected]..
    >I just noticed today that any Graph or PDF report I try to view I get the
    >following error - Error from reports from ZAM - File does not begin with
    >'%PDF-'. I tried to just save the file and then open it, but get the same
    >error. I can open other pdf files I have downloaded from other sites ok.
    >Anyone have any idea? I haven't done anything to that server that I am
    >aware of in quite a while.
    >
    > Thanks
    >
    > Bill
    >

  • WEB.SHOW_DOCUMENT sometimes doesn't display the generated PDF file

    Hi all,
    I'm using the following code to generated my report from Forms:<br><br>
    V_REPORT_ID := FIND_REPORT_OBJECT(V_REPORT_NAME);
    V_REPORT_SERVER_JOB:= RUN_REPORT_OBJECT(V_REPORT_ID,P_LIST);
        V_JOB_ID := substr(V_REPORT_SERVER_JOB,length(:GLOBAL.REPORTS_SERVER)+2,length(V_REPORT_SERVER_JOB));
        V_REPORT_STATUS := REPORT_OBJECT_STATUS(V_REPORT_SERVER_JOB);
    LOOP
       IF V_REPORT_STATUS = 'FINISHED' THEN          
          V_TMP_PDF := :GLOBAL.APACHE_HTML_FOLDER ||'rpt'|| V_JOB_ID  ||'.pdf' ;
         COPY_REPORT_OBJECT_OUTPUT(V_REPORT_SERVER_JOB, V_TMP_PDF );
        WEB.SHOW_DOCUMENT(:GLOBAL.AS_HOME_URL ||  'rpt'|| V_JOB_ID  ||'.pdf' ,'_BLANK');     
        END IF;
    END LOOP; <br><br>
    Everything works fine except the WEB.SHOW_DOCUMENT part. In some clients, this command does what it required from it and opens a new browser window with the PDF report displayed on it. In some other clients, this command does nothing: now window dispalyed. When I refer to the Application Server, I see the PDF report successfully generated there. When I put the URL of the generated report manually in the browser address, I can see the report.
    <br><br>
    <b>Why the WEB.SHOW_DOCUMENT doesn't display the generated PDF report in some clients?</b>

    I agree with the previous 2 posters.
    Also firefox and ie handle it differently. Make sure you test on what your clients use.
    Sometimes acrotray.exe is completely retarded and doesn't work.

  • I am programming a DVD-Rom in DVD Studio Pro 4 and need to display and open pdf files, any suggestions?

    I am programming a DVD-Rom in DVD Studio Pro 4 and need to display and open pdf files, any suggestions?

    http://documentation.apple.com/en/dvdstudiopro/usermanual/index.html#chapter=22% 26section=9%26tasks=true

  • Not able to Display Barcode in PDF

    Hi Gurus
    I created a BIP report where in I am displaying a barcode in place of PO number. I selected 3 0f 9 barcode. I have a sample output and trying to view the preview in PDF. It is not displaying barcode in PDF format. How ever it is displaying the barcode in rtf, explorer etc. Please help me in solving this. Am I missing any setup after installing Font and BI Publisher desktop..
    Thanks
    Ahmed

    Hi Ahmed,
    Are you able to see the bar-code in pdf output in rtf layout (not thru concurrent request submission)?
    Please check the following steps and see if you have missed one of these set-ups in XML Publisher administrator:
    XML Publisher Administrator-->Administration
    Font File--->Give font file name and Browse the bar code (3 of 9 in your case)--->Apply
    Font Mapping-->Mapping Name--->Mapping Code
    Type--->FO to PDF--->Apply
    Open Tab Create Font Maping
    Font Family: Code39-Digits(This name should be exactly the font name which comes in word)
    Style: Normal
    Weight: Normal
    Target Font Type: Truetype
    Continue
    Font : font file name
    Apply
    Go to Template Tab
    Query for your template
    Open Edit Configuration
    Click on FO Processing
    In Font Mapping set :associate your file
    Please let me know if you are still unable to view the barcode.
    Rgds,
    skaundinya.

  • Hi,how can i change the default settings on my adobe readerX1 such that it will display all my pdf files according to their individual cover pages (as cover picture thumbnails)before i click them to open and read........i really enjoyed this feature as a

    hi,how can i change the default settings on my adobe readerX1 such that it will display all my pdf files according to their individual cover pages (as cover picture thumbnails)before i click them to open and read........i really enjoyed this feature as a default settings upon installation in previous editions of adobe reader .i use a windows 8 pc now.thank

    For sideloaded content the nook pulls the metadata from ePub file itself.  I would suggest looking at a program like Sigil or Calibre that will let you edit the metadata in the book to make it appear like you want.
    For the PDF vs ePub - No, that's the way PDFs work (think of them as graphics, not text), wheres ePubs are Web Pages - so  no you can't them to behave exactly alike without converting the files.

  • In R/3 display smartform as pdf in a custom container

    Hello,
    I want to display smartform as pdf in a custom contianer . I was able to find all the right code from sdn.
    but my problem is that when executed my sap gui is closed without any error.
    I am unable to understand what is going wrong.
      CALL METHOD G_HTML_CONTROL->SHOW_URL( URL = LV_URL
        IN_PLACE = 'X' ).  does not show the pdf.
    Can any one help me to find out if we need to do some setting for MIME type application/pdf. Because I tried to display a bar chart in the custom container of MIME type text/html , and this is working fine.
    Is any setting missing in our R/3 because of which the code is not getting executed.
    below code is the exact copy from a post in sdn:
    report ztest_pdf.
    DATA: LT_PDF TYPE TABLE OF TLINE,
          LS_PDF LIKE LINE OF LT_PDF,
          LV_URL TYPE CHAR255,
          PDF_FSIZE TYPE  I,
          LV_CONTENT  TYPE XSTRING,
          LT_DATA TYPE STANDARD TABLE OF X255.
    DATA : L_JOB_OUTPUT_INFO TYPE SSFCRESCL.
    DATA : LS_CONTROL_PARAM  TYPE SSFCTRLOP.
    DATA : G_HTML_CONTAINER TYPE REF TO CL_GUI_CUSTOM_CONTAINER,
           G_HTML_CONTROL   TYPE REF TO CL_GUI_HTML_VIEWER.
    *      pdf_control type ref to cl_gui_pdfviewer.
    DATA : P_VBELN TYPE  VBELN_VL.
    DATA : i_html TYPE w3htmltabtype.
    ",       g_url  TYPE w3url
    FIELD-SYMBOLS <FS_X> TYPE X.
    INITIALIZATION.
    LS_CONTROL_PARAM-GETOTF = 'X'.
    LS_CONTROL_PARAM-NO_DIALOG = 'X'.
    START-OF-SELECTION.
      CALL FUNCTION '/1BCDWB/SF00000298'
    EXPORTING
    *    ARCHIVE_INDEX              =
    *   ARCHIVE_INDEX_TAB          =
    *   ARCHIVE_PARAMETERS         =
         CONTROL_PARAMETERS         = LS_CONTROL_PARAM
    *     P_VBELN                    = P_VBELN
    *   MAIL_APPL_OBJ              =
    *   MAIL_RECIPIENT             =
    *   MAIL_SENDER                =
    *   OUTPUT_OPTIONS             =
    *   USER_SETTINGS              = 'X'
    IMPORTING
    *      DOCUMENT_OUTPUT_INFO  = L_DOCUMENT_OUTPUT_INFO
           JOB_OUTPUT_INFO       = L_JOB_OUTPUT_INFO
    *      JOB_OUTPUT_OPTIONS    = L_JOB_ OUTPUT_OPTIONS
    EXCEPTIONS
        FORMATTING_ERROR           = 1
        INTERNAL_ERROR             = 2
        SEND_ERROR                 = 3
        USER_CANCELED              = 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.
    data pdfxstring type xstring.
      CALL FUNCTION 'CONVERT_OTF'
        EXPORTING
          FORMAT                = 'PDF'
        IMPORTING
          BIN_FILESIZE          = PDF_FSIZE
          bin_file              = pdfxstring
        TABLES
          OTF                   = L_JOB_OUTPUT_INFO-OTFDATA
          LINES                 = LT_PDF
        EXCEPTIONS
          ERR_MAX_LINEWIDTH     = 1
          ERR_FORMAT            = 2
          ERR_CONV_NOT_POSSIBLE = 3
          OTHERS                = 4.
      CALL SCREEN 100.
    module STATUS_0100 output.
    *  SET PF-STATUS 'xxxxxxxx'.
    *  SET TITLEBAR 'xxx'.
      CREATE OBJECT G_HTML_CONTAINER
        EXPORTING
          CONTAINER_NAME = 'PDF'.
    CREATE OBJECT G_HTML_CONTROL
        EXPORTING
          PARENT = G_HTML_CONTAINER.
    * Convert xstring to binary table to pass to the LOAD_DATA method
      CALL FUNCTION 'SCMS_XSTRING_TO_BINARY'
        EXPORTING
          BUFFER     = pdfxstring"LV_CONTENT
        TABLES
          BINARY_TAB = LT_DATA.
    * PERFORM bar_chart .
    * Load the HTML
      CALL METHOD G_HTML_CONTROL->LOAD_DATA(
         EXPORTING
           TYPE         = 'application' "'text' " 'application'
           SUBTYPE      = 'pdf' "'html'  "'pdf'
         IMPORTING
           ASSIGNED_URL         = lv_URL
         CHANGING
           DATA_TABLE           =  LT_DATA "i_html "LT_DATA
         EXCEPTIONS
           DP_INVALID_PARAMETER = 1
           DP_ERROR_GENERAL     = 2
           CNTL_ERROR           = 3
           OTHERS               = 4 ).
    * Show it
      CALL METHOD G_HTML_CONTROL->SHOW_URL( URL = LV_URL
        IN_PLACE = 'X' ).
    Thanks,
    Jaya.
    Edited by: kishan P on Jun 9, 2011 1:40 PM

    Hello Sandra,
    Thanks for your reply, but eventhen it fails to load the pdf. Is ADS required to be installed for this?
    Can I just pass the pdf_fsize imported from  CONVERT_OTF which is of type i.
      CALL FUNCTION 'CONVERT_OTF'
        EXPORTING
          FORMAT                = 'PDF'
        IMPORTING
          BIN_FILESIZE          = PDF_FSIZE    
    bin_file              = pdfxstring
        TABLES
          OTF                   = L_JOB_OUTPUT_INFO-OTFDATA
          LINES                 = LT_PDF
        EXCEPTIONS
          ERR_MAX_LINEWIDTH     = 1
          ERR_FORMAT            = 2
          ERR_CONV_NOT_POSSIBLE = 3
          OTHERS                = 4.
      CALL METHOD G_HTML_CONTROL->LOAD_DATA(
         EXPORTING
           TYPE         = 'application' "'text' " 'application'
           SUBTYPE      = 'pdf' "'html'  "'pdf'
           size           = PDF_FSIZE
         IMPORTING
           ASSIGNED_URL         = lv_URL
         CHANGING
           DATA_TABLE           =  LT_DATA "i_html "LT_DATA
         EXCEPTIONS
           DP_INVALID_PARAMETER = 1
           DP_ERROR_GENERAL     = 2
           CNTL_ERROR           = 3
           OTHERS               = 4 ).
    Thanks,
    Jaya.

  • Display logo In PDF output ( Spool to PDF output )

    Hi Experts,
    In my requirement i am using 'REUSE_ALV_GRID' to display logo.
    In our functionality we are executing report in background and we are converting spool into PDF output. Now our requirement is to display LOGO in PDF output.
    Any pointers on this are appreciated.
    Regards,
    Bhanu.R

    Hello,
    Use the top-of-page parameter of the FM 'REUSE_ALV_GRID_DISPLAY' and use the FM REUSE_ALV_COMMENTARY_WRITE to add the logo to the I_LOGO export parameter to get the logo in the ALV output. Now convert this to spool and to pdf and you can get the logo in the pdf as well
    Vikranth

  • Display Payslip in PDF format on Screen

    Hi SAP Gurus...
    I have done the below to generate the SAP HR Reminaration statement in PDF.
      CALL FUNCTION 'BAPI_GET_PAYSLIP_PDF'
        EXPORTING
          employeenumber = p_pernr
          sequencenumber = it_rgdir-seqnr
          payslipvariant = p_forml
        IMPORTING
          return         = i_return
          payslip        = x_payslip
          pdf_fsize      = v_pdf_size.
    Now, I want to display it in PDF on the Screen.
    Please tell us how to proceed further.
    thanks in advance.
    regards,
    R R Suthar

    Dear Gurus...
    Thanks  for help.
    I have already done this,but I want to do it without using the FMs GUI_DOWNLOAD and GUI_RUN(which is obsolute).
    Instead I want to display PDF data using any other method.
    Can any body suggest how to do using class / method.
    thanks in advance.
    regards,
    R R Suthar

  • Help with inline display of a PDF

    Two problems I am having with the inline display of a PDF (not a link, not a separate window).
    First - the PDF has hyperlinks in it. If you spawn a separate window, the hyperlinks are active (clicking on the hyperlink will take you somewhere). If I use the APEX_UTIL.GET_BLOB_FILE_SRC within an object window, the PDF will display fine except when you hover over a hyperlink, you get the "hand" icon, and you can't click on the item. Is there a way to display the PDF within the same HTML region as the rest of the page but get the PDF to translate the hyperlinks into active links?? I am not sure if I should open this as a bug with Oracle or not.
    Second, I tried to duplicate the problem on apex.oracle.com.
    Everything works except when I try to display the PDF, all I get is a grey box instead of the PDF. Having done this multiple times before, it is a simple solution but I can't remember what it is...
    Any help I could get would be great.
    Thank you
    --rolf petersen
    The workspace on APEX.ORACLE.COM is:
    TESTTABFORMS
    UserID: TEST_USER
    PW: PDF_TEST
    check out application:
    TEST_PDF_LINK
    ID: 42403
    P.S. Just got back from APEXPosed 2013 - I loved the conference.

    I'm not positive but it seems the APEX_UTIL.GET_BLOB_FILE_SRC doesn't work when it references a file browse item on a page where the key is on the rowid.  I've copied the page to page 4 and changed it to use the bulletin_id. I've linked the bulletin id on the report to page 4

  • Problem in displaying smartform as pdf in portal

    Hi all,
    We  created a smartform and we are displaying as a pdf in portal.Everything is fine and pdf  is coming.But there is arabic data in the form .
    Some of the arabic data is coming perfectly.
    But some data is coming in Japanese or chinese and some data is coming like
    F,D'! 9(/'D1-EF (F 5'D- 'D3JA 叉â
    Department 'D%/'1) 'D9'E) DDEH'1/ 'D(41J).
    Please let me know what could be the problem.
    Thanks and Regards,
    Rajesh

    hi Rajesh.....
    Could you explain me how 2 display SMARTFORM as PDF in portal..... please.....
    I have the requirement as follows.....
    By pressing a button the smartform must be generated.....
    SO what must be the RFC o/p from ABAP.... I am ABAPER basically
    and what the portal guys must do.....
    pleaseeee

  • Best way to display a fillable pdf in the browser?

    I am currently using the code below( .net using C#)  to display my pdf which is in a memory stream to the browser:
                    this.Response.Buffer = false;
                    this.Response.Clear();
                    this.Response.ClearContent();
                    this.Response.ClearHeaders();
                    this.Response.ContentType = "application/pdf";
                    this.Response.BinaryWrite(byteArray);
                    this.Response.End();
    What happens is I am prompted to open it, and then the pdf is displayed in the browser, however when the user makes changes to the information and then closes the browser, all the information is lost if the user did not save it.
    If I add the following line of code in:
    this.Response.AddHeader("Content-Disposition", "attachment; filename=" + DocumentToView);
    I am then prompted to open and it opens in adobe and if I make changes and close the application, it prompts me to save my changes.  However, I still have a blank page being displayed that was processing the initial display of the pdf.
    My questions are the following:
    1. Is there a way to display in the browser and prompt the user to save changes when they close the browser?
    2. Is there a way to get the pdf to display in adobe without displaying the blank page or is there a way to close that page after the document has been loaded?
    Thanks
    Joe

    1. Is there a way to display in the browser and prompt the user to save changes when they close the browser?
    That would depend on EVERY last browser having identical settings for handling PDFs... not likely, or even probable.
    2. Is there a way to get the pdf to display in adobe without displaying the blank page or is there a way to close that page after the document has been loaded?
    Without the user saving it... I don't think so.
    From a web design standpoint, forcing content or settings on an end viewer is a shoddy practice. If someone WANTS to save the PDF, they will in most cases. Not being able to close the window and/or leave the page containing the PDF without saving it first will ensure more "one time" visitors to the page in question than you hope for. Too many people will misinterpret that as an attempt at loading malware. Correct or not, that will be their perception.

  • Using Windows 7, now Reader XI and now SOME pdf files won't display. Try: 'PDF of Reader XI Help'!!!

    After installling Reader XI SOME pdf files will not display. Using Windows 7 and all worked fine until installation of XI. Esample: when I try to display YOUR file 'PDF of Reader XI Help' all I get is a blank screen with an X in the upper right corner. Works just fine with Windows XP and Reader 8.5.1. Any ideas ????? Thanks.

    http://helpx.adobe.com/acrobat/kb/cant-view-pdf-web.html

  • Is it possible to display a native pdf document in AIR?

    I'm not that familiar with AIR but i was wondering if it's possible to display a native pdf document in AIR.  If so are any add-on's required or does AIR have that capability built in.  Essentially I would be trying to create a pdf viewer in that allows users to markup documents and save them to the server for others to view.  I'm just in the discovery phase of this project, so any guidance would be great.
    Thanks!

    You might want to go through http://livedocs.adobe.com/flex/3/langref/flash/html/HTMLLoader.html
    Create a file  url for the pdf you would like to load & open it up in HTMLLoader component.

  • How to display the PPT, PDF, XL, DOC files with in the Windows store app?

    Hi,
    I would like to display the PPT, PDF, XL, DOC files with in the Windows store app? is there any controls provided by Microsoft to view these files with in the app?
    Or
    Any workaround to achieve the desired functionality?
    Kindly provide your inputs if any one has.
    Regards
    Prasad

    Hi Prasad,
    As I know currently there is no in-build functionality to display the PPT, XLS or DOC file directly on the Windows Store App, but you can always open these files by
    Launcher class
    However a good news is we can display PDF on Windows Store App by
    Windows.Data.Pdf class, see this for more information:
    https://code.msdn.microsoft.com/windowsapps/PDF-viewer-showcase-sample-39ced1e8/
    --James
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

Maybe you are looking for

  • REP-1401 'beforereport' Fatal PL/SQL error occurred. ORA 00000 normal.

    Hi, I am running the report Journals - General (132 char)- file name GLRGNJ.rdf from Oracle Report Builder 6.0.8.11.3. I have commented all the (srw.user_exit) in the Before Report trigger but i still get the message: REP-1401 'beforereport' Fatal PL

  • Dynamic comboBox in a dataGrid?

    i have a dataGrid that starts out blank. When a button is clicked, it populates based on the contents of a few components. The 3rd column needs a comboBox. I need the following behaviors: 1-when the button is clicked, this populates with the text val

  • JTable custom renderer selection color

    I have included JSpinners in the last column of my JTable. However when I highlight rows all cells with a JSpinner do not have a blue background and it looks rather odd. I would have thought the following code snippet would sort it out but it hasnt.

  • How to display the name of the column in the BEx report

    Hi SDN, When I put the display properties of the char Infoobject as "Key and Text" in the output the 'Key' and the 'Name' are displayed in two different columns, and there is no Heading for the column that shows 'Name' but my requirment is to have to

  • Leopard 10.5.1 may cause iPhoto to self-start and caused 5 re-starts since

    Well - I installed Leopard update (10.5.1) this morning and since then I have had to re-start my computer 5 times - or perhaps 6 - I'm losing count. On the first three occasions, iPhoto started up on its own and was not able to load any photos, so I