How to call Graphic builder's Graph in 9i Reports

Hi everybody,
I have a graph in graphic builder.I want to print this graph on report.
I need your help please.
Asif

Hello,
In http://www.oracle.com/technology/products/reports/htdocs/faq/graph_faq_with_style.html#q102
Can I still run my existing Oracle Reports Developer 6i reports containing Oracle Graphics charts in Oracle Reports?
As noted in the Oracle Reports Statement of Direction, Oracle Graphics is no longer shipped with Oracle Reports. However, as part of the migration path, you can still run Oracle Graphics charts in Oracle Reports if you install the Oracle Graphics 6i engine in a separate Oracle Home. You should only maintain Oracle Graphics 6i as a temporary measure while you redesign your charts using the new Graph Wizard. For further details on how to configure Oracle to use Oracle Graphics 6i, please see the Graphics Migration section in the Oracle9i Application Server Migration from Oracle9iAS Release 1 (1.0.2.2.x) to Release 2 (9.0.2) manual.
Regards

Similar Messages

  • How can I add a 3D-GRAPH in a Report in Labview 5.1?

    I want to Create a form with text, Data, Header text and a 3D-Graph. I tryed to create a Report but I dont know how to inculde my 3D-Graph.
    Please Help.
    Thanks,
    PH!L

    Hi,
    The idea is to follow these steps:
    1. Right click on the 3D graph reference and select Create->Invoke Node from pop up menu.
    2. The invoke node will appear. Now right click on it and select Methods->Get Image.
    3. Now you have to save this image to your harddrive. To do it you have to use for example "Functions->Picture&Sound->Graphics Format->Write JPEG File.vi". You have to connect all the outputs of Invoke node.GetImage with corresponding inputs of this VI and also you have to specify the path of the file the image to be saved.
    4. Now you have a JPG file on you harddrive and you can easily add it to your report with "Functions->Report Generation->Append Image to Report.vi"
    I use LV6.0 and tried to create an example for you and save it to LV
    5.0. But without success.
    So here is an example in LV6.
    Good luck.
    Oleg Chutko.
    Attachments:
    Report.vi ‏42 KB

  • How to call a FM from batch in a report.

    Hi,
    In a Z_FM, I am using CO_DR_PRINT_ORDER_EXTERNAL to print production orders and displaying the success msg  but it is giving performance issues.
    So we are planning to run this FM (CO_DR_PRINT_ORDER_EXTERNAL) in a batch job and immediately return the success msg.
    Please suggest how could I achieve this functionality in Z_FM.
    Thanks.

    Hello,
    I would suggest to create a custom remote enabled function module with required parameter which is with CO_DR_PRINT_ORDER_EXTERNAL (a), call (a) within that custom FM
    Then you can call remote enabled custom FM as Call Function...starting in New Task..
    Thanks

  • How to call a PL/SQL Procedure from a Report Column Hyperlink

    Hallo!
    Normally a link on a column value in a report leads you to a page in your application or to another URL.
    And you can send the value of this cell to the calling page.
    I want, that oracle executes a procedure with the values as in-Parameters if I click on this hyperlink.
    Must I call a dummy page and define this procedure in the header of this page or exit there other ways?
    Can you give ma an example?
    Thanks a lot!
    Gerhard

    Paul - When a column link is used to invoke a On Demand Process in that way, wouldn't that result in a blank page (unless of course the ODP emits a well-formed HTML document)? You could set the link target to a no-op like *#* and use a onclick handler in the Link Attributes to call a Javascript that uses the htmldb_get object to call the ODP. In fact, I don't think I have ever seen a ODP used in any other context.

  • Bugs in Report  builder/Graphics Builder

    Whenever i call Graphics Builder from report builder to make a graph it gives an error and do not make the graph. Would you tell me what is the problem ?
    Thank you.
    anis

    hello,
    without further information it is hard to tell, what the problem is. however, i would suggest you contact oracle support services.
    regards,
    the oracle reports team --pw                                                                                                                                                                                                                                                                                                                                                                                   

  • Calling graph from Reports created in graphics builder?

    Can you call a graph from Reports 6.0 that was created in Graphics Builder. I know you can call a graph from Forms. I tried creating my graph right in Reports with the wizard but for some reason it does not give me the fields I want to use in the available fields column, so I created the graph in Graphics Builder. Do you use a trigger of some sort. Any examples would be appreciated if this is possible. Thanks

    Justin Beno:
    Yes, you can call a graph from inside a report. All you need to do is select the button with the graph on it (not the icon with the wand, which indicates chart wizard). Then draw graph in the area of the report where you want the graph to display. After completing this, right click on graph, select Property Palette, Chart - Chart Filename (this is where you will type in the directory and filename of your graph that you created in Oracle Graphics).
    ~Vannette

  • How to create a Dynamic UI that can work as a Graphic builder

    Hi Guys
    I have a requirement here
    There should be a Graphic Builder ...........like the way we see our Flex Builder
    But this should be a web application with the following functionality
    Lot of widgets on your left panel like say meter , cricle, chart, line graph etc. All this would be a different flex widgets(say compiled swf file loaded separately in the main application
    On the right Panel there would be dash board where they can drag and drop this above widgets and create a separate page like dragging a chart. user would be given option to configure the points for chart ....................and the data for the live chart would be feed from the backend
    Now I am little confused to how to go about ?
    Creation of separate widgets is ok ?
    Creation of applcation with this widgets is ok
    Giving an option to drag and drop , configure is ok ?
    But the main thing is that If we have to save the pages created by different user ? What is the best way to do that ? Do we use xml to save the customized widget pages including the UI layout information like widget Graph at coordinate x= 120 and y=56 etc etc then parse these xml to get the Layout back and putting the widget back to their location as the way the user created those pages
    Any suggestion ..................
    Regards
    Biswamit

    assign your library images each a class.  you can then use the "new" constructor to create instances dynamically.

  • How to call a procedure designed in Report Builder?

    Hi everyone,
    The Problem?
    I set up a procedure and would like to call this procedure in reports builder 6.0. I need to know how to call a procedure in reports builder.
    Thanks
    Tom Gilmore

    You can call
    procedures from a formula column's PL/SQL code.
    <BLOCKQUOTE><font size="1" face="Verdana, Arial">quote:</font><HR>Originally posted by Thomas Gilmore ([email protected]):
    Hi everyone,
    The Problem?
    I set up a procedure and would like to call this procedure in reports builder 6.0. I need to know how to call a procedure in reports builder.
    Thanks
    Tom Gilmore<HR></BLOCKQUOTE>
    null

  • How to call - draw(Graphics g)

    This is a little method in my Applet:
    public void draw(Graphics g)
    g.drawImage(image, 0, 0, this);
    What I want is to call this method when I need it, not automatically like paint(Graphics g), but I couldn't figure out how to call, because Graphics is abstract class, can not be instantiated .
    Pleeeeeeeeeeeeease help me out , many thanks !!!

    This is a little method in my Applet:
    public void draw(Graphics g)
    g.drawImage(image, 0, 0, this);
    What I want is to call this method when I need it,Why?
    not automatically like paint(Graphics g), but I
    couldn't figure out how to call, because Graphics is
    abstract class, can not be instantiated .Right. You can't, nor should you ever need to do what you want to do. The Graphics object is passed to you in the paint() method.
    See:
    http://java.sun.com/products/jfc/tsc/articles/painting/index.html

  • Oracle Graphics Builder in Oracle Developer Suite 10g

    Dear All,
    I would like to immigrate from Oracle Developer 6.0 to Oracle Developer Suite 10g for our company application. I had a design tool called as Graphics Builder in Developer 6.0 but What I see in Oracle Developer Suite 10g that this tool doesn't exist any more. I still need to use all Graphics of the company application.
    Is Graphics Builder out of the Developer package of Oracle any more ? If yes, then how can I make the design of Graphics in Developer Suite ? Is it a seperate tool any more I should have next to Developer Suite 10g ?
    I would be glad if experinced colleaques guide me on this ?
    Many Thanks for your valuable helps,
    Regards,
    Meriç

    Is Graphics Builder out of the Developer package of Oracle any more ?Yes, Oracle has discontinued the "Graphics Builder product. In order to include graphical charts in your 10g Form you will need to use the BI Graph Bean that is included in the <a href="http://www.oracle.com/technetwork/developer-tools/forms/downloads/index.html">Oracle Forms 11g Downloads</a> - Oracle Forms 11g Demo Pack. Download this .zip file and look at the *demos.html* document for instructions on how to use this Java Bean.
    Hope this helps,
    Craig B-)
    +If someone's response is helpful or correct, please mark it accordingly.+

  • How do i get a xy graph to plot more points?

    I'm using the Build xy graph express in Labview 7.0 and I was just wondering how one could increase the amount of points plotted on the graph. Right now, the graph will just plot up to 100 points and then go crazy and go back to 0. I would just like to know if there's any way to increase the amount of points that could be plotted on the graph.

    An xy graph will plot exactly the number of points that are in the x and y array. That's assuming that you have the x scale set to autoscale. And, by default, each time the function is called, the graph will reset. You can select properties and change this. You don't mention where you're getting the data. Stick a probe on the input to the express VI and check the size. You can also provide some details on what you're doing or post your VI for someone to look at.

  • How to call java program by HTML page

    Hi guys,
    I'm new java programer and want to build an HTML page to access to ORACLE database on NT server by JDBC, Can anyone give me a sample?
    I already know how to access database by JDBC, but I don't know how to call java program by HTML page.
    If you have small sample,pls send to me. [email protected], thanks in advance
    Jian

    This code goes with the tutorial from this web page
    http://java.sun.com/docs/books/tutorial/jdbc/basics/applet.html
    good luck.
    * This is a demonstration JDBC applet.
    * It displays some simple standard output from the Coffee database.
    import java.applet.Applet;
    import java.awt.Graphics;
    import java.util.Vector;
    import java.sql.*;
    public class OutputApplet extends Applet implements Runnable {
    private Thread worker;
    private Vector queryResults;
    private String message = "Initializing";
    public synchronized void start() {
         // Every time "start" is called we create a worker thread to
         // re-evaluate the database query.
         if (worker == null) {     
         message = "Connecting to database";
    worker = new Thread(this);
         worker.start();
    * The "run" method is called from the worker thread. Notice that
    * because this method is doing potentially slow databases accesses
    * we avoid making it a synchronized method.
    public void run() {
         String url = "jdbc:mySubprotocol:myDataSource";
         String query = "select COF_NAME, PRICE from COFFEES";
         try {
         Class.forName("myDriver.ClassName");
         } catch(Exception ex) {
         setError("Can't find Database driver class: " + ex);
         return;
         try {
         Vector results = new Vector();
         Connection con = DriverManager.getConnection(url,
                                  "myLogin", "myPassword");
         Statement stmt = con.createStatement();
         ResultSet rs = stmt.executeQuery(query);
         while (rs.next()) {
              String s = rs.getString("COF_NAME");
              float f = rs.getFloat("PRICE");
              String text = s + " " + f;
              results.addElement(text);
         stmt.close();
         con.close();
         setResults(results);
         } catch(SQLException ex) {
         setError("SQLException: " + ex);
    * The "paint" method is called by AWT when it wants us to
    * display our current state on the screen.
    public synchronized void paint(Graphics g) {
         // If there are no results available, display the current message.
         if (queryResults == null) {
         g.drawString(message, 5, 50);
         return;
         // Display the results.
         g.drawString("Prices of coffee per pound: ", 5, 10);
         int y = 30;
         java.util.Enumeration enum = queryResults.elements();
         while (enum.hasMoreElements()) {
         String text = (String)enum.nextElement();
         g.drawString(text, 5, y);
         y = y + 15;
    * This private method is used to record an error message for
    * later display.
    private synchronized void setError(String mess) {
         queryResults = null;     
         message = mess;     
         worker = null;
         // And ask AWT to repaint this applet.
         repaint();
    * This private method is used to record the results of a query, for
    * later display.
    private synchronized void setResults(Vector results) {
         queryResults = results;
         worker = null;
         // And ask AWT to repaint this applet.
         repaint();

  • Any Alternate to use  ORACLE GRAPHIC BUILDER   through Reports

    Hello ,
    After long research some option of creating complex graphs does not serve my problem like BI GRAPHS . I want to create graph in such a way that for example I have one view in which trainno, station no, scheduled time and departure time are stored. I want to display a line graph for same train schedul and depart wise. Now I try to create line graph in oracle 10g, there only one single line is displayed for two groups scheduled time and departure time and that also not sorting properly.
    In previous of oracle , Graphic builder had good option of creating field templates like line and attaching to line chart. So it there are two groups (Sched and departure time) , than line with different colour use to display separately for both. Now I don't find any way in oracle 10g to plot such type of Graph.
    If anybody has option or way than please give suggestion.
    Regards,
    Prashant

    I am not an expert on chart builder, so I don't know how you would access the model and get at the image files.
    However, if you have a URL that points to an image generated by the chart builder, you can use the <image> element to display it.
    It sounds like to produce these image files, you need to write some application logic. The correct place to put this application logic is probably in a subclass of a struts DataAction.

  • Graphic builder ( to run Drilldown granphs on a web )

    How can i run my existing drilldown graphs on a web.
    I am having IIS as application server.
    I don't want to call my graphs from reports as reports.
    If it is possible to call graphs with the help of graphics server then I want detailed information about how to configure it and how to set urls to run graphs on a web through graphics server including information about required virtual directories.
    Thanks in advance,
    Debashish Ghosh.

    We have already explained it: You cannot configure a web site to run arbitrary code on a computer that connects to your web server. That would be a violation of security. Imagine if this were possible: A web site that could run any program on your computer?
    What if the program is malicious? (In fact, you actually are wanting to do something some would consider malicious: Deleting files!) The implications should be obvious.
    The answer is that your project is doomed to failure and will not work the way you want. You will need to stop trying to do this and approach your problem some other way.
    -- Bill Stewart [Bill_Stewart]

  • How to call a rdf file from Form

    Hi,
    I am begginer in Oracle Reports Builder, and I would like to know how to call a .rdf (report) file from a Form, passing parameters.
    Thanks in advance.
    Sandro

    Hello,
    http://www.oracle.com/technology/products/forms/techlisting10g.html
    Integrating Oracle Forms 10g and Oracle Reports 10g 2-
    Oracle Forms Services - Using Run_Report_Object to call Reports with a Parameter Form
    Regards

Maybe you are looking for