Forms window inside applet doesnt show buttons

Hi everyone,
We are trying to migrate some apps to Forms10, ( coming from client-server 6i ) and there seems to b some problem with the size of the forms window inside the applet. I have tried the solution i read here about using javascript, which spwans a window whith applet and the forms ( closing the parent ). So, i get the browser window ( with no menu bar, just like I want ) but the trouble is the form doesn't show it's buttons ( close and maximize )... to get them in the applet i must double click the border of the forms window, and then they appear... but if i maximize it, they get out of range again... can anyone help me ?
thx in advance
Joao Castro

What Windows screen size settings are you working with... 800x600, 1024x768, 1280x1024?
It sounds like you are using up all the available space on the screen, and in Web Forms, the containing windows take up a few more pixels.

Similar Messages

  • My new installation of itunes on a windows 8 computer doesnt show add a folder

    my new installation of iTunes on a new windows 8 computer doesnt show add a folder. how do I get my library imported?

    Use CTRL+B to enable the menu bar.
    tt2

  • When i plug my iphone in to usb it goes to pictures on windows 8 . it doesnt show up in itunes

    i cant get on itunes with my iphone. when i plug it in to usb it goes to pictures. it doesnt show up in itunes

    Opening a pictures app on the computer is normal if you have your computers settings set to open Pictures when a camera is attached. For the purpose of transferring photos from the iPhone to the computer your computer will recognize an iPhone as a camera.
    Did you quick the pictures application an manually start iTunes 11.1 or later? Use the view menu in iTunes to .view Sidebar. Does the iPhone appear in the Sidebar?

  • The Java applet doesnt show up - instead white window !?

    Hello there..
    I have a mysteries problem.
    I have a client server program using RMI in Java 1.4 but sometimes before anything shows up, At the point that my java applet show up from the HTML page on 10% of the times I see a white window on the HTML page at the size of the applet and it dead.
    After this point everything stuck I cant even close my html window
    I have to do it from the task manager.
    What happiness here?

    Which version of Java do you have, try 1.4.2_09
    Have you any firewalls which might block your RMI?

  • AppBuilder Application doesnt show the output

    Hi All,
      I am doing the sample application in AppBuilder, when i run the application it opens a new browser window but it doesnt show the output.
    this is the problem, how to resolve this?
    If any body come across this issue please help me.
    Regards,
    Sravanya

    Hi Sravanya K,
    There seems to be some compatibility issue with latest Chrome update. (All the other pre requisites have nt had any releases very recently)
    Last release of other Pre requisites :
    Node JS - 5th june 2014 ( Node.js ChangeLog )
    JDK - (its to be manually updated).
    APP Builder (appbuilder-1.0.1252.zip is the last release which happened a long time back )
    Google Chrome - Can find latest release logs in Chrome Releases and chrome has an Update almost everyday
    UI5 Liraries - As per OpenUI5 - Download  16 th July 2014 is the last release of Ui5 libraries.
    More over App builder does not need any internet connectivity to atleast run the sample applications / templates of SuperList,Chart. (so the issue might be internally in the system using these pre requisites )
    So i certainly doubt the Auto Update feature of Google Chrome , causing this issue.
    Though this currently have nt worked in latest version of chrome in my system , other major browsers are still supported .
    As a work around can suggest to work with other browsers.
    I also tried with Safari , Firefox and  safari  worked satisfactorily -
    (Chrome, Safari are recommended for App Builder ) (Firefox worked partially)
    attached is the screenshot of Sample Application running in Safari
    Regards
    Virinchy

  • Buttons doesnt show on the applet

    I wrote a code which takes coordinates of buttons from another class and set it to buttons bounds and then add it to contentpane but the problem is buttons doesnt show on the applet.
    Here is my code
    any help would be usefull
    package applet;
    import javax.swing.*;
    import javax.swing.event.*;
    import javax.swing.ImageIcon;
    import java.io.*;
    import java.util.*;
    import java.awt.*;
    import java.awt.event.*;
    import images.*;
    import hareket.*;
    public class backgammon extends JApplet
    public Icon puls_icon,bgicon,pulk_icon;
    private Image pul_s,background,pul_k;
    private JLabel bg;
    private JButton[] butonlar;
    private sari sariplayer;
    private kahverengi kahveplayer;
    private kareler board;
        public void init()
            getContentPane().setLayout(null);
            this.setSize(744, 536);
            butonlar = new JButton[31];
            board = new kareler();
            sariplayer = new sari(board);
            kahveplayer = new kahverengi(board);
            sariplayer.setkahverengi(kahveplayer);
            kahveplayer.setsari(sariplayer);
            kahveplayer.baslangic("kahverengi");
            sariplayer.baslangic("sari");
            pul_s = getImage(getCodeBase(),"images/pul_sari.gif");
            pul_k = getImage(getCodeBase(),"images/pul_kahverengi.gif");
            background = getImage(getCodeBase(),"images/background.jpg");
            puls_icon = new ImageIcon(pul_s);
            pulk_icon = new ImageIcon(pul_k);
            bgicon = new ImageIcon(background);
            bg=new JLabel(bgicon);
            bg.setBounds(0,0,getWidth(),getHeight());
            getContentPane().add(bg);
            butoninitialize();
        public void butoninitialize()
                for (int i=1;i<31;i++)
                    if (i<16)
                        butonlar[i] = new JButton(pulk_icon);
                        butonlar.setBounds(kahveplayer.pullar_x[i],kahveplayer.pullar_y[i],42,42);
    else
    butonlar[i] = new JButton(puls_icon);
    butonlar[i].setBounds(sariplayer.pullar_x[i],sariplayer.pullar_y[i],42,42);
    butonlar[i].setContentAreaFilled(false);
    butonlar[i].setBorderPainted(false);
    this.getContentPane().add(butonlar[i]);
    Thanks

    The second method will not work unless you have JDK 1.5.
    I simplified your code a bit to make it compilable.
    This solution should work:
    package applet;
    import javax.swing.*;
    import java.awt.*;
    public class backgammon_1 extends JApplet {
        public Icon puls_icon,bgicon,pulk_icon;
        private Image pul_s,background,pul_k;
        private JLabel bg;
        private JButton[] butonlar;
        public void init() {
            getContentPane().setLayout(null);
            this.setSize(744, 536);
            butonlar = new JButton[31];
            pul_s = getImage(getCodeBase(),"images/pul_sari.gif");
            pul_k = getImage(getCodeBase(),"images/pul_kahverengi.gif");
            background = getImage(getCodeBase(),"images/background.jpg");
            puls_icon = new ImageIcon(pul_s);
            pulk_icon = new ImageIcon(pul_k);
            butoninitialize();
            bgicon = new ImageIcon(background);
            bg=new JLabel(bgicon);
            bg.setBounds(0,0,getWidth(),getHeight());
            getContentPane().add(bg);
        public void butoninitialize() {
            for (int i=0;i<butonlar.length;i++) {
                if (i<16) {
                    butonlar[i] = new JButton(pulk_icon);
                    butonlar.setBounds(50*i,50,50,50);
    } else {
    butonlar[i] = new JButton(puls_icon);
    butonlar[i].setBounds(50*(i-16),100,50,50);
    butonlar[i].setContentAreaFilled(false);
    butonlar[i].setBorderPainted(false);
    this.getContentPane().add(butonlar[i]);

  • Error While opening a JSP page from inside form window

    Hi,
    I am using Oracle EBS 12.0.4 and using IE 7 as my browser.
    Now when i am trying to open a jsp page form EBS Home page (after login) it is opening perfectly.The problem occurs when i tried to open jsp pages from inside form window.
    E.g. From the home page when i tried to open a jsp page "Control Purchasing Periods" which is assigned in one of our custom responsibility(Manager Systems-->PO Super User-->Set up-->Financials-->Accounting-->Control Purchasing Periods) it opens a new log in page for the EBS. When i logged in it is showing
    Error
    You have insufficient privileges for the current operation. Please contact your System Administrator. Same is happening when i am trying to open User Page form user management responsibility from inside a form window.Where as it is opening fine from home page.
    Please help.

    Hi, hueesin
    in error log i got this 4 new lines while performing the transaction from my host
    [Thu Dec 30 13:27:39 2010] [error] [client 172.16.6.144] [ecid: 1293695859:172.16.48.61:25634:0:8748,0] Directory index forbidden by rule: /dev02/KMCTEST/apps/apps_st/comn/java/classes/
    [Thu Dec 30 13:27:40 2010] [error] [client 172.16.6.144] [ecid: 1293695860:172.16.48.61:25328:0:8829,0] Directory index forbidden by rule: /dev02/KMCTEST/apps/apps_st/comn/java/classes/
    [Thu Dec 30 13:28:06 2010] [error] [client 172.16.6.144] [ecid: 1293695886:172.16.48.61:25654:0:9225,0] File does not exist: /dev02/KMCTEST/apps/apps_st/comn/java/classes/oracle/forms/engine/RunformBundle_en_IN.class
    [Thu Dec 30 13:28:06 2010] [error] [client 172.16.6.144] [ecid: 1293695886:172.16.48.61:25654:0:9226,0] File does not exist: /dev02/KMCTEST/apps/apps_st/comn/java/classes/oracle/forms/engine/RunformBundle_en_IN.propertieswhile in access log i got
    172.16.6.144 - - [30/Dec/2010:13:32:51 +0530] "POST /OA_HTML/OA.jsp?page=/oracle/apps/fnd/sso/login/webui/MainLoginPG&_ri=0&_ti=587084970&language_code=US&requestUrl=http%3A%2F%2Fkmctapp2.kmc.com%3A8005%2FOA_HTML%2FRF.jsp%3Ffunction_id%3D2014%26resp_id%3D50670%26resp_appl_id%3D7000%26security_group_id%3D0%26lang_code%3DUS%26params%3Df7B5hnH8rkFfR.idy0MT1JZrquJxVBy3CVpSV.GpXc0%26oas%3DAuZa28Bnhl7glqYyqXbjsg..&cancelUrl=http%3A%2F%2Fkmctapp2.kmc.com%3A8005%2FOA_HTML%2FAppsLogin&langCode=US&oapc=2&oas=rucHEnmoEQ25-3xRNnl0ZA.. HTTP/1.1" 302 708 1 "http://kmctapp2.kmc.com:8005/OA_HTML/RF.jsp?function_id=28636&resp_id=-1&resp_appl_id=-1&security_group_id=0&lang_code=US&params=Br702.NFW.nrlg1EodytbsK-Dc1k9ERgGeColziC.cPOIi7hiyjaPiR6AJ7.Lk4IUbiFt8MZ-sww1yPk9nLXIYqdPHfttMeywkt5IQhVsrG8Y9M-0CrrcAU8ZntmtaFjlkc2vXbUaot6TQpdqAPHJyaJn6YLsew516hhfiB2xemOmo6e-.WpPrlXfvBQG.XVr-Z8y-V4uRkwwHgWHTK.ju6jLsF35BmqTRszq39cgoHe38QZqjtonDRWgTFzvxooOAmX1EHPfxfMz88uKnVWnnzU-4996ZD8e3X0Dagp19gjOYgefJlT1fTUaFvMo3cP.-7Ypt0s4Cck.GhdFOnHRK1Ok6KdvnjFyjK-WHCy4ZHCvw3NZPREYBngqJc4gvnDziIu4Yso2j4kegCe-i5OCFG4hbfDGf7MMNcj5PZy1yFwJ8GIMHyNmCAg9Yo1bXn5cTHOy7xYWHyOD5.ax3JG6Q&oas=W0vxAqkroMB_7DgeNPZhYw.." "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 2.0.50727)"
    172.16.6.144 - - [30/Dec/2010:13:32:51 +0530] "GET /OA_HTML/RF.jsp?function_id=2014&resp_id=50670&resp_appl_id=7000&security_group_id=0&lang_code=US&params=f7B5hnH8rkFfR.idy0MT1JZrquJxVBy3CVpSV.GpXc0&oas=AuZa28Bnhl7glqYyqXbjsg.. HTTP/1.1" 200 7534 0 "http://kmctapp2.kmc.com:8005/OA_HTML/RF.jsp?function_id=28636&resp_id=-1&resp_appl_id=-1&security_group_id=0&lang_code=US&params=Br702.NFW.nrlg1EodytbsK-Dc1k9ERgGeColziC.cPOIi7hiyjaPiR6AJ7.Lk4IUbiFt8MZ-sww1yPk9nLXIYqdPHfttMeywkt5IQhVsrG8Y9M-0CrrcAU8ZntmtaFjlkc2vXbUaot6TQpdqAPHJyaJn6YLsew516hhfiB2xemOmo6e-.WpPrlXfvBQG.XVr-Z8y-V4uRkwwHgWHTK.ju6jLsF35BmqTRszq39cgoHe38QZqjtonDRWgTFzvxooOAmX1EHPfxfMz88uKnVWnnzU-4996ZD8e3X0Dagp19gjOYgefJlT1fTUaFvMo3cP.-7Ypt0s4Cck.GhdFOnHRK1Ok6KdvnjFyjK-WHCy4ZHCvw3NZPREYBngqJc4gvnDziIu4Yso2j4kegCe-i5OCFG4hbfDGf7MMNcj5PZy1yFwJ8GIMHyNmCAg9Yo1bXn5cTHOy7xYWHyOD5.ax3JG6Q&oas=W0vxAqkroMB_7DgeNPZhYw.." "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 2.0.50727)"
    172.16.6.144 - - [30/Dec/2010:13:32:51 +0530] "GET /OA_HTML/cabo/images/swan/t.gif HTTP/1.1" 304 0 0 "http://kmctapp2.kmc.com:8005/OA_HTML/RF.jsp?function_id=2014&resp_id=50670&resp_appl_id=7000&security_group_id=0&lang_code=US&params=f7B5hnH8rkFfR.idy0MT1JZrquJxVBy3CVpSV.GpXc0&oas=AuZa28Bnhl7glqYyqXbjsg.." "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 2.0.50727)"
    172.16.6.144 - - [30/Dec/2010:13:32:51 +0530] "GET /OA_HTML/cabo/images/swan/errorl.gif HTTP/1.1" 304 0 0 "http://kmctapp2.kmc.com:8005/OA_HTML/RF.jsp?function_id=2014&resp_id=50670&resp_appl_id=7000&security_group_id=0&lang_code=US&params=f7B5hnH8rkFfR.idy0MT1JZrquJxVBy3CVpSV.GpXc0&oas=AuZa28Bnhl7glqYyqXbjsg.." "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 2.0.50727)"
    172.16.6.144 - - [30/Dec/2010:13:32:51 +0530] "GET /OA_HTML/cabo/images/swan/navBarUnderTopTabsBg.gif HTTP/1.1" 304 0 0 "http://kmctapp2.kmc.com:8005/OA_HTML/RF.jsp?function_id=2014&resp_id=50670&resp_appl_id=7000&security_group_id=0&lang_code=US&params=f7B5hnH8rkFfR.idy0MT1JZrquJxVBy3CVpSV.GpXc0&oas=AuZa28Bnhl7glqYyqXbjsg.." "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 2.0.50727)"
    172.16.6.144 - - [30/Dec/2010:13:32:51 +0530] "GET /OA_HTML/cabo/images/swan/footerBg.gif HTTP/1.1" 304 0 0 "http://kmctapp2.kmc.com:8005/OA_HTML/RF.jsp?function_id=2014&resp_id=50670&resp_appl_id=7000&security_group_id=0&lang_code=US&params=f7B5hnH8rkFfR.idy0MT1JZrquJxVBy3CVpSV.GpXc0&oas=AuZa28Bnhl7glqYyqXbjsg.." "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 2.0.50727)"

  • Ipod shuffle 4th gen charges plays but doesnt show up in windows or itunes

    Ipod shuffle 4th gen charges plays but doesnt show up in windows or itunes tried to check usb driver but computer says it is working properly

    Just disconnecting it without ejecting should not cause permanent damage.  It may cause data corruption, if iTunes was in the process of syncing at the time.  But iTunes should still see the shuffle and (maybe) tell you to Restore it.
    Is it possible that the "accident" damaged the USB cable? 
    Make sure you have done this on the shuffle since the problem occurred
    http://support.apple.com/kb/HT1655
    And you should also shut down (power off) the computer, if you have not already.
    Have you tried more than one USB port on the computer (not a hub if you use one)?  You can also try it with all other USB devices disconnected, except for standard keyboard and mouse (if normally used).
    If those things do not help, what version of Windows do you use?

  • I already partitioned my hdd via Bootcamp, supports downloaded, and windows is on an external USB. How can I start installing Windows now? at startup it doesnt show up as bootable device...

    hi,
    I am having a problem installing windows via bootcamp.
    I already partitioned my hdd via Bootcamp, downloaded and copied all the supports for windows, and windows is on an external USB as well. I had to stop the process the other day, so i shut down the computer. Now I am trying to boot from the USB, but I cant get to that point where the computer should restart and windows would start installing.
    . After restarting, holding command, it doesnt show up as bootable device.
    How shall I move forward? My disk is already partitioned, and if i start the whole process from the beginning, it wants me to partition again - although I already made a 100GB partition for windows.
    Please help me out.
    best,
    Zoltan

    So, here is what happened when I tried to make it.(sorry for quality, i had to take them by phone)
    At first when I opened it I saw that I could simply resolve it just by stretching the arrow at the bottom, giving the 100 GB back which I partitioned before via Bootcamp. At this point options was not available.
    I didnt do it because you mentioned earlier that it might be not designed to install windows.
    The second thing I tried I choose 1 Partition from Partition Layout. This time Options were available but I didnt see anything like GPT, the onces that are optionable are on the screenshot.
    What do you think how shall I move on? I was thinking to give it a shot with option 1, just stretch it back and try everything from scratch.

  • I just got my a new iphone 4 from O2. i plugged in my phone to my computer(windows 7). itunes doesnt open automatically. when i opened the itunes,its still not detecting my phone. on the phone it only shows the cable and itunes logo. please help

    I just got my a new iphone 4 from O2. i plugged in my phone to my computer(windows 7). itunes doesnt open automatically. when i opened the itunes,its still not detecting my phone. on the phone it only shows the cable and itunes logo. please help

    Did you try to remove all Apple related software and reinstall iTunes again? Removing iTunes, QuickTime, and other software components for Windows Vista and 7

  • Parts HTML form Expand All(Show button) option needs to customize.

    Hi,
    I am new to OAF.
    I have a requirement lin Oracle Sparse Management -> Parts HTML Request Form needs to Personalize/Customize for a business requirement.
    I have some qusetions like
    1. Can we customize or personalize the Show All Details or HideAll Details options in OA Forms ?
    2. If Yes, i have similar requirement like that,
    The personalization aim is show all details should be expanded by default.
    3. If No please provide why it can not be achevable.
    Here is business reuirement in parts Html, there are two regions in page 1. Header 2. Lines (Under Lines there are two table 1 is for Item information search and 2nd is for order details based on the item. This order details are hided under the Item information table one of the field button Show(which is like Expand All with symbol +))
    Page works like below.
    1. Header level validations are there for some fields like Resource, Need By Date.
    2. Once Valid from header can be entered the Item information search in Lines details Region, in the same table there is an option with + symbol (Show), which is like Expand All.
    will validate the item details and displays Order details respective to item. These results are hide under + Show button.
    If i want see the order details then i need to perform click action on the +Show button. (Requirement is this should be done automatically once i have entered the item in Line Details Region and needs to display the results).
    Please provide your seggestions to acheive this.
    Thanks,
    Narayana Swamy

    For this i have tried below steps to extend related VO of SHow button field.
    Below steps i have perforemed.
    1) Identified the right VO from about this page.
    ReqLineVO
    2) Exported the related standard VO to JDEV from Server.
    ReqLineVOImpl.java, ReqLineVORowImpl.java, ReqHeaderVO, RequirementAM, RequirementAMImpl.java
    3) Created a new VO which extends the standard VO and modified Showhide flag to ‘Y’
    HolxReqLineVO, HolxReqLineVOImpl.java, HolxReqLineVORowImpl.java
    4) Performed substitutions in Jdeveloper
    Project Properties -> Business Components -> substitutions
    5) Have created custom folder structure in server and moved custom VO files to server.
    \holx\oracle\apps\csp\portal\requirement\server\HolxReqLineVO.xml
    6) Performed JPX import
    1. Go to E:\jdev10g\jdevbin\oaext\bin
    2. Executed the below command
    jpximport E:\jdev10g\jdevbin\jdev\myprojects\OAProject4.jpx -username apps -password th1rdapps -dbconnection "(DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)
    (HOST=mycomapny.com)(PORT=1526))(CONNECT_DATA=(SID=TESTDB)))"
    7) After this bounced apache.
    8) While trying to open the parts html form, below exception is occurring.
    Error Page
    Exception Details.
    oracle.apps.fnd.framework.OAException: Could not load application module 'oracle.apps.csp.portal.requirement.server.RequirementAM'.
         at oracle.apps.fnd.framework.webui.OAJSPApplicationRegistry.registerApplicationModule(OAJSPApplicationRegistry.java:279)
         at oracle.apps.fnd.framework.webui.OAJSPApplicationRegistry.registerApplicationModule(OAJSPApplicationRegistry.java:78)
         at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:1306)
         at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:549)
         at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:437)
         at OA.jspService(_OA.java:212)
         at com.orionserver.http.OrionHttpJspPage.service(OrionHttpJspPage.java:59)
         at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:473)
         at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:594)
         at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:518)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
         at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:734)
         at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:391)
         at com.evermind.server.http.ServletRequestDispatcher.unprivileged_forward(ServletRequestDispatcher.java:280)
         at com.evermind.server.http.ServletRequestDispatcher.access$100(ServletRequestDispatcher.java:68)
         at com.evermind.server.http.ServletRequestDispatcher$2.oc4jRun(ServletRequestDispatcher.java:214)
         at oracle.oc4j.security.OC4JSecurity.doPrivileged(OC4JSecurity.java:284)
         at com.evermind.server.http.ServletRequestDispatcher.forward(ServletRequestDispatcher.java:219)
         at com.evermind.server.http.EvermindPageContext.forward(EvermindPageContext.java:395)
         at RF.jspService(_RF.java:225)
         at com.orionserver.http.OrionHttpJspPage.service(OrionHttpJspPage.java:59)
         at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:473)
         at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:594)
         at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:518)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
         at com.evermind.server.http.ResourceFilterChain.doFilter(ResourceFilterChain.java:64)
         at oracle.apps.jtf.base.session.ReleaseResFilter.doFilter(ReleaseResFilter.java:26)
         at com.evermind.server.http.EvermindFilterChain.doFilter(EvermindFilterChain.java:15)
         at oracle.apps.fnd.security.AppsServletFilter.doFilter(AppsServletFilter.java:318)
         at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:642)
         at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:391)
         at com.evermind.server.http.HttpRequestHandler.doProcessRequest(HttpRequestHandler.java:908)
         at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:458)
         at com.evermind.server.http.AJPRequestHandler.run(AJPRequestHandler.java:313)
         at com.evermind.server.http.AJPRequestHandler.run(AJPRequestHandler.java:199)
         at oracle.oc4j.network.ServerSocketReadHandler$SafeRunnable.run(ServerSocketReadHandler.java:260)
         at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:303)
         at java.lang.Thread.run(Thread.java:662)
    ## Detail 0 ##
    JBO-30003: The application pool (holdb01.dataintensity.comHOLDEV1524oracle.apps.csp.portal.requirement.server.RequirementAM) failed to checkout an application module due to the following exception:
    oracle.jbo.JboException: JBO-29000: Unexpected exception caught: oracle.jbo.JboException, msg=JBO-29000: Unexpected exception caught: oracle.jbo.InvalidOperException, msg=JBO-26036: Recursive substituion for holx.oracle.apps.csp.portal.requirement.server.HolxReqLineVO.
    ## Detail 0 ##
    oracle.jbo.JboException: JBO-29000: Unexpected exception caught: oracle.jbo.InvalidOperException, msg=JBO-26036: Recursive substituion for holx.oracle.apps.csp.portal.requirement.server.HolxReqLineVO.
    ## Detail 0 ##
    oracle.jbo.InvalidOperException: JBO-26036: Recursive substituion for holx.oracle.apps.csp.portal.requirement.server.HolxReqLineVO.
    JBO-30003: The application pool (holdb01.dataintensity.comHOLDEV1524oracle.apps.csp.portal.requirement.server.RequirementAM) failed to checkout an application module due to the following exception:
    oracle.jbo.JboException: JBO-29000: Unexpected exception caught: oracle.jbo.JboException, msg=JBO-29000: Unexpected exception caught: oracle.jbo.InvalidOperException, msg=JBO-26036: Recursive substituion for holx.oracle.apps.csp.portal.requirement.server.HolxReqLineVO.
    ## Detail 0 ##
    oracle.jbo.JboException: JBO-29000: Unexpected exception caught: oracle.jbo.InvalidOperException, msg=JBO-26036: Recursive substituion for holx.oracle.apps.csp.portal.requirement.server.HolxReqLineVO.
    ## Detail 0 ##
    oracle.jbo.InvalidOperException: JBO-26036: Recursive substituion for holx.oracle.apps.csp.portal.requirement.server.HolxReqLineVO.

  • Extend 'Show buttons/forms' button functionality to MSOs

    When I have a lot of MSO's (usually with only blank and image states) and a button to display/hide them, I have to make ALL the buttons on the page hide the other MSOs that I don't want to show, in case someone shows one MSO, then another and another. This would potentially end up with a lot of MSOs showing. If I add 'Go to state 1' as butotn functionality for all the MSO's to each button, I can ensure that showing one MSO ensures that only the visible state of that MSO is visible, all others are hidden. But it means for each page with say six MSOs, each button needs six handlers, so 36 handlers per page.
    But if the 'Show buttons/forms' functionality was extended to MSOs, it would be much easier to build and maintain lots of multiple MSOs - I can control which MSOs each button shows.
    Does that make sense? Much easier to show that type a description for!

    Hello!
    There are several possibilities how to call transaction:
    - You can call it as service (that is what you do when you test it from SICF)
    - You can call it through service (or alias) WEBGUI (not using service for the specific transaction to call it)
    If you are calling it through WEBGUI then parameter ~SINGLETRANSACTION should be added to service (or alias) of WEBGUI. And there should be added also Log Off URL (in SICF). At this case it should navigate back to the URL which is specified in SICF.
    Hope this helps!
    Best regards,
    Rorijs

  • Where is the Show button in the itunes window?

    I'm trying to add songs from my library on my laptop to my parents computer. I've already turned on home sharing. But in the helpful tips it says to use the show button at the bottom of the itunes window and I cannot find it.

    Welcome to the Apple Community Gophergirl22.
    Are you sure you have set up home sharing and not sharing.

  • Putting an applet window inside a dialog box

    I am relatively new to Java, and have recently been introduced to swing and applets. Is it possible to put an applet window inside a dialog box? If this is a dumb question, I apologize in advance.
    Thank you,
    Jonathan

    As camickr pointed out, you cannot do this directly. Depending on what you want, you could do one of the following:
    Start the applet and let the applet create a JFrame in wich the rest of the applet's operations can be displayed
    Run the applet in Sun's appletviewer (note that this won't work in browsers).

  • My menu button in firefox doesnt show the set up sync account option

    I saw the video, for which im trying to set up an account for my ipod touch, went to the menu button as they indicate and it doesnt show me the option to set up a sync account. No where to be found.

    I'm afraid you can't get your data from the server without the original recovery key and it sounds like that got wiped out when you reformatted your hard drive. Here is the documentation on getting a copy of your recovery key (sounds like this isn't much use in your case) https://support.mozilla.org/en-US/kb/how-do-i-manage-my-firefox-sync-account#w_where-can-i-find-my-recovery-key
    I filed a bug about this issue https://bugzilla.mozilla.org/show_bug.cgi?id=727832
    I'm sorry I'm not able to help you more.

Maybe you are looking for

  • How to populate Java Beans List from the DB ?

    Hi, I have three tables called State,District and College. Assume, State table has fields statid,statename,statedescr District table has fields districtId,districtname,districtdescr and stateid College table has fields collegeid,collegename,collegede

  • Logo in Smartform.

    Hello Everybody, I am supposed to load the logo into the form based on the input given by the user.i,e. i should the take the name of the logo to be put in the SMARTFORM from the text box in the selection screeen.Could some one tell me as to how this

  • Adapter Engine not visible in SLD, RWB and Directory

    Hi all, I have problem with the registration of the adapter engine in my sld. When I search for it in Technical Systems doesn´t appears. I have implemented SAP notes 764176 and 804124 and it doesn´t work. My system is SAP PI 7.0 and the SLD is config

  • Submit button/interactive pdf

    I've created an interactive form with a submit button. When I open the pdf in Reader and hit submit, it looks like it it going to send and then I get a popup that says "Authentication failed. Please verify your username and password." I currently use

  • Photo booth effects with Imovie HD?

    I was having a ball with the weird effects of phone booth and thought it would be fun to have those real time effects in Imovie HD so I can record a short video clip instead of just a simple snapshot. Is this possible?