WUC-1 Component has no parent frame.

Hi guys,
a have a problem using webutil (Webutil_File_Transfer.DB_To_Client).
I subclassed the webutil object library and attached de webutil .pll in the form.
When I ran the form, I receive the error: "WUC-1 Component has no parent frame"
Any idea what´s the problem ?
The form runs on the AIX Server . Forms 10.1.2 and Database 10g.
Tks.
Franco

just adding more information:
when I used WEBUTIL_CLIENTINFO.GET_USER_NAME and Webutil_File_Transfer.GET_WORK_AREA ... for example, the forms works fine!
Tks
Franco

Similar Messages

  • Trouble suppressing parent frame

    I'm having a problem suppressing a parent frame, when the child frame has no details. Actually, there are details, but I have suppressed them at the detail frame, with a format trigger.
    A summary count in the parent group won't work, because it returns the count without accounting for the ones suppressed in the format trigger.
    I tried creating a user parm (set to 0) that would be incremented in the detail format trigger, but you can't assign values to parms in a format trigger.
    Outside of creating temp tables or completely duplicating the logic already in the format trigger, does anyone have any suggestions?
    Thanks.
    null

    <BLOCKQUOTE><font size="1" face="Verdana, Arial">quote:</font><HR>Originally posted by Ileana Bblcu ([email protected]):
    Try to do it or at least part of it in the SQL.
    The format triggesrs should be the last resort. Are your conditions that complex that they can't be included in the query?<HR></BLOCKQUOTE>
    I have many conditions in this report. Most fo them are handled with lexical references in the main query. However there are some conditions that are too complex for the query. These are the ones I'm struggling with.

  • Owb error(please pass a parent frame)

    Hi all,
    While synchronizing mapping in a process flow i am getting "this message is not modal pass a parent frame" error.My mapping has operating mode of "set based fail over to row based".Any idea why i am getting the error?

    Anyone??????????

  • Parent.frame.location problem in firefox

    Hello! I'm making a JSP page which opens a new page with 2 frames. The left frame has links which changes the location of the right frame. The right frame either displays an oracle report or another JSP that displays a PDF file. The thing is, I use parent.frame.location to change the display and it works ok with IE, but not in firefox. Anyone know why this is and how to fix it?
    Thanks.

    This is a JavaScript problem. So someone probably knows the answer but you are more likely to get an answer on a JS forum rather than a JSP forum.

  • Find reference of parent frame

    Is it possible to get a reference of the parent frame to a component? I have an inner class as an actionListener to a JButton that I need to manipulate the properties of a frame. I can get a reference to the component by using the getSource method of the event, but I am stuck from there. Is is possible and if so, how? Thanks in advance.

    SwingUtilities.windowForComponent(...);

  • Parent frame handling events from a child frame

    Hello, I'm making an app where i have a frame ("A" frame where A is a JFrame extended class) with a Button, nothing more nothing less, and, inside the mouseclick event I create an instance of another frame ("B" frame, created just by the common sentence B screenB = new B(); where B is a JFrame extended class) that it has, exactly like the parent, a Button but this has a different behavior, when i click the button of the "B" frame (Child) it's supposedly have to change the text of the button in "A" frame (Parent). In other words, an event in a child frame have to make changes in the parent frame, or the parent have to listen to events of the child to make any changes at the moment it happened, or whatever, what you understand the best for this.
    And another thing, in some apps you have a screen to fill some fields, and when you click a button or something, sometimes it appears another screen, let's say it has more fields, but that screen is now on the top of the screens and unless you close it or click a Ok button for say something, it denies you to do anything on the parent screen or another screen, like that are disabled or something. This is a property included in Frames, or it has to be imaginated and coded in java?
    Hope you can help me.

    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    public class ListeningToChildren implements ActionListener {
        JLabel label;
        JFrame child;
        public void actionPerformed(ActionEvent e) {
            if(child == null)
                launchChild();
            else
                child.toFront();
        private void launchParent() {
            JButton button = new JButton("launch child");
            button.addActionListener(this);
            JPanel panel = new JPanel();
            panel.add(button);
            label = new JLabel("count = 0");
            label.setHorizontalAlignment(JLabel.CENTER);
            JFrame f = getFrame("Parent", new Point(200,200));
            f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
            f.getContentPane().add(panel, "First");
            f.getContentPane().add(label);
            f.setVisible(true);
        private void launchChild() {
            JButton toParent = new JButton("talk to parent");
            toParent.addActionListener(listener);
            JButton openDialog = new JButton("open dialog");
            openDialog.addActionListener(new ActionListener() {
                public void actionPerformed(ActionEvent e) {
                    String s = "<html><font color=blue size=8>" +
                               "Hello World</font></html>";
                    JLabel msg = new JLabel(s, JLabel.CENTER);
                    JOptionPane.showMessageDialog(child, msg, "modal dialog",
                                                  JOptionPane.PLAIN_MESSAGE);
            JPanel north = new JPanel();
            north.add(toParent);
            JPanel south = new JPanel();
            south.add(openDialog);
            child = getFrame("Child", new Point(450,200));
            child.addWindowListener(disposer);
            child.getContentPane().add(north, "First");
            child.getContentPane().add(south, "Last");
            child.setVisible(true);
        private JFrame getFrame(String title, Point loc) {
            JFrame f = new JFrame(title);
            f.setSize(200,150);
            f.setLocation(loc);
            return f;
        private ActionListener listener = new ActionListener() {
            int count = 0;
            public void actionPerformed(ActionEvent e) {
                label.setText("count = " + ++count);
        private WindowListener disposer = new WindowAdapter() {
            public void windowClosing(WindowEvent e) {
                child.dispose();
                child = null;
        public static void main(String[] args) {
            new ListeningToChildren().launchParent();
    }

  • Need to get the parent frame

    I am popping up a dialog box from a JScrollPane made up of a JTable and some buttons. I do not know how to specify the Frame owner part of the constructor. How do I get the parent frame in for the JDialog constructor?
    Everything worked but then I realized my "dialog" was not a dialog box at all, just another frame... oops! This is an assignment so I have requirements I must adhere to. Now I am trying to convert it so it will truly be a Dialog box.
    I promise you I have read ALL of the trails and API and searched forums. Can anyone assist?

    try: SwingUtilities.windowForComponent( Component );
    and cast the result to a JFrame
    or try this link:
    http://forum.java.sun.com/thread.jsp?forum=57&thread=189331
    which I found by search the Swing forum using the keywords - (parent frame)

  • Extended JDialog to pop-up in center of parent frame

    I have a JDialog extended, and I want it to pop up in the center of the parent frame when A button is pressed in the frame. The button is in the constructor of the main frame, and uses an anonymous inner class to attach the action listener to the button. I am calling the outter class (MainFrame) with the "this" reference, and I get bogus results. MapParameters is extended from JDialog.
    when I instantiate the JDialog with this line "mp = new MapParameters(MainFrame.this,true)" It puts the dialog in the upper left corner of the screen, which is the same results as if I were to use "null" where "MainFame.this" is.
    What am I doing wrong?

    You have to calculate the locations if you want to center the dialog on the frame. Add this code to either your the MainFrame where you create the dialog or in the JDialog extended class. Make sure the size of the dialog is set (ie it has been laid out if you are using a layout manager or set it using setSize if you are laying out components manually) before this code is executed.
    //Center the dialog
    Dimension frameSize = frame.getSize();
    Dimension dialogSize = dialog.getSize();
    if (dialogSize.height > frameSize.height) dialogSize.height = frameSize.height;
    if (dialogSize.width > frameSize.width) dialogSize.width = frameSize.width;
    dialog.setLocation((frameSize.width - dialogSize.width) / 2, (frameSize.height - dialogSize.height) / 2);

  • How to find out which plugin is missing ( embed width="100%" height="100%" messagecallback="parent.frames.MANIPULATIONS.AppendMessage" spinfps="15" spiny="30")?

    How to find out which plugin is missing fro mthe website: http://web.it.nctu.edu.tw/~twli/interactive/scr_tutf.htm?
    After looking at one similar question found in mozilla support and answered by jscher2000 (https://support.mozilla.org/en-US/questions/957655), I have found out I have to look for either &lt;object or &lt;embed. What I found is : &lt;embed width="100%" height="100%" messagecallback="parent.frames.MANIPULATIONS.AppendMessage" spinfps="15" spiny="30"
    What do I have to do now?

    This big1.mol (and possibly big2.mol) file is loaded in the embed plugin object that is opened in a iframe, so you can right-click the plugin area to check the embed code.
    *http://web.it.nctu.edu.tw/%7Etwli/interactive/big1.mol
    *http://web.it.nctu.edu.tw/%7Etwli/interactive/big2.mol

  • I had completed my iDVD project and burned a disc. It worked great! Then someone messed with the project and put a red frame around the opening screen. Now when I burn the project, it no longer has the opening frame. How can I fix?

    I had completed my iDVD project, a Wedding Slideshow with pictures and music, and burned it on a disc. It worked great! Then someone messed with the original project on my computer and clicked around and put a red frame around the opening screen that has the Wedding theme with music. Now when I burn the project to make more DVDs, it burns but no longer has the opening frame. It immediately opens to the iMovie slideshow. How can I fix so I can burn the entire project with opening frames?

    As Bengt suggested make a disk image of the successfully burned DVD using Disk Utility. Then you can burn copies any time you need one.
    In the future once you have the project as you want it save it as a disk image via the File ➙ Save as Disk Image menu option.  This will separate the encoding process from the burn process. 
    To check the encoding mount the disk image and launch DVD Player and play it.  If it plays OK with DVD Player the encoding was good.
    You can then burn it to disk with Disk Utility at the slowest speed available to assure the best burn quality.  Always use top quality media:  Verbatium, Maxell or Taiyo Yuden DVD-R are the most recommended in these forums.
    OT

  • HP CUE-Scanni​ng Flow Component has stopped working on printer settings

    Hello,
    When i click Printer Settings or when i am done with scan and need to send it to printer i got: HP CUE-Scanning Flow Component has stopped working error. Specifications of system are below.
    OS: Windows 7
    Scanner: HP ScanJet G2400 (System saying: G2410 )
    Printer: HP LaserJet 1010 USB ( Drivers for Win XP by reccomendation from this forum, not my post )
    Solution Center Ver: 130.0.44.62
    I belliwe error is printer driver, and dont say to switch to Vista drivers, TOO buggy.
    This question was solved.
    View Solution.

    Hello ArsenArsen,
    Welcome to the HP Forums!
    I understand your concerns. Unfortunately, for this Scanjet and this Laserjet printer, I need to direct you to our Enterprise Business Community Forums. This will be the right section to troubleshoot this issue.
    Good luck.
    I worked on behalf of HP.

  • How do I get a pop-up JDialog to return a result back to the parent frame?

    I have a button in a frame that opens up a JDialog with more buttons. Depending on the button pressed, the JDialog calculates an array and then closes the dialog. I'd like the results from the JDialog to be passed back to the parent frame. Is there any built in JDialog function allowing a passback upon closing to the parent frame or anything like that?
    If not, what's the best way to go about it?

    Is this a modal dialog? Then setVisible(true) blocks. The caller can retrieve the result after that call:
    dlg.setVisible(true);
    //now get result;

  • Drop frame - how do i know if my fotage has a drop frame?

    hello,sorry about the stupid question,but dhow do i know if my fotage has a drop frame or not?
    thx

    To see if the footage you captured was recorded with drop frame (the default) or no-drop frame timecode, right-click on a clip and select Item Properties to check the frame rate.
    For the 'dropped frames' question, if there were timecode breaks or other problems with the recording on the tape, FCP will either abort capture at that point, or start a new clip depending on what you've told it to do in preferences. The dropped frames on capture condition can also happen if there is a data throughput problem (I/O error) during capture.
    For dropped frames on playback, you may sometimes get that warning if your system can't keep up with RT playback. To see if there actually are dropped frames, go through that section of the clip frame-by-frame to see if there appear to be any.
    -DH

  • "Application module  is not a root app module but has no parent"

    This is to follow up on my answered question on rootAN substitution
    Re: "login session has expired" after am substitution
    I am working on an OAF extension.
    I have a new LOV region. I extended (to be substituted) the seeded VO, call it xxVO. And I have three custom methods using this xxVO that are called from processFormRequest of my controller which extends the seeded controller.
    So putting these methods in rootAM and AM substitution didn't work as some folks pointed out.
    So I created xxAM (extends root AM), put xxVO in xxAM’s data model and put my methods in xxAM, set this xxAM as AMDefinition for my custom LOV region.
    In my controller I do
    OAApplicationModule xxAM = new xxprg.oracle.apps.icx.por.req.server.xxprgRequisitionAMImpl();
    But I am getting
    => oracle.apps.fnd.framework.OAException: oracle.jbo.InvalidOwnerException: JBO-25301: Application module is not a root app module but has no parent
    at
    xxAM.invokeMethod("handleChangeRequester", parameters);
    I found a few posts on the same topic. One advise was to not instantiate ‘new’ AM but do something like this
    Xo2cAcctOviewExtAMImpl amExt = (Xo2cAcctOviewExtAMImpl )pageContext.getApplicationModule(webBean);
    In this example I am confused about the fact that ‘getApplicationModule(webBean);’ which is used in the signature of the processFormRequest will return a ‘rootAM’, is this correct?
    There was another workaround mentioned in other posts to not use xxAM at all but build a class to mimic an xxAM passing all needed values that custom methods require. In which case how(or better where) do I instantiate xxVO since now xxVO won’t be part of any AM data model?
    Can someone please clarify.
    Thank you
    Anatoliy

    Pratap,
    Thank you for the response.
    The reason I need to use new xxCO on the page is this.
    Seeded page CheckoutLinesPG.
    It has advanced table on it where every column has it's one external region.
    The new LOV region xxRN is put on a page also under this table new column.
    1. When a requester (seeded region on the seeded page) is changed then my xxLOV should reflect the change and be populated according to what is selected in the Requester LOV.
    2. When one-time address is added (another seeded region on the seeded page) my xxLOV should be disabled, when one time address taken out - enabled again.
    So xxCO should apply to the whole page.
    The VO behind advanced table PoRequisitionLinesVO is extended with 2 additional attributes and will substitute, the new xxVO is under xxAM data model.
    All works fine with my methods in the seeded RequisitionAM which I get a handle to in the xxCO. But I don;t know how to get the handle to the xxAM if I put my methods there.
    Thanks,
    Anatoliy
    P.S. just fyi - I know it is not the recommended approach but what I did for now I put all calls into the controller - in the controller I can get a handle to root AM, through that I am getting a handle to xxVO which (!) is substituted during runtime with my xxVO. But if you can figure out how to get a handle to xxAM in my case it will be great.
    Edited by: asmirnov on Mar 24, 2009 2:04 PM

  • Group delivery for BOM's when one of the BOM component has no confirmed qua

    Hi,
    We have an issue. We have group delivery for BOMs. However it might be in some cases that one of the component has no confirmed quantity. Still we do not want delivery for any of the component to be created. What is the easiest way to achive this?
    thanks in advance.
    regards Camilla

    Hi Camilla,
    In VOV7 for the item category of main item Create Delivery Group must be assigned a value X (Form delivery group with one delivery date). If you have this configuration set-up done system will  assign one delivery group for the entire group of BOM materials and all will be delivered on the same date. Can you check this?

Maybe you are looking for

  • Using external drive for itunes

    Hope someone can help with this: I am going travelling and want to take my music library, at present in itunes on my desktop G4. I have copied this library onto a 100GB portable hard drive, and would now like to get itunes on my macbook to refer to t

  • Purchase Order Approvals

    Dear All. I would like to know if there is a way to activate approval procedures for Purchase Orders already entered in SAP. The Purchase Order have not gone to the next stage of Goods receipt or AP Invoice. Kind Regards Rajindra Parmar

  • Iphoto suddenly doesn't recognize my photo library

    Yesterday, I created a slideshow and showed it on our TV via the s-video output and screen mirroring. When finished, I returned the screen settings (ie resolution) to what it had been (1280x854). Today, when I opened iphoto, a message appeared "Scree

  • Dynamic name for attachment in the Receiver Mail Communication Channel

    Hi All, I want to dynamically set the name of attachment in receiver mail Communication Channel. Example: IN__9907211000004_4048454000005_20081211_01000000002643 The first two numbers 9907211000004 & 4048454000005 I want to read it from the message 2

  • HTMLD_ITEM.DATE_POPUP  - Disabling text field AND Datepicker.

    Hi all, Need help with the following. I am using APEX 3.2.100.12 (this is in production and won't be upgraded soon). I have a report, that creates dynamically date_popups. My query goes like this: select case when trunc(ddc_delivery_date) <= trunc(sy