Tagid attribute in netui:textbox in jsp is not reflecting

Hi,
I included this netui tag in my jsp
<netui:textBox dataSource="{actionForm.custId}" tagId="custTagId"></netui:textBox>
But attribtue "tagid" doesnot seems to be reflecting in the html pages.
thanks,
shashi

Tanya,
This works well in a pageFlow. But it in the context of a portal it throws a JavaScript
error saying that document[getNetuiTagName("myForm")][getNetuiTagName("age")]
is null.
Thanks,
Anant
"tanya" <[email protected]> wrote:
>
I'm not sure what you mean by "reflecting", but if you're referring to
accessing
it via javascript, see the following:
http://edocs.bea.com/workshop/docs81/doc/en/workshop/guide/netui/guide/conValidatingUserInput.html
You'll end up having to do something like this:
<netui:html>
<netui:textBox tagId="age" dataSource="{actionForm.age}" onBlur="isValidAge();"/>
</netui:html>
And this would be the JavaScript function isValidAge:
function isValidAge() {
if(document[getNetuiTagName("myForm")][getNetuiTagName("age")].value
<= 0)
alert('Wrong Age');
-Tanya
"shashishekar" <[email protected]> wrote:
Hi,
I included this netui tag in my jsp
<netui:textBox dataSource="{actionForm.custId}" tagId="custTagId"></netui:textBox>
But attribtue "tagid" doesnot seems to be reflecting in the html pages.
thanks,
shashi

Similar Messages

  • "No bean found under attribute key" exception when a JSP is not accessed

    HI,
    We are using weblogic 7.1 SP6, Oblix and TRC struts in our application. During normal access to various pages system works fine. When the application is not accessed for 30 minutes system displays session expired exception. But some time when a page is not accessed for some time, say 15 - 20 minutes and user clicks any link system displays a exception dump in the screen. The exception displays for pages with track changes. The exception starts with following line
    [ServletException in:/jsp/include/Header.jsp] No bean found under attribute key HomepageFormBean' javax.servlet.jsp.JspException: No bean bound under attribute key HomePageFormBean at org.apache.struts.taglib.logic.CompareTagBase.condition(CompareTagBase.java:221) at org.apache.struts.taglib.logic.EqualTag.condition(EqualTag.java:90)
    After closing the window and tried to access the same page then the system works fine. The above exception is intermittent.
    Any help is highly appreciated.
    Thanks,
    K.Pushparaj

    Hi dear use this code i modified
    <logic:iterate id="lstDelNotificationData" name="institutionHomeForm" property="delNotification_data" indexId="i" >
    <table cellpadding="0" cellspacing="0" width="320" border="0">
    <tr>
    <td valign="top"><img src="/images/bullet2.gif" alt=" "></td>
    <td>
    "sm"> Your FYE <bean:write name="lstDelNotificationData" property="ins_fye"/> Annual ......is
    Now u will not get bean problem

  • Changes made in jsp are not reflected

    webpages are not reflected after modifying jsp pages
    what i need to do??
    thanks in advance

    Hi
    Thanks for your reply,
    I am using CQ 5.5 and was installed service pack 2.
    1. We make package from SVN or through maven build to the CQ dev server.
    2. JSP changes perfect but /var/classes java files contains old code(i.e new JSP file complitation is not happening )
    3. Only when we restart server, /var/classes reflecting with new code other /var/classes have old code only.
    What is best procedure to re-compile JSP with out Restart server.

  • Changes in jsp page not reflecting

    Hi,
    I have a requirement where I have to customize the self registration page in OIM, i.e.
    when a user enters uid, it should be checked for its availablity, that is if the user id is already present in OIM then we may suggest him a set a user ids from which he can select.
    For this, I am planning to have a button "Check UID availability" next to uid text field and then on clicking that button we may proceed with our functionality.
    To achieve the very first step, i.e. creating the button, i edited /tiles/tjspSelfRegistrationTiles.jsp and then created and replaced the old webapp.war file with the new one and then run patch_jboss.cmd file which builds the file successfully.
    But, the problem I am facing is that any changes made to this jsp are not being reflected.
    Any pointers to reflect the changes made in jsp would be helpful.

    Well, thats a strange case with JBoss. I never find these JSP's on the deploy directory. The approach which I follow in such cases is as follows:
    1) Take a back-up copy of XellerateFull.ear file from <OIM_HOME>\xellerate directory.
    2) Extract the contents fo this file to any temporary directory. This will contain a war file xlWebApp.war
    3) Extract the content of this file as well.
    4) Now you will be able to see all the JSP folders and struts xml etc.
    5) Update the required JSP.
    6) Bundle the xlWebApp.war file again.
    7) Bundle the XellerateFull.ear file again.
    8) Now since you have a complete ear file. Directly copy this to JBoss deploy directory. Overwrite the existing file:
    <JBossHome>\server\default\deploy\
    9) Restart the server.
    Now all the files would be visible in the directory location as mentioned by you.
    Thanks
    Sunny

  • Logon.jsp changes not reflecting

    i am changing logon.jsp and redeploying infoview but changes are not reflecting..Any help...
    waht is the process to redeply after changing in logon.jsp

    Hi Amita,
    Are you trying to do Modifications under WAR files in Business Objects folder and trying to deploy it?
    Did you try changing logon.jsp under InfoView folder under Tomcat?
    Here is the document which has more information on WDEPLOY with examples
    http://www.odesia.com/docs/BOXI_r4_new_release_docs/Administrator%20Guide.pdf

  • JSP dosn't reflect changes.

    Hello.
    I had to change the system date of my machine to provoke certain condition to trigger ( ie. send an e-mail when the instance is about to expire )
    The problem I'm facing right now is, no matter what I do, the new changes in my custom jsp are not reflected.
    If I delete the jsp, the correct 404 error is presented, but if I make a change on the jsp ( like deleting all the content ) the old version is shown.
    It seems to me the tool validates it has a newer version and discard my changes ( ie jul 29 changes are newer than today's jul 21 )
    How do I clear the precompiled jsp so it take my changes. I have tried clean up the project. I have performed "touch" on all the files inside the project.
    Is there something I can delete ( like project/system/xyz? or project/build ) or anything else? This problem have consumed about 8 hrs by now.
    Thank you.
    I'm using albpm studio 6.0.4

    If this is a problem you are facing in studio environment then possibly you are making changes to <bpmProjectFolder>\webRoot\customJSP. Your changes will be reflected if you republish the project. When you publish all your custom pages are copied to <studioInstallationFolder>\studio\webapps\portal\webRoot\customJSP. If you want to test out changes without publishing everytime then you should change directly in this location.
    Hope this helps!
    - MK

  • Netui:textbox default value

    Hi,
    I am trying to use the following code as per the sample given in the help doc. But everything is working fine except the defaultValue attribute. I want to dynamically create 5 textboxes with defaultValue and use form bean while submitting the same. The code is as follows,
    <netui-data:repeater dataSource="{actionForm.test}">
    <netui:textBox defaultValue="123" dataSource="{actionForm.test}" />
    </netui-data:repeater>
    Here test is the array in the form. Instead of default value, I am getting the array reference value as the default value like [Ljava.lang.String;@18d551d is displayed. Anyone could help me out.
    Please Reply immediately.
    Thanks,
    Bala.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

    hi,
    I just used {container.item} as datasource and solved
    the error. Anyway thanks for ur response.
    Thanks and Regards,
    Bala.I had a similar problem and this fixed it, thanks.
    But, now I have a different problem.
    If I initialize the array in my form and then display the jsp, the array is displayed with individual textboxes as desired.
    But, when I submit the form I get an index out of bounds exception.
    I'm assuming that it is trying to set the submitted values back into the array which has been reset to a zero length array, and this is causing the exception.
    The workshop automatically put this code in my Form when I added the array member (myList):
    public String[] getMyList()
    // For data binding to be able to post data back, complex types and
    // arrays must be initialized to be non-null.
    if(this.myList== null || this.myList.length == 0)
    this.myList= new String[1];
    return this.myList;
    The getMyList() method appears to be called for every textbox that gets submitted (each array element).
    How do I know how many elements to make my array in getMyList() since the length could vary?
    Jeff

  • In Jsp TagLib how can I get the Attribute value (like JavaBean) in jsp

    Dear Friends,
    TagLib how can I get the Attribute value (like JavaBean) in jsp .
    I do this thing.
    public void setPageContext(PageContext p) {
              pc = p;
    pc.setAttribute("id", new String("1") );
              pc.setAttribute("first_name",new String("Siddharth")); //,pc.SESSION_SCOPE);
              pc.setAttribute("last_name", new String("singh"));
    but in Jsp
    <td>
    <%=pageContext.getAttribute("first_name"); %>
    cause null is returing.
    Pls HELP me
    with regards
    Siddharth Singh

    First, there is no need to pass in the page context to the tag. It already is present. How you get to it depends on what type of tag:
    Using [url http://java.sun.com/j2ee/1.4/docs/api/javax/servlet/jsp/tagext/SimpleTagSupport.html]SimpleTagSupport
    public class MyTag extends SimpleTagSupport
      public void doTag()
        PageContext pc = (PageContext)getJspContext();
        pc.setAttribute("first_name", "Siddharth");
        pc.setAttribute("last_name", "Singh");
        pc.setAttribute("id", "1");
    }Using [url http://java.sun.com/j2ee/1.4/docs/api/javax/servlet/jsp/tagext/TagSupport.html]TagSupport or it's subclass [url http://java.sun.com/j2ee/1.4/docs/api/javax/servlet/jsp/tagext/BodyTagSupport.html]BodyTagSupport the page context is aleady declared as an implicit object:
    public class MyTag extends TagSupport
      public void doStartTag()
        pageContext.setAttribute("first_name", "Siddharth");
        pageContext.setAttribute("last_name", "Singh");
        pageContext.setAttribute("id", "1");
    }In each case, this sort of thing should work:
    <mytags:MyTag />
    <%= pageContext.getAttribute("first_name") %>I

  • Using action attribute of netui:button in WSRP

    In WSRP When I use action attribute of <b>netui:button</b> tag to override the action attribute of the <b>netui:form</b> tag but the button doesnt override the action attribute of netui:form tag. Please tell me the reson and solution for this problem.

    Please attach a sample repro case.
    Subbu
    Rajiv Gandhi wrote:
    In WSRP When I use action attribute of <b>netui:button</b> tag to override the action attribute of the <b>netui:form</b> tag but the button doesnt override the action attribute of netui:form tag. Please tell me the reson and solution for this problem.

  • How to put data into textbox using JSP

    How can I put data into a textbox using JSP?
    This code prints to a html page but I want it inside an text area:
    // Print out the type and file name of each row.
            while(ftplrs.next())
                int type = ftplrs.getType();
                if(type == FtpListResult.DIRECTORY)
                    out.print("DIR\t");
                else if(type == FtpListResult.FILE)
                    out.print("FILE\t");
                else if(type == FtpListResult.LINK)
                    out.print("LINK\t");
                else if(type == FtpListResult.OTHERS)
                    out.print("OTHER\t");
                out.print(ftplrs.getName() +"<br>");
            }I have tried with the code below:
    <textarea name="showDirectoryContent" rows="10" cols="70">
    <%
           // Print out the type and file name of each row.
            while(ftplrs.next())
                int type = ftplrs.getType();
                if(type == FtpListResult.DIRECTORY)
    %>
                    <%= "DIR\t" %>
    <%            else if(type == FtpListResult.FILE) %>
                    <%= "FILE\t" %>
    <%            else if(type == FtpListResult.LINK)  %>
                    <%= "LINK\t" %>
    <%            else if(type == FtpListResult.OTHERS) %>
                    <%= "OTHER\t" %>
    <%            String temp = ftplrs.getName() +"<br>");
                  <%= temp > <br>
    %>
    </textarea>I get the following error:
    Location: /myJSPs/jsp/grid-portal-project/processviewfiles_dir.jsp
    Internal Servlet Error:
    org.apache.jasper.JasperException: Unable to compile Note: sun.tools.javac.Main has been deprecated.
    C:\tomcat\jakarta-tomcat-3.3.1\work\DEFAULT\myJSPs\jsp\grid_0002dportal_0002dproject\processviewfiles_dir_3.java:151: 'else' without 'if'.
    else if(type == FtpListResult.FILE)
    ^
    C:\tomcat\jakarta-tomcat-3.3.1\work\DEFAULT\myJSPs\jsp\grid_0002dportal_0002dproject\processviewfiles_dir_3.java:165: 'else' without 'if'.
    else if(type == FtpListResult.LINK)
    ^
    C:\tomcat\jakarta-tomcat-3.3.1\work\DEFAULT\myJSPs\jsp\grid_0002dportal_0002dproject\processviewfiles_dir_3.java:179: 'else' without 'if'.
    else if(type == FtpListResult.OTHERS)
    ^
    C:\tomcat\jakarta-tomcat-3.3.1\work\DEFAULT\myJSPs\jsp\grid_0002dportal_0002dproject\processviewfiles_dir_3.java:193: ';' expected.
    String temp = ftplrs.getName() +"");
    ^
    4 errors, 1 warning
         at org.apache.tomcat.facade.JasperLiaison.javac(JspInterceptor.java:898)
         at org.apache.tomcat.facade.JasperLiaison.processJspFile(JspInterceptor.java:733)
         at org.apache.tomcat.facade.JspInterceptor.requestMap(JspInterceptor.java:506)
         at org.apache.tomcat.core.ContextManager.processRequest(ContextManager.java:968)
         at org.apache.tomcat.core.ContextManager.internalService(ContextManager.java:875)
         at org.apache.tomcat.core.ContextManager.service(ContextManager.java:833)
         at org.apache.tomcat.modules.server.Http10Interceptor.processConnection(Http10Interceptor.java:176)
         at org.apache.tomcat.util.net.TcpWorkerThread.runIt(PoolTcpEndpoint.java:494)
         at org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:516)
         at java.lang.Thread.run(Thread.java:536)
    Please help???

    Yes indeed this works:
    <textarea name="showDirectoryContent" rows="10" cols="70">
    <%
           // Print out the type and file name of each row.
            while(ftplrs.next())
                int type = ftplrs.getType();
                if(type == FtpListResult.DIRECTORY)
    {%>
                    <%= "DIR\t" %>
    <%}            else if(type == FtpListResult.FILE)  {%>
                    <%= "FILE\t" %>
    <%}            else if(type == FtpListResult.LINK)  {%>
                    <%= "LINK\t" %>
    <%}            else if(type == FtpListResult.OTHERS) %>
                    <%= "OTHER\t" %>            
                  <%= ftplrs.getName() %>
    <%
    %>

  • OC4J JSP Debugging not working for all the jsps

    Hi,
    Initially I was not able to debug jsps using Eclipse and OC4J. The jsp debugging started working once I made the below changes:
    1) global-web-application.xml is modified
    Changed the attribute development="true" in orion-web-app
    Added the below init param for the JspServlet
    <init-param>
    <param-name>debug</param-name>
    <param-value>class</param-value>
    </init-param>
    If the jsps are present in a sub directory under the webcontent none of the breakpoints are working. I am still be able to view the jsp pages on the browser.
    Tools: Oracle 10g Application Server Standalone version(10.1.3.5.0), JDK5, Windows XP, Eclipse Indigo
    Project Structure:
    Test (Eclipse Dynamic Web Project)
    -WebContent
    Sample.jsp ( Breakpoints are working)
    -subF (Folder)
    SubSample.jsp (Breakpoints are not working)
    -WEB-INF
    web.xml
    Debugging worked for http://localhost:8888/Test/Sample.jsp
    Debugging not working for http://localhost:8888/Test/subF/SubSample.jsp
    Any help is highly appreciated.
    Regards
    Danny

    This tells there is not enough main memory (not disk space) for the program to run.
    - You can look the dump in ST22, it will have suggestions on increasing the ROLLAREA??, you can forward that to Basis.
    - Most likely you will not have any more memory to assign so the above may not be feasible. Try to rework your query so it works with less data.

  • The requested resource (/DBTest/SearchInventory.jsp) is not available.

    Hi,
    I have a search screen (jsp page) which has four fields to base the search on. Once the "Search" button is clicked, i am going to a servlet which does a select based on the search criteria, and stores the result in a ResultSet object. I then use the setAttribute method to store the result set in a bean. Here is the code for what i've just described:
    rs=stmt.executeQuery(QueryStr); //get result set
    HttpSession session=req.getSession(true);//create session var
    session.setAttribute("s_resbean",rs);//set bean attribute
    After this is set, i want to forward/redirect (whatever works...nothin does right now...the reason for this post.) back to the search screen(jsp page), and display the query ResultSet in the bottom half of the screen. I use the following code to do this:
    String url="/DBTest/SearchInventory.jsp";
    RequestDispatcher dispatcher=getServletContext().getRequestDispatcher(url);
    dispatcher.forward(req,res);
    Unfortunately, this gives me the following error:
    The requested resource (/DBTest/SearchInventory.jsp) is not available.
    Why would this be happening?? Is there another way of doing this? I'm just trying to follow the example in chp.15 of the free coreservlets pdf...
    Thanks in advance,
    Aditya.
    P.S. Here is the code for my bean...don't know if it's needed...
    public class SearchBean extends HttpServlet{
         private int searchFlag=0;
         private ResultSet searchRS;
         public SearchBean(){
         public int getSearchFlag(){
              return searchFlag;
         public ResultSet getSearchRS(){
              return searchRS;
         public void setSearchRS(ResultSet rs){
              this.searchRS=rs;
         public void setSearchFlag(){
              this.searchFlag=1;
    }

    I assume DBTest is the context root for your webapp.
    ServletRequest.getRequestDispatcher(String url) is looking for a url relative to the context root. Therefore if my assumption is correct you want to use the url /SearchInventory.jsp, removing the DBTest.
    HTH.

  • JSP doesn't reflect database changes

    I have a JSP that is supposed to access a database, retrieve a list of goals, and display them. (Yes, I've recently been informed that this violates the MVC model, but I taught myself and I'm on a deadline, so please try to overlook that for the moment.) At the bottom of this page, there is a button that the user can press to add a goal to the list. This leads to a second JSP that accepts information about the goal. When this JSP is submitted, it calls a servlet that adds the goal, then returns to the first JSP (via PostMethod in Jakarta Commons) which should show all previous goals and the newly added goal. But it doesn't.
    I know that's a lot to follow, so let me try to diagram it:
    JSP #1 (shows goals) -> (select button to add goal) - >JSP #2 (accepts information on new goal to be added) -> (submit new goal) -> Servlet (adds goal to database) -> (return to JSP #1 via Jakarta Commons PostMethod; new goal should show with previous goals, but does not)
    I first thought it might be a page caching issue, but I've used Firefox's "Clear Private Data" function at every step of the process, and I get the same results. When I open the database, the new goal shows up, but the JSP does not display it. I've had JSP #1 display the query it sends to the database; I copied it and ran it against the database, and the new goal was returned with the previous ones. Anyone have a suggestion as to what might be the issue?

    OK. I spent all day moving the business logic out of the JSP. The new progression goes like this:
    Servlet #1 (loads goals; passes them to JSP #1 via request attributes) -> JSP #1 (displays goals; works fine on first access) -> (click button to add goal) -> JSP #2 (accepts new goal data) -> Servlet #2 (adds goal to database) -> Servlet #1 (loads goals; passes them to JSP #1) -> JSP #1 (displays goal; just-added goal does not display)
    Any further ideas? I can post code, but I prefer to let folks tell me what they want to see before I dump loads of code into a forum like this.

  • Updations done in valueChangelistener not reflected in jsp page.

    I want to update most of my backing bean properties in a value change listener. But the changes made in valueChangeListener merthod are not reflected in my jsp page. Can anyone explain how to do this?
    Edited by: Ashok_431 on Aug 19, 2008 10:52 AM

    Ashok_431 wrote:
    What is significance of immediate attribute.It shifts conversion and validation to the 2nd JSF phase.
    Check this article for an explanation of the JSF lifecycle: [http://balusc.blogspot.com/2006/09/debug-jsf-lifecycle.html].
    Check this article for the use of the immediate attribute: [http://balusc.blogspot.com/2007/10/populate-child-menus.html].

  • The window title attribute for the page layout region has not been set

    Hi, I am a newbie to OA Framework extensions. Could you please advise me how to get rid of below error ?
    "The window title attribute for the page layout region has not been set. This attribute value will be used for the browser window title and should be set according to the UI standards. A default window title will be displayed for all such pages that violate the standards. Action: Set the window title or title attribute for the page layout region. The title attribute is used as a secondary source for the window title if the window title is missing."
    My requirement is to extend a VO and almost done with that but when i run the PG ( HomePG.xml ) file to ensure everything is fine , The target page is being displayed with above error. Just to let you know that i have already set the Titile and Window Title attributes for the HomePG.xml region i.e PageLayoutRN.
    One more thing i would like to share is that i was set the Window Title to 'Oracle Applications Home Page' , but target page name is being displayed as 'Oracle Applications'.
    Any suggestions ??
    Thanks.

    Hi all, I now getting below error when i click on notification from notification page ( AdvancWorklistPG.xml ) which should have taken me to the notification details page ( NotifDetailsPG ). Please note that i am running the page from Jdeveloper.
    Exception Details.
    oracle.apps.fnd.framework.OAException: oracle.jbo.SQLStmtException: JBO-27122: SQL error during statement preparation. Statement: SELECT NtfEO.NOTIFICATION_ID,
    NtfEO.RECIPIENT_ROLE,
    NtfEO.BEGIN_DATE AS BEGIN_DATE_F,
    NtfEO.DUE_DATE AS DUE_DATE_F,
    DECODE(NtfEO.MORE_INFO_ROLE, NULL, NtfEO.SUBJECT, FND_MESSAGE.GET_STRING('FND','FND_MORE_INFO_REQUESTED')||' '||NtfEO.SUBJECT) AS SUBJECT,
    NtfEO.PRIORITY AS PRIORITY_F,
    NtfEO.STATUS,
    NtfEO.END_DATE AS END_DATE_F,
    NtfEO.USER_COMMENT,
    NtfEO.MORE_INFO_ROLE,
    NtfEO.FROM_USER,
    NtfEO.FROM_ROLE,
    NtfEO.TO_USER
    FROM WF_NOTIFICATIONS NtfEO
    WHERE NtfEO.NOTIFICATION_ID = ?
         at oracle.apps.fnd.framework.OAException.wrapperException(OAException.java:888)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequest(OAWebBeanHelper.java:597)
         at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.processRequest(OAWebBeanContainerHelper.java:247)
         at oracle.apps.fnd.framework.webui.beans.nav.OAPageButtonBarBean.processRequest(OAPageButtonBarBean.java:351)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequestChildren(OAWebBeanHelper.java:953)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequestChildren(OAWebBeanHelper.java:899)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequest(OAWebBeanHelper.java:640)
         at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.processRequest(OAWebBeanContainerHelper.java:247)
         at oracle.apps.fnd.framework.webui.OAPageLayoutHelper.processRequest(OAPageLayoutHelper.java:1095)
         at oracle.apps.fnd.framework.webui.beans.layout.OAPageLayoutBean.processRequest(OAPageLayoutBean.java:1569)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequestChildren(OAWebBeanHelper.java:932)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequestChildren(OAWebBeanHelper.java:899)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequest(OAWebBeanHelper.java:640)
         at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.processRequest(OAWebBeanContainerHelper.java:247)
         at oracle.apps.fnd.framework.webui.beans.form.OAFormBean.processRequest(OAFormBean.java:385)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequestChildren(OAWebBeanHelper.java:932)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequestChildren(OAWebBeanHelper.java:899)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequest(OAWebBeanHelper.java:640)
         at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.processRequest(OAWebBeanContainerHelper.java:247)
         at oracle.apps.fnd.framework.webui.beans.OABodyBean.processRequest(OABodyBean.java:353)
         at oracle.apps.fnd.framework.webui.OAPageBean.processRequest(OAPageBean.java:2298)
         at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:1711)
         at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:497)
         at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:418)
         at OA.jspService(OA.jsp:40)
         at com.orionserver.http.OrionHttpJspPage.service(OrionHttpJspPage.java:56)
         at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:317)
         at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:465)
         at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:379)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:727)
         at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:306)
         at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:767)
         at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:259)
         at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:106)
         at EDU.oswego.cs.dl.util.concurrent.PooledExecutor$Worker.run(PooledExecutor.java:803)
         at java.lang.Thread.run(Thread.java:534)
    ## Detail 0 ##
    java.sql.SQLException: ORA-01008: not all variables bound

Maybe you are looking for

  • Refresh has effect on clone but not on object itself

    Hi, (Using TopLink 9.0.3 with an Oracle Database) I see some mystifying behaviour when I insert an object, refresh it because I know the database performs some changes on the data during insert from a database trigger and then inspect the refreshed o

  • Have a suggestion for a budget graphics PC?

    Hello, My wife needs a new PC for running Illustrator/Photoshop CS6.  She is still on her XP machine. Looking for turnkey PC solutions.  What budget range is realistic? Should Dell be considered? Thanks in advance, JT

  • Can't get iCal alarm to work

    I've tried everything that I've read ... but I can't get the alarm to work - Does anyone else have this problem OR solution? Thx in advance!

  • Weird problems with ipod classic 80gb, hdd's gone?

    Hi, hope u could help me. Excuse my not fluent english, I'm not british/american so I will try to make myself as clear as possible. Thanks First of all, got iPod classic 80gb, systems Vista/XP, was trying to cope with this problem on both computers,

  • Dbms_utility.get_time

    Hi, I am running a procedure, but i am not able to find out the time taking in each step of the procedure as it is taking huge time to execute.. I got a point that through dbms_utility.get_time, one can trace out, the time taking for each step inside