Any body who can solve it

1).I want to call oracle graphics app. from oracle forms6.
2).Same as above with parameters.
Thanx in advance!

Hi
Create a chart control in u r form. In the When new form instance or when new item instance
1) Create the parameter list at runtime (param_id)
2) populate the graph using
Run_product(Graphics,'file name with path',asynchornous,batch,filesystem,param_id,:block.chart_item_name)
Hope this will help u.
Bye
Mrs.Srikanthan

Similar Messages

  • Any body who can solve this

    Let me detail my schema i.e I have four tables
    1. ic_store: have storeCode,Description columns.
    2. ic_subStore: substoreCode,Description.
    3. ic_item: itemCode,storeCode(F.K),substoreCode(F.K),Description and others.
    4. ic_itemBal: itemCode,and Balances columns.
    Now I want to give my report the look as,
    Store\SubStore Item Description
    S0001 Main Gold Store
    SB0001 Sub Gold Store.
    ITM00001 Pure Gold 24 Kt.
    and so on.
    After Description Column another column for
    item balances.
    My Query:
    First Query :taking data from ic_store i.e storeCode and description.
    Second Query :taking data from ic_subStore'columns.
    Third Query :taking data from ic_item for item and its description and also taking data from ic_itemBal for balances.
    Problem : is that I have two parameters asking for--- from item to item
    but when I choose these parameters also store those have no items still defined appears and just take spaces.I want to remove those store which have no items defined still.
    Please let me know if I have conveyed my problem properly.
    Thanx in advance.
    null

    See if this works :
    Select t3.store_code, t1.description, t3.substoreCode, t2.Description,t3.itemcode, t3.description,t4.balances
    From ic_store t1, ic_substore t2, ic_item t3,
    ic_itemBal t4
    Where t3.store_code = t1.store_code
    And t3.substoreCode = t2.substorecode
    And t3_itemcode is not null
    And t3_itemcode between(:param1,:param2);
    I think this should work.

  • Any body please can solve my problem  iam getting the exception

    hi
    Any body can give me the solution to how to solve the problem. Actually iam working on swing and EJB when iam trying to import 100html pages and trying to save that part its giving this below error.
    Exception occurred during event dispatching:
    java.lang.OutOfMemoryError
    <<no stack trace available>>
    Please ill be waiting for the reply.
    regards,
    surya

    Hi,
    Run your application using ...
    java -Xmx300m MyApplication
    300m is for 300 meg of virtual memory.
    JRG

  • Any body please can solve my problem that iam facing with JTable

    Dear sir,
    Iam doing an educational product using Swing as front end in that
    iam using JTables. And back end iam using sqlserver. With jtable iam
    facing very serious problem the problem is actually iam entering the values
    in all the columns after that iam pressing the save button its not
    saving but if i click on any of the columns and try to save its saving.
    please anybody can solve my problem.Please if a piece of code is there ill
    be very thankful to you. my mailid is [email protected]
    regards
    surya

    The problem is, the cellEditor does not know that editing has stopped and therefore has not updated the model (where the data actually resides). When you click off the cell to another cell, the first cell knows it must be done editing because you are leaving it. If you click a button (or anything other than another cell), the cell being edited has no knowledge of this. You need to call stopCellEditing() on the cell editor and your problem will be solved. To do this, put the following method into your code and call it when you click the button to clear, save or whatever you need to do.
    public void ceaseEditing() {    int row = this.getEditingRow();
      int col = this.getEditingColumn();
      if (row != -1 && col != -1)
        this.getCellEditor(row,col).stopCellEditing(); 
      }Hope this helped...

  • I can't download the apps with big size like need for spees, but in apps with normal size(less than 100KB)there is no problem,is there any body who can help me?

    I can't download the apps with big size like need for spees

    Have a little patience. 4 minutes is only a short time for someone to find your post and reply to it. Also clicking on "This Solved My Problem" marks your problem as solved so many folks that may otherwise help will pass the question by since it is "solved."
    I suggest you start a new question that gives a good title to a specific problem. Then in the body of the thread describe the problem in detail, tell us what steps you have tried so far to correct the problem, what happened, and what error messages you received.

  • Any Body who can help me

    I want to maximize the Report's window +
    Forms parameter window
    as we can maximize our forms by
    set_window_property() method.
    null

    Have a little patience. 4 minutes is only a short time for someone to find your post and reply to it. Also clicking on "This Solved My Problem" marks your problem as solved so many folks that may otherwise help will pass the question by since it is "solved."
    I suggest you start a new question that gives a good title to a specific problem. Then in the body of the thread describe the problem in detail, tell us what steps you have tried so far to correct the problem, what happened, and what error messages you received.

  • Who can solve my problem? My problem in below.

    Who can solve my problem? My problem in below.

    hi,my problem now is :
    exception
    org.apache.jasper.JasperException
         org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:372)
         org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:292)
         org.apache.jasper.servlet.JspServlet.service(JspServlet.java:236)
         javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
    root cause
    java.lang.NullPointerException
         net.sf.hibernate.examples.quickstart.HibernateUtil.currentSession(HibernateUtil.java:24)
         org.apache.jsp.testCat_jsp._jspService(testCat_jsp.java:65)
         org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:94)
         javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
         org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:324)
         org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:292)
         org.apache.jasper.servlet.JspServlet.service(JspServlet.java:236)
         javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
    package net.sf.hibernate.examples.quickstart;
    import org.apache.commons.logging.Log;
    import org.apache.commons.logging.LogFactory;
    import net.sf.hibernate.*;
    import net.sf.hibernate.cfg.*;
    public class HibernateUtil {
    private static Log log = LogFactory.getLog(HibernateUtil.class);
    private static SessionFactory sessionFactory ;
    static {
    try {
    // Create the SessionFactory
    sessionFactory = new Configuration().configure().buildSessionFactory();
    catch (Throwable ex) {
    log.error("Initial SessionFactory creation failed.", ex);
    System.out.println(ex.toString());
    public static final ThreadLocal session = new ThreadLocal();
    public static Session currentSession() throws HibernateException {
    Session s = (Session) session.get();
    // Open a new Session, if this Thread has none yet
    if (s == null) {
    s = sessionFactory.openSession();
    session.set(s);
    return s;
    public static void closeSession() throws HibernateException {
    Session s = (Session) session.get();
    session.set(null);
    if (s != null)
    s.close();
    }

  • I guess the problem come from me or I really need those contacts before he calls me for it. I'll try some method that I got from some responders on your support website. Do you have or can you recommand any software that can solve this problem?

    I guess the problem come from me but I really need those contacts before he calls me for it. I'll try some method that I got from some responders on your support website. Do you have or can you recommand any software that can solve this problem?
    One more thing. I just update my iphone that my boss gave to me but it seems to be like it giving me some trouble. My iphone was updated not too long and was successful. I try to lock into it and it telling me emergency call. I plug it to my itune and it telling me that the sim card is not valid or supported. So I inserted my sim card that I usually use to call and it still saying the same. Please help me get into it.

    And as far as paying for phone support, here are a few tips:
    If you call your carrier first and then they route you to Apple, you usually don't have to pay for phone support.
    If you are talking to Apple and they ask you to pay a support fee, ask if you can get an exception this time.  That usually works once, but they keep track of the times you've been granted such an exception.
    If you still end up paying the support fee, that fee only applies if it's not a hardware related issue.  In other words, if it can be fixed by just talking over the phone and following Apple's instructions, then the fee applies.  But if your device is deemed to have a hardware failure that caused the issue, then the fee should not apply, and you can ask for it to be waived after the fact.
    This forum is free, and almost all of the technical support articles the Apple tech advisors use are available on this website.  Literally 99% of what they can do over the phone is just walking you through the publicly available support articles.  In other words, you're paying the fee to have them do your research for you.  It's like hiring a research consultant to go look stuff up in the public library so you don't have to.  You're capable of doing it; you'd just rather pay someone to do it for you.
    It's like Starbucks.  You know how to make coffee.  Everyone knows how to make coffee.  And Starbucks coffee isn't any better than what you could make at home for far less.  But you want the convenience.  So you're really paying a convenience fee.  Milk is more expensive at 7-Eleven than it is at the grocery store... because it's a convenience store.

  • My iPhone says that my charger is not supported, but it's the charger that came with my phone. Is there any way I can solve this issue?

    My iPhone says that my charger is not supported, but it's the charger that came with my phone. Is there any way I can solve this issue?

    Try cleaning out the phone's port, of pocket fluff and such. Carefully. And check the mains adapter similarly, but less likely.

  • My cellcom line doesn't work with my iPhone here in Israel, why? Is there any way I can solve this issue?

    My cellcom line doesn't work with my iPhone here in Israel, why? Is there any way I can solve this issue?

    Please explain.
    What does "cellcom line doesn't work with my iPhone" mean?
    What are you trying?  What is happening?
    Where did you buy the iphone?
    Any info abnout your issue at all?

  • Who can solve the error code 403 on hp5522 ? help please

    who can solve the error code 403  on hp5522 ?   help please

    Hello fredovolley,
    Welcome to the HP Support Forums!
    I see that you are experiencing an error 403 with the Photosmart 5520 series. I would like to offer the steps I have given before, check them out here: Re: Trouble scanning using Photosmart 6520
    Even though it states it is for a 6520, the steps are all the same. I hope this help, cheers!
    JERENDS
    I work on behalf of HP
    Please click “Accept as Solution” if you feel my post solved your issue, it will help others find the solution.
    Click the “Kudos Thumbs Up" to the left of the reply button to say “Thanks” for helping!

  • I have a CS3 Creativ Suite. - I have uninstalled it fram XP the corret way. Now i have installed Windows 7 and try to reinstall the creative suite. It accept the first CD an the serial number, but when i get to the second CD it stop. Any one who can help?

    I have a CS3 Creativ Suite. - I have uninstalled it fram XP the corret way. Now i have installed Windows 7 and try to reinstall the creative suite. It accept the first CD an the serial number, but when i get to the second CD it stop. Any one who can help?

    If you have Windows 7 Pro you can try to install CS3 in XP mode.

  • I have a new PC w/ Win7 and Ipod is not recognized. I think I need to restore the Ipod but am unable to do so. thanks to any /all who can assist.

    I have a new PC w/ Win7 and Ipod is not recognized. I think I need to restore the Ipod but am unable to do so. thanks to any /all who can assist.

    Hello kevin
    Check out the article below to guide you to the proper article to get your iPod shuffle to show up. You will need to see if it shows up on your computer as a device in My Computer section in Windows Explorer. Then it will help you pick the right one.
    iPod not appearing in iTunes
    http://support.apple.com/kb/ts3716
    Regards,
    -Norm G.

  • My new 3 month old imac 27 with 10.6.8 snow is giving a **** of noise from the fan. suddently starting after today starting up. and the volume buttoms and screen lights up and down not working any more.. any one who can help here???

    my new 3 month old imac 27 with 10.6.8 snow is giving a **** of noise from the fan. suddently starting after today starting up. and the volume buttoms and screen lights up and down not working any more.. any one who can help here???

    Try an SMC Reset. (System Management Controller)
    Shutdown>unplug from power for ten minutes>press and hold in the power button for ten seconds>startup again.
    Also try a PRAM Reset. (Parameter RAM)
    Shutdown. At the bootup chime, hold down CMD-Option-P-R together, wait for two more chimes, total three, then let go of all keys to finish booting,
    If this doesn't do it, run the Hardware Test in Extended
    http://support.apple.com/kb/ht1509

  • Since Ios 7 Update of my iPhone 5 I can not log into any WLAN any more - who can help to solve this major problem

    Hi all,
    I updated my iPhone 5 recently to IOS 7 - Since then I do not get any access to my home WLAN / WIFI with the iphone 5.
    At same time the iphone 3S and IPAD 1 of my wife (both IOS 5.x) still work fine in our homes WLAN / WIFI.
    Who can help to get my Iphone 5 with IOS 7 back to work in the home WIFI ?
    Thanks in advance for any possible solution.
    Best regards
    Dirk from Hamburg Germany

    Try this first.
    On the iPhone go to Settings > General > Reset and select Reset Network Settings.
    This will erase all saved wi-fi networks and settings.
    If no change after this, try resetting your modem and wireless router. Disconnect the router from the power source followed by disconnecting the modem from the power source. Wait a few minutes followed by powering your modem back on allowing it to completely reset before powering your wireless router back on allowing it to completely reset with the modem.

Maybe you are looking for

  • How do I set up OCR on PDF's to integrate into Sharepoint Foundation 2010 on my SBS2011 Server?

    I'm going to give an overview of my situation, and what I need to accomplish as a final goal. I am administering a small network for a local firm.  We are running Windows Small Business Server 2011 (Windows Server 2008 R2, and Sharepoint Foundation 2

  • Can i download a filefrom an external hard drive to an ipad

    can I download a file from an external hard drive to an I pad

  • VMM 2008 R2 error 2921

    When attempting to converts windows 2000 with SP4 physical machine to VM using VMM 2008 R2. I receive this error. I am login domain admin account and make sure the account has right on the folder. Why I get this message? Error (2921) VMM cannot compl

  • Problems with Keychain and

    I was on my computer and I tried to change something in the system preferences and the computer wouldn't let me. I noticed that the keychain lock on the bottom. Of the screen was locked so I made a attempt to unlock it but it wouldn't let me. When I

  • IMac shows multiple times in Finder

    I have an issue in the Finder. I'm working on my iMac. It keeps showing my iMac multiple times, but I can't connect to any of them, and worst of all, I can't remove them. Anyone had something like that, or knows how to resolve this?