Created a pdf file showing a graph generated with CL_GUI_CHART_ENGINE

Hi Experts!
Please, anyone has already created a pdf file showing a graph generated with CL_GUI_CHART_ENGINE??
Could anyone help me with this requirement?
Thanks in advance,
Best regards

Hi,
I searched and found another solution, because with the code from the link above I got everytime a short dump, maybe I did something wrong.
The solution works with Adobe Form
1. I used the class cl_igs_chart_engine to create a chart with my data and customizing to get the binary data of the image.
2. Convert the binary tab to xstring.
3. You can use this xstring on the Adobe Form to display the image.
Maybe the following tips are useful.
*How to get the data of chart you can see in the class
CL_TIME_CHART_SIMPLE (use cl_gui_chart_engine for the chart but  class cl_igs_chart_engine for saving the image)
*How to bind the image to the importing parameter (xstring)
/people/thomas.jung3/blog/2005/07/13/lessons-learned-from-adobe-forms-development
Regards

Similar Messages

  • Using reports to "just" create a pdf file

    Hi All,
    I'm using oracle aplication server 10g.
    I have a situation where i must send several emails into my clients. I want to use the reports server to create several pdf files attached into a "pretty" mail message.
    In the end the user will get a full report in a "pretty" html message with several pdf files.
    I have already done a very flexibal pl/sql procedure that can send emails into any mail server and using any amount of attach files.
    I have already done the reports and i can call them find from the find from oracle forms creating a pdf file.
    My problem is that i can't stop the oracle from calling the browser and showing the report on the user screen. I simple want to generate the reports... create a html email message attach the reports (pdf) and send them into the user
    Using the build in email support in oracle reports is out of the question because it's a bit limited.
    Any help would be great.

    Hi,
    Thanks a lot for your reply.
    But i do not want to use reports to send the email, i just want him to generate a pdf file and NOT OPENING the pdf file on the user browser, having that i will use my own pl/sql procedure to send the email with the pdf file attached.
    I need this because because reports is a bit limit in the email respect, and with a build in email procedure i can do a lot more things (mail queues, elaborate messages, mail store etc)
    PS: i'm using the rp2rro.rp2rro_run_product package to run the reports
    Miguel Angelo
    Message was edited by:
    [email protected]

  • I am using Adobe Acrobat 9 Standard version in Windows 8.1 and when I try to create a .pdf file, I receive the following error message "Acrobat could not open "file name.log" because it is either not a supported file type or because the file has been dama

    I am using Adobe Acrobat 9 Standard version in Windows 8.1 and when I try to create a .pdf file, I receive the following error message "Acrobat could not open "file name.log" because it is either not a supported file type or because the file has been damaged.  To create a PDF document, go to the source application then print the document to .pdf"  I am going to the source application and printing the document to .pdf yet it's saving the file as a .log file.  After reinstalling the software, I initially didn't encounter this problem but on my second and third attempts to convert files to .pdf format, this error message reappeared.  How do I resolve this problem?

    I have a similar problem which i did not have before...and it exists only in some powerpoint files which i want to print as a pdf file...and i get the same message as above.
    the log says the bellow details...what's the problem and how can i resolve it? thanks.
    %%[ ProductName: Distiller ]%%
    %%[Page: 1]%%
    %%[Page: 2]%%
    Cambria not found, using Courier.
    %%[ Error: invalidfont; OffendingCommand: show ]%%
    Stack:
      %%[ Flushing: rest of job (to end-of-file) will be ignored ]%%

  • Just converted a PDF document to Word, none of the graphics from the PDF file show up in the Word document?

    Just converted a PDF document to Word, none of the graphics from the PDF file show up in the Word document?
    What do I need to do to bring the graphics and exhibits from the PDF file to the Word file?

    Hi jackp52432917,
    How was that PDF file created? Please see  Will Adobe ExportPDF convert both text and form... | Adobe Community
    It could be that the PDF file you're converting was created using a third-party application, and it doesn't contain all the information necessary to ensure a clean conversion. Have you had similar troubles converting other PDF files?
    Best,
    Sara

  • How to create the PDF file in WebDynpro?

    Hi.
           How to create PDF file in Webdynpro?
    I have one WD screen In there i have one File Download action. Once i click that it will open one PDF file which consisting of all details.
    Pls reply me.
    with regards,
    Gobintah.R

    Hi
    Check these links
    Re: Opening a PDF File from WebDynpro
    Re: Generating PDF file using FOP API in Web Dynpro
    http://help.sap.com/saphelp_nw04/helpdata/en/1a/ff773f12f14a18e10000000a114084/frameset.htm
    Thanks
    Edited by: Anup Bharti on Oct 16, 2008 11:51 AM

  • How to Create a PDF file from database package/procedure in 10g?

    Hi,
    Is there a way to create a pdf file in 10g Application Server using PL/SQL package/procedure in 10g database?
    Thanks in advance.
    Regards
    Vishnu Nekkanti

    http://technology.amis.nl/2010/10/20/as_pdf-generating-a-pdf-document-with-some-plsql/
    http://technology.amis.nl/2012/04/11/generating-a-pdf-document-with-some-plsql-as_pdf_mini-as_pdf3/

  • 2 rdf , 2rtf could create 1 pdf file ?

    I was wondering if it is possible to create ONE PDF file from more than 2 rdf.
    here , my thought is... there are 2 rdf that creates each PDF files.
    it would be very useful if there is a techniq that merge those PDF created files into One PDF.

    Hi,
    We had a similar scenario and in this case we had the respective output pdfs generated individually and merge them with PDF DOC Utils in XML publisher.
    A sample java code is:
    * Method used to merge the pdf outputs of all the jobs to generate single pdf output
         * @param mfile          String          final output file name
         private void mergeOutput(String mfile)throws Exception{
         try{
              m_log.writeln("Merge following PDF files", LogFile.EXCEPTION);
              // Initialize inputStreams
              FileInputStream[] inputStreams = new FileInputStream[m_opfiles.size()];
              for(int i=0; i<m_opfiles.size(); i++){
                   m_log.writeln((String)m_opfiles.get(i), LogFile.EXCEPTION);
                   inputStreams[i] = new FileInputStream((String)m_opfiles.get(i));
         // Initialize outputStream
              FileOutputStream outputStream = new FileOutputStream(mfile);
    m_log.writeln("Instantiate PDFDocMerger", LogFile.EXCEPTION);
              // Initialize PDFDocMerger
              PDFDocMerger docMerger = new PDFDocMerger(inputStreams, outputStream);
              docMerger.setPageNumberCoordinates(400, 20);
              docMerger.setPageNumberFontInfo("Arial", 10);
              docMerger.setPageNumberValue(1,1);
              m_log.writeln("Merge Documents ", LogFile.EXCEPTION);
              // Merge PDF Documents and generates new PDF Document
              docMerger.process();
              docMerger = null;
         catch(Exception ex){
              m_log.writeln("Document Merge Failed. " + ex.getMessage(), LogFile.STATEMENT);
              throw new Exception("Document Merge Failed. " + ex.getMessage());
    These classes are part of the library "oracle.apps.xdo.common.pdf.util" which you may consider reviewing.

  • How can I create multiple PDF files from multiple InDesign files?

    I have 144 InDesign files that I need to create a PDF file for each. I do not want to open each InDesign file to create the PDF's. Acrobat Batch create won't open the InDesign files. Is there another way?

    Only InDesign can do this. You may want to look at InDesign automation.

  • Is there any way to create 3D PDF file without having the model tree ?

    Is there any way to create 3D PDF file without having the model tree ?
    3D communication is good but sometime we don't want the receiver to be able to study every components in model.
    or any way to make the receiver cannot use model tree and measurement tool ????
    Thank you very much

    You can remove the assembly tree by doing a roundtrip in 3D Toolkit, here's how:
    - start Acrobat 3D
    - drag & drop a CAD file
    - click on 3D Annot to activate
    - right-click on 3D
    - select 'Edit in 3D Toolkit'
    - 3D Toolkit launches
    - click in 'Scene Tree' panel
    - right-click on top assembly name
    - select 'Tools->Collapse Hierarchy'
    - select 'File->Save'
    - select 'File->Exit'

  • Can we control the PDF file name that is generated by BI Publisher based on the content in the input PDF

    can we control the PDF file name that is generated by BI Publisher based on the content in the input PDF?

    No, there isn't. The way you're using the file is not recommended. You
    should use a review tracker to avoid getting in the way of one another.

  • How to create a pdf file from multiple images ?

    Dear All,
    I want to create a SINGLE page pdf file from two or more page size images that are combined to make a single page pdf. Again, this question is on pdfs that are made out of several, atleast  two color images and a black-and-white mask for one of them.
    I have such pdf files from an unknown source (the producer is edited out) whereby there are three tiff images, obtained using the well known pdfimages extractor.
    When I want to make a pdf out of tiff or png or other image formats, I right click and tell Adobe Acrobat to make a pdf.
    However, I dont know how I can give a command to select say,  three tif images and specify which is the mask for which and then join  them in a way that I get the pdf from the composite of the two color images and a mask for one of them.
    Please help me out.
    I am a little familiar with the pdf structure skeleton and when necessary, fixed xref tables in one of my favorite editors. A few years ago, I also wrote a bunch of javascripts to make some annotations and needed some automation and used some itext type libraries. However, I need your help in this problem as I am now rusty and forgot some of what I studied to solve my earlier problems. This is a new problem for me. Gentle hints from you would be very nice to help me in this problem. Please specify if necessary what manual and pages to read. in the pdfspec.
    Best Regards
    Disabled Veteran [physically handicapped]

    Hello Again.
    On Fri, May 11, 2012 at 12:20 PM, lrosenth <[email protected]> wrote:
    >
    > Re: How to create a pdf file from multiple images ?
    >
    > created by lrosenth in PDF Language and Specifications - View the full
    > discussion
    > ________________________________
    >
    > No clue who Irving is…
    >
    I was hoping to have your first name so its easy for me to address you.
    > I have no clue what OS platform, programming language, etc. you use so
    > can’t really narrow things down.
    I would gladly mention that I am working on windows platform, preferably XP.
    I can also work on linux for free products that come with it.
    >  Also, as this is an Adobe forum, we only
    > recommend Adobe products – so there may be other options that even my list
    > wouldn’t include.
    But adding other products, for the help of an adobe products user,
    even if it outside adobe, shall add greater prestige to your company
    and give impression of user-centeredness.
    > If you read ISO 32000-1:2008 (aka the PDF standard), you will find the
    > information about Images and Image Masks well described.  I didn’t think I
    > needed to repeat any of that information.
    Well, just add the few pdf stanzas since you are proficient on it and
    I am presently a little rusty as I mentioned. Just asking a little
    extra yard, not even to go an extra mile.
    > And, if you read that same document, you will see that there is NO SUCH
    > THING as a “text only PDF”.   All PDF documents are structured binary files.
    Well, ascii format or uncompressed format that is human readable. I
    know its a binary file, but human readable ascii version of it.
    I hope you can give me some stanza and various other approaches
    possible so I can select or combine things for myself. I see only a
    miniscule number of posts claiming to have written masks in this forum
    and then with no details.
    Regards
    Roger
    Message was edited by: dying veteran
    because the adobe posting system went crazy and truncated all except the first line ... dunno why

  • Using Acrobat X and creating a PDF File from EXCEL 2010, I notice that the Pagination restarts at 1 for each Worksheet included in the PDF.

    I use Acrobat X Standard and created a PDF file from two or more worksheets using EXCEL 2010.
    The resulting PDF file restarts the PAGE # (In header/footer settings of Excel) at 1 for each worksheet.
    However, a colleague of mine who has Acrobat X Pro version, using EXCEL 2010 and same exact file does the same task, he gets a file that starts at page 1 and second worksheet continues the page # from the last page of the First worksheet.
    We both are using the ACROBAT menu (not the print to Adobe printer) to create the file so that we can get Bookmarks included in the resulting file for each worksheet.
    We cannot figure out any option in Acrobat's preferences that controls the pagination on either of these versions of Acrobat.
    So is this just a feature that works one way in Standard version and another way in the Pro version, and the user has no control over it?

    This is so sad. I read your comments and I said, "Huh?" Haha!
    I tried the indexed color option and it did make the final file smaller. Around 600KB. But there's probably another way to make it even smaller like the gazillion-paged pdf file that I mentioned that was only about 300KB.
    And by saying a layout program, does that mean like Adobe InDesign? Does that mean that I should just make my graphics in Photoshop and then import using another program and finish the file there?
    What other layout programs can I use?
    Thank you so much!

  • How to create a pdf file can not save as

    i created pdf file, an make security option with no access print and save, when we open that file in reader, print is blocked, but save as button still appear and user could be save in other place or namefile, how to make save as not permitted

    PDF like the code for web pages needs to be downloaded to your local system as a temp file so it can be processed for display.
    Not being able to copy a file negates the backup capabilities of a network.

  • How to create a pdf-file dynamically

    Hi all,
    does anybody have a tutorial or self-made code, in which is illustrated, how to dynamically create a pdf-file.
    I am getting some information like this: "Line one has a textfield and an input-field", etc. These informations have to be translated as a pdf-file by myself.
    I read, that a pdf-file needs a xdp and the data as an inputstream. Is there anybody who can explain this issue?
    I think, that there are a lot of people, who are interested in this problem.
    Thank you for your help.
    Kind regards, Patrick.

    check this link...
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/lw/uuid/10b33628-0207-2a10-908f-de9c02ca6913
    hope it helps.
    regards,
    -amol gupta

  • How to create a pdf file with CS5

    Hello, I'm new to PhotoShop CS5 and haven't figured out yet (despite two hours of trying) how to create a pdf file with pictures and texts.  Can someone please help me with this ?  The "help" button in CS5 doesn't seem to cover this question.  Nor do the FAQs.
    Thank you very much.

    Save As... Photoshop PDF.

Maybe you are looking for

  • Skype phone number- how to make it work?

    i am sitting in australias and got my mum in NZ to phone my NZ skype number with  09 xxx xxx4 and it just rang off to nuthing, i then rang from my mobile 0064 9 xxx xxx4 and it also rang off to no where can anyone tell my why it doesnt work, or why a

  • Pavilion Sleekbook x64 has grainy and distorted images, color is mostly red, anyway to fix this

    Intel(R) HD Graphics 400 HP Pavilion Sleekbook 14: images are grainy, distorted and mostly red.  Can anyone help.

  • Philips VOIP phone install won't run on Win 7

    Hi - I've got a Philips VOIP 0801B/37 phone. It has an install disk. When I run the install disk it says it only runs on Windows 2000 and Windows XP. What I want is the microphone. What does it take to get a bigger selection of microphones in the Sky

  • Define a matchcode for notification sort field

    Gurus, Sap help on field ILOA-EQFNR says a matchcode can defined. Anyone knows if the value is retrieved from the funnctional location sort field or if a specific set of values with matchcode can be defined for selection during notification creation

  • New Area Needed For Email Migration Questions and ...

    Please may we have a new Forum area that is dedicated to the email migration. There are bound to be matters arising - I can think of one straight off - what happens to all those Disposable email addresses we set up in BTYahoo? Will they survive? Will