FRM-47026 Cannot get parameter error when using bi graph

Hi,
I have recently tried to use the BI Graph bean provided as a demo from Oracle.
I have amended the cursors and put into our system but get an error on the master graph.
When i mouse click on a column i recieve the error from forms :
FRM-47026 Cannot get parameter GRAPH_INFO attributes from parameter List CUSTOM_ITEM_LST19: no such names parameter exists.
Any ideas. i have not changed the code in this trigger only the procedure cursors to work within our system
code in trigger:
               eventValues := get_parameter_list(:system.custom_item_event_parameters);
               get_parameter_attr(eventValues,'GRAPH_INFO',eventValueType, tempString);
               set_custom_property('PJC.WAREHOUSEGRAPH',1,'HIDE_GRAPH','');
               FORMSGRAPHSAMPLE.clearData('PJC.DETAILGRAPH');
               FORMSGRAPHSAMPLE.populateDetailGraphData('PJC.DETAILGRAPH',tempString,',');
thanks

Hi,
Did you ever get this issue resolved?
I am facing the same problem.
Thanks
Ian

Similar Messages

  • FRM-47007: Cannot get parameter WUC_DATA attributes from Parameter List: in

    Hi,
    I am pretty sure this is a webutil message. I am running 10g through OC4J, all was working well one minute then on startup of the form I get these 2 message 4 or 5 times:-
    FRM-47007: Cannot get parameter WUC_DATA attributes from Parameter List: invalid list ID.
    followed by:
    FRM-47007: Cannot get parameter WUC_DATA_MULTIPART attributes from Parameter List: invalid list ID.
    These 2 message are repeated 4 or 5 times then things appear to run fine, I can open and read files, transfer them etc. The only thing I can think I have done differently is add a bean to a data block but when I remove the bean and restart the OC4J I still get the messages.
    Any ideas?

    Fixed,
    I dropped the WEBUTIL object group then added it again by adding the object library then subclassing it to the object group. The error messages are gone.
    Cheers

  • Getting Compilation error when used SET or MULTISET operator on nested tabl

    Dear All,
    I am getting Compilation error when used SET or MULTISET operator on nested tables inside a procedure.
    This is working fine in other DB installations of 10g but does not work in another 10g DB.
    it says "wrong number of parameter or datatype used in SET"
    Can any one suggest what went wrong here?
    Thanks in advance.

    Can any one suggest what went wrong here?Only if you would post the query and Oracle versions on both databases.
    Besides, this forum deals with issues in Oracle product installation. So post this query in SQL PL/SQL forum for better response.

  • Getting an error when using adobe photoshop CC, "Could not move the data because of a program error". Any idea on what this means?

    Getting an error when using adobe photoshop CC, "Could not move the data because of a program error". Any idea on what this means?

    Have no idea of what you were even doing in Photoshop my crystal ball is out for repairs so I can not see.  

  • FRM-47007: Cannot get parameter WUC_DATA attributtes from Parameters List

    Hi ...
    Where is the error ??
    Thank..
    Regards
    Hector

    Hi Duncan..
    Very strange , but , when change the password for the user Webutil raise the error "Cannot get parameter.." at once load the fmb, and recompiling (Ctrl+Shift+K) and the error it dissapears..
    My installation is
    Oracle 8.1.7 : In this DataBase am working , with the DBLink a Oracle9ir1 , in where are the package Webutil_DB.
    S.O. = Windows 2000 Professional (Service Pack 2)
    With Forms9i i connect to Oracle 8.1.7 ..
    Very unusual...
    And more, if i not connect to program , and change the password for the user WebUtil, next i connect to program , the error appears , i don't know....but the solutions is recompiling..
    nice !!
    Thanks Duncan..
    PD : You are the great professional , i admire you...

  • Getting an error when using fm 'excel_ole_standard_dat'

    Hi All,
    I am getting an error when trying to generate an excel file with the data in the internal table using fm 'Excel_ole_standard_dat'.
    can anybody help me in this.
    Thankyou,
    Prasanna

    Hi Prasanna
    Could you tell me what's the sy-subrc code you are getting ?
    Pushpraj

  • Get 8004 error when using copy past command transferring pictures from one USB drive to another, why ?

    Why do I get 8004 error, when I use copy past command to transfer pictures from one USB drive to another ?
    There is no problem if the second drive is empty.

    mumbles27 wrote:
    one is MS-DOS
    would that be in FAT32 or NTFS ?
    mac OS extended (case sensitive)
    i'm not 100 % sure but i have a fancy such a combination may not play well together.
    nothing bigger than 2GB for one file
    i was asking because FAT3 has a limitation in that it will not allow you to copy files larger than 4 GB.
    JGG

  • I get an error when using SMTP e-mail send

    When i try to use SMTP mail send.vi i get an error code 1 saying TCP cannot exchage information with SMTP vi. It mentions possible reason for it is not using GPIB card. But there is no relation between GPIB and TCP. I am not able to figure out the problem. Can anyone help ??
    For Latest TECH News check out my blog at http://directfromdigg.blogspot.com

    Hello,
    Error 1 is a very generic error. It means that either an input parameter is invalid or the gpib controller be the controller in charge, but not necessarily both. In the context of this problem, it is referring to an input that doesn’t appear to be correct and as you mentioned has nothing to do with GPIB. The most common problem with the SMTP Email VIs is an incorrect name to the ‘Mail Server’ input. The Mail Server is the name or IP address of the outgoing SMTP mail server you are using. The easiest way to find this information is to check with your IT department. I hope this helps. Best of luck!
    Regards,
    Chris J

  • "cannot resolve symbol" error when using super.paintComponent

    I am trying to override the paintComponent method in a class extending a JFrame, but when I call super.paintComponent(g) from inside the overridden method I get the error
    QubicGUI.java:63: cannot resolve symbol
    symbol : method paintComponent (java.awt.Graphics)
    location: class javax.swing.JFrame
    super.paintComponent(g);
    ^
    1 error
    I can't see where I am deviating from examples I know work. It is a very small program, so I have included it here:
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    import javax.swing.event.*;
    import java.io.IOException;
    import javax.imageio.ImageIO;
    import java.net.URL;
    class QubicGUI extends JFrame
         private int width;
         private int height;
         private Image background;
         public int getWidth()
         {     return width;     }
         public int getHeight()
         {     return height;     }
         public boolean isOpaque()
    return true;
         public QubicGUI()
              super("Qubic"); //set title
              // The following gets the default screen device for the purpose of finding the
              // current settings of height and width of the screen
         GraphicsEnvironment environment = GraphicsEnvironment.getLocalGraphicsEnvironment();
              GraphicsDevice device = environment.getDefaultScreenDevice();
              DisplayMode display = device.getDisplayMode();
              width = display.getWidth();
              height = display.getHeight();
              // Here we set the window to cover the entire screen with a black background, and
              // remove the decorations. (This includes the title bar and close, minimize and
              // maximize buttons and the border)
              setUndecorated(false);
              setVisible(true);
              setSize(width,height);
              setResizable(false);
              setBackground(Color.black);
              // Initializes the background Image
              Image background = Toolkit.getDefaultToolkit().getImage("background.gif");
              // This is included for debugging with a decorated window.
              setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    } // end constructor
              public void paintComponent(Graphics g)
                   super.paintComponent(g);     
              } // end paintComponenet
    } // end QubicGUI

    Two things I want to know:
    1. I was trying to access a variable as JLabel
    myLabel; defined in the constructor of a class from
    the constructor of another class. I got this error
    message - "Cannot access non-static variable from a
    static context". Why(When both are non-static am I
    getting the message as static context)?Post some code. It's hard to pinpoint a syntax error like that without seeing the code.
    Also, there may be cleaner ways of doing what you want without having classes sharing labels.
    2. I am using a map to set the attributes of a font.
    One of the key-value pair of the map is
    TextAttributesHashMap.put(TextAttribute.FOREGROUND,Colo
    .BLUE);
    But when I using the statement g.drawString("First
    line of the address", 40, 200); the text being
    displayed is in black and not blue. Why?You need to use the drawString that takes an AttributedCharacterIterator:
    import java.awt.*;
    import java.awt.font.*;
    import java.text.*;
    import javax.swing.*;
    public class Example  extends JPanel {
        public static void main(String[] args)  {
            JFrame f = new JFrame("Example");
            f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
            Container cp = f.getContentPane();
            cp.add(new Example());
            f.setSize(400,300);
            f.setLocationRelativeTo(null);
            f.setVisible(true);
        protected void paintComponent(Graphics g) {
            super.paintComponent(g);
            String text = "Every good boy does fine always";
            AttributedString as = new AttributedString(text);
            as.addAttribute(TextAttribute.FAMILY, "Lucida Bright");
            as.addAttribute(TextAttribute.SIZE, new Float(16));
            as.addAttribute(TextAttribute.FOREGROUND, Color.BLUE, 0, 5);
            as.addAttribute(TextAttribute.FOREGROUND, Color.GREEN, 6, 10);
            as.addAttribute(TextAttribute.FOREGROUND, Color.RED, 11, 14);
            as.addAttribute(TextAttribute.FOREGROUND, Color.YELLOW, 15, 19);
            as.addAttribute(TextAttribute.FOREGROUND, Color.MAGENTA, 20, 24);
            as.addAttribute(TextAttribute.FOREGROUND, Color.CYAN, 25, 31);
            g.drawString(as.getIterator(), 10, 20);

  • Getting Runtime error when using HP Simple Pass

    Getting Runtime Error and Firefox shutdown when using HP Simple Pass on new HP dm 1165

    Try HP support. <br />
    http://h30434.www3.hp.com/t5/Operating-systems-and-software/HP-Simple-Pass-Not-working-in-Firefox/m-p/348876

  • How do I avoid getting this error when using an OpenVPN?

    I did a little research online and noticed that people got this same (or a very very similar) error in iOS on Safari when browsing with a proxy and they just had to reset network connections.
    I'm getting it in OS X. When I turn on the VPN sometimes browsing will work fine, but then this pops up and once I get this error in one tab I get it in all of them. Firefox still works. There's plenty of memory -- RAM and ROM.
    When I turn off the VPN it works again.

    Thanks Carolyn!
    I don't think this is the solution for me, although I do think it is a clue. It can't be a mistyped proxy field, as this happens across different VPN's (i.e. work, personal, school) and browsing is working fine for a time before it starts all the sudden giving me that message.
    I am on 10.8 which I didn't think was related, but now I'm starting to think maybe it is, so I'll also post in the Dev community. However if you or anyone has any ideas PLEASE do follow up, as I find the user support community to be far, far more useful than the Dev community in general!

  • Keep getting "Download Error" when using Adobe Application Manager. Have tried from different areas.

    I'm trying to update my CC Illustrator, as there is an issue that has apparently been resolved with a new update.
    Whenever I try to update Illustrator, or even download a new application, I get an error window "Download Error.  Try again or contact customer support."
    I have tried to download both directly from Adobe Application Manager and from the Creative Cloud website itself.  I have restarted my computer.   This has been happening for 2 days now.  Just can't seem to connect with Adobe Application Manager. 
    At one  point I got a window message that said to check the Adobe Site Status, and all looked green and fine there. 
    And this forum appears to be the only "customer support" ???!  I don't see any chat help or phone help.  Is that true?
    I can go back to CS4 Illustrator to get the feature that I need (zoom in/out using magic mouse+Option, which is my favorite and essential Illustrator shortcut) but obviously will need to update and download more CC features and programs in the near future.
    Thank you for anyone who can help me.
    Barbara

    You can also use Download New Adobe CC Trials: Direct Links (no Assistant/Manager) | ProDesignTools
    Direct Download Links for Adobe Software
    Are you on a managed network. If yes please refer the Knowledge base article: http://helpx.adobe.com/creative-cloud/help/cc-desktop-download-error.html.
    You may even try the direct download: http://prodesigntools.com/adobe-cc-direct-download-links.html.
    Kindly follow the very important instructions before download.
    It might help you.
    Regards
    Rajshree

  • Trying to get prior error when using deferred constaint on Oracle database

     

    Hi Greg,
    There is no direct way to retrieve a error as an original exception
    is wrapped. Also, it's problematic to report constraint violations
    in general as different DB vendors use different ways to report them.
    You may try to correct problem by extracting text of the exception
    and looking for certain string patterns using direct string parsing
    or regexps.
    Regards,
    Slava Imeshev
    "Sanjeev Chopra" <[email protected]> wrote in message
    news:3d5aa128$[email protected]..
    posting to ejb newsgroup
    "Greg James" <[email protected]> wrote in message
    news:[email protected]..
    I'm using an Oracle database which has deferred constraints enabled. I'musing
    Weblogic 5.1 and Java. The problem is that the deferred constraints
    don't
    report
    errors until a commit. This makes all errors report back to the java EJBcode
    as error code 2091: Transaction Rolled Back. Both errors show up in theWeblogic
    log file so there must be some way for my EJB to access it. How can I
    get
    the
    error code of the actual cause?

  • Can someone please tell me why I am getting an error when using my Liquify tool?

    I am receiving an "error"window when using my Liquify tool in Filters. I receive a "delayed write failed" window also...I heard a loud honking sound and then my ability to use the tool is frozen. A little help please?

    You're not alone. There have been several threads about this issue:
    http://forums.adobe.com/thread/1408767?tstart=60
    http://forums.adobe.com/thread/1358619?tstart=120
    http://forums.adobe.com/thread/1407847?tstart=150
    http://forums.adobe.com/thread/1404674?tstart=420
    They're all informative, but I think the last one might be what you want.

  • Getting #3121 error when using 32 bit. ODBC  Drivers

    I am tring to connect to a Oracle 7.3 remote database,using MS Access97.MS Access97 usues ODBC 32Bit data source. I have downloaded the ODBC 32 bit drivers from the Oracle site, but When I try to connect I keep getting the 3121 error. It sais:
    "No Interface Driver Connected - Fonction Not Performed (#3121)
    (Microsoft)ODBC Driver Manager Driver's SQLSeConnectAttr Failed (0) My SLQ*NET is a 16 Bit. Do I need to get a 32 bit SQL*NET ?
    If SO, where do I find it ?
    the only ODBC source are the 16 bit sources witch are not compatible with MS Access 97. The error messages tells me to install SQL*NET Easy Config version 32 Bit. I have the 16 bit version and it works ok with the 16 bit applications, but with Access97, it needs 32 bit SQL*NET Easy , Where do I find this ?

    Hello Srikanth,
    I already found that webpage but it didn't solve the issue. After your suggestion I retried it but with the same error...
    Regards,
    Dennis de Kock

Maybe you are looking for

  • Report on material with inspection type

    Hi, is there any report which can show which material is assigned to which inspection type. regards Raj

  • Cash Flow P6

    Is it possible to get cash flows in P6? Please advise.

  • DPM 2012 R2 backup Causes Redirected CSV IO on SOFS Cluster.

    Hi, I have a Scale out Storage Spaces Server with 2 nodes, and a 10 node 2012 R2, Hyper-V cluster using this via SMB3.0 I also have installed a DPM2012 R2 backup server. the DPM agent is installed on all nodes of all servers and I have followed the p

  • Bridge is non responsive

    I have recently lost the ability to open adobe bridge. I have photoshop CS4 and have been using it without any problems for a few years now but suddenly I lost the abiliy to access Bridge from either the icon at the top of photoshop or through the co

  • Task execution Log

    Hi Experts, In consolidation monitor for a data collection task we have activated "last log" funtionality at Task level. Please help us to find out the table where the last log stored. Not only the status of the log but the messages that comes in the