Assertion failed when returning to a jsp

Hi,
I am using JSF Final and Struts-faces (nightly). This error is bizarre because it's an error on the view tag.
I'm getting this error message when something fails in the resulting action and I send it back to the same jsp using getInputForward():
javax.faces.FacesException: Assertion Failed
     com.sun.faces.util.Util.doAssert(Util.java:1300)
     com.sun.faces.taglib.jsf_core.ViewTag.getComponentType(ViewTag.java:236)
     javax.faces.webapp.UIComponentTag.createComponent(UIComponentTag.java:1022)
     javax.faces.webapp.UIComponentTag.createChild(UIComponentTag.java:1045)
     javax.faces.webapp.UIComponentTag.findComponent(UIComponentTag.java:732)
     javax.faces.webapp.UIComponentTag.doStartTag(UIComponentTag.java:425)
     com.sun.faces.taglib.jsf_core.ViewTag.doStartTag(ViewTag.java:105)
     org.apache.jsp.jsp.timesheet.timeSheetEntry_jsp._jspx_meth_f_view_0(timeSheetEntry_jsp.java:280)
...my jsp is:
<%@ taglib uri="http://java.sun.com/jsf/html" prefix="h" %>
<%@ taglib uri="http://java.sun.com/jsf/core" prefix="f" %>
<%@ taglib uri="http://jakarta.apache.org/struts/tags-faces" prefix="s" %>
<%@ taglib prefix="c" uri="http://java.sun.com/jstl/core" %>
<html>
<body>
<table>
    <tr>
        <!-- HEADER -->
        <td colspan='2' class="pageHeader">
            <%@ include file="../header.jsp" %>
        </td>
    </tr>
    <tr>
        <!-- MENU -->
        <td class="menu">
            <%@include file="../menu.jsp"%>
        </td>
        <!-- Content -->
        <td class="main">
            <f:view>       
            <s:html locale="true">
            <head>
                <!-- Page Title -->
                <title>Time Sheet Entry</title>
                <s:base/>
                <s:stylesheet path="/css/stylesheet.css"/>
            </head>
       <s:form action="/timesheet/timeSheetEntryForm" id="thisForm">
          <h:panelGrid
                   id="switchDays"
                   columns="3"
                styleClass="form-background"
             columnClasses="summary-left,summary-center,summary-right">
                    <h:panelGroup>
                    <h:outputText value="Number:"/>
                    <h:outputText id="employeeNum" value="#{TimeSheetForm.timeSheet.employee.number}">
                    </h:outputText>
                    </h:panelGroup>
                    <h:panelGroup>
                    <h:outputText value="Name:"/>
                    <h:outputText value="#{TimeSheetForm.timeSheet.employee.name}"/>                                           
                    </h:panelGroup>
                    <h:panelGroup>
                    <h:outputText value="Date:"/>
                    <h:outputText id="date" value="#{TimeSheetForm.timeSheet.date}">
                        <f:convertDateTime dateStyle="full"/>
                    </h:outputText>                   
                    </h:panelGroup>
                    <h:panelGroup>
                    <h:outputText value="Total:"/>
                    <h:outputText id="totalTime" value="#{TimeSheetForm.totalTime}">                       
                    </h:outputText>
                    </h:panelGroup>
                    <h:panelGroup>
                    <h:outputText value="Status Is Currently:"/>
                    <h:outputText id="status" value="#{TimeSheetForm.timeSheet.timeSheetStatus.status}"/>                                           
                    </h:panelGroup>
                    <h:panelGroup>
                    <h:outputText value="Status Will Change To:"/>
                    <h:selectOneMenu id="newStatus" value="#{TimeSheetForm.timeSheet.timeSheetStatus.id}">                       
                       <f:selectItems value="#{TimeSheetForm.status}"/>
                    </h:selectOneMenu>
                    </h:panelGroup>
                    <h:outputText value=" "/>
                    <h:outputText value=" "/>
          </h:panelGrid>
        <c:if test = "${employee.id == TimeSheetForm.timeSheet.employee.id}">
          <h:panelGrid id="days"
           columns="7">
            <h:outputLink id="sunday" value="/tss/faces/timesheet/timeSheetEntry.do?dayOfWeek=1">
                <f:verbatim>Sunday</f:verbatim>
            </h:outputLink>
            <h:outputLink id="monday" value="/tss/faces/timesheet/timeSheetEntry.do?dayOfWeek=2">
                <f:verbatim>Monday</f:verbatim>
            </h:outputLink>
            <h:outputLink id="tuesday" value="/tss/faces/timesheet/timeSheetEntry.do?dayOfWeek=3">
                <f:verbatim>Tuesday</f:verbatim>
            </h:outputLink>
            <h:outputLink id="wednesday" value="/tss/faces/timesheet/timeSheetEntry.do?dayOfWeek=4">
                <f:verbatim>Wednesday</f:verbatim>
            </h:outputLink>
            <h:outputLink id="thursday" value="/tss/faces/timesheet/timeSheetEntry.do?dayOfWeek=5">
                <f:verbatim>Thursday</f:verbatim>
            </h:outputLink>
            <h:outputLink id="friday" value="/tss/faces/timesheet/timeSheetEntry.do?dayOfWeek=6">
                <f:verbatim>Friday</f:verbatim>
            </h:outputLink>
            <h:outputLink id="saturday" value="/tss/faces/timesheet/timeSheetEntry.do?dayOfWeek=7">
                <f:verbatim>Saturday</f:verbatim>
            </h:outputLink>
          </h:panelGrid>
          </c:if>
            <h:outputLink value="mailto:[email protected]">
                <f:verbatim>Suggestion or Comment or Bug Report</f:verbatim>
            </h:outputLink>
          <s:message key="time.sheet.motd"/>
          <h:dataTable
            var="entry"
            value="#{TimeSheetForm.timeEntry}"
            styleClass="form-background"
            headerClass="form-header"
            columnClasses="form-field">
            <h:column>
              <f:facet name="header">
                <h:outputText value="Start Time"/>
             </f:facet>
              <h:inputText size="4" maxlength="4" value="#{entry.startTime}">
              </h:inputText>
            </h:column>
            <h:column>
              <f:facet name="header">
                <h:outputText value="End Time"/>
             </f:facet>
              <h:inputText size="4" maxlength="4" value="#{entry.endTime}">
              </h:inputText>
            </h:column>
            <h:column>
              <f:facet name="header">
                <h:outputText value="Task Code"/>
             </f:facet>
              <h:inputText size="2" maxlength="2" value="#{entry.task.id}">
              </h:inputText>
            </h:column>
            <h:column>
              <f:facet name="header">
                <h:outputText value=""/>
             </f:facet>
              <h:outputText value="#{entry.task.description}"/>
            </h:column>
            <h:column>
              <f:facet name="header">
                <h:outputText value="Study Number"/>
             </f:facet>
              <h:inputText size="6" maxlength="6" value="#{entry.study.number}">
<%----%>
                <f:convertNumber pattern="000000"/>
              </h:inputText>
            </h:column>             
            <h:column>
              <f:facet name="header">
                <h:outputText value=""/>
             </f:facet>
              <h:outputText value="#{entry.study.description}"/>
            </h:column>
            <h:column>
              <f:facet name="header">
                <h:outputText value="Version Status"/>
             </f:facet>
              <h:inputText size="2" maxlength="2" value="#{entry.versionStatus.code}">
              </h:inputText>
            </h:column>   
            <h:column>
              <f:facet name="header">
                <h:outputText value="Version"/>
             </f:facet>
              <h:outputText value="#{entry.versionStatus.version.name}"/>
            </h:column>
            <h:column>
              <f:facet name="header">
                <h:outputText value=""/>
             </f:facet>
              <h:outputText value="#{entry.versionStatus.description}"/>
            </h:column>
            <h:column>
              <f:facet name="header">
                <h:outputText value="Cases"/>
             </f:facet>
              <h:inputText size="2" maxlength="2" value="#{entry.cases}">
              </h:inputText>
            </h:column>             
            </h:dataTable>
            <h:panelGrid
                   columns="2"               
                   columnClasses="button">               
                <h:commandButton id="submit" action="success" value="Submit"/>               
                <h:commandButton id="back" action="back" value="Back"/>
            </h:panelGrid>
            </s:form>
            <s:errors/>
            </center>           
            </s:html>
            </f:view>             
        </td>
    </tr>
    <tr>
        <!-- FOOTER -->
        <td colspan='2'>
            <%@ include file="../footer.jsp" %>
        </td>
    </tr>
</table>
</body>
</html>

I had this error as well. I needed to change my <f:view> tags to be <f:subview id="xxxx"> because my page is being embedded in a <f:view> page.
Don't know if you're doing the same.
Hope this helps!
Bernard

Similar Messages

  • "ASSERT FAILED" when java.exe ends

    What kind of error message is this:
    ASSERT FAILED:
    Executable: java.exe PID 218 Tid b04 Module kswdmcap.ax, 4 objects left active at line blablablablabla
    This happens when my java class ends from where I called a c++ method (that controls the windows media encoder sdk). It return without an error message from the c++ part, but when java.exe tries to end the class does this error message appear on the screen (Windows XP). Does anybody have a clue what that might be?

    I wouldn't say problem.
    Presumably the library you call does something. While doing that it creates "resources" of some sort. It could be a socket. Or a memory allocation. Or something else.
    But it expects you to tell it when you are done. Either with the library or with some specific aspect of the library. And you are not doing that before you exit.
    Keep in mind that I am only guessing. There could certainly be other explainations - like a bug in the library.

  • Why am I getting an "internal error",  just "Assertion failed" when calling createKeyword

    Here is my code.  It is called inside a function running under LrTasks.startAsyncTask.  The calls to "Util.writeLog" confirm that createKeyword is called and never returns.  
      Util.catalog:withWriteAccessDo(
          "CreateKwUnderPerson",
          function()
      Util.writeLog("Calling 'createKeyword()'")
      akw = Util.catalog:createKeyword( name, {}, true, nil, true)
      Util.writeLog("'createKeyword()' returned")
                  end
    I find it disconcerting that there is no more informative error message.   This seems to me to be an Adobe bug, even though the problem presumably originates from something I'm doing wrong.

    Thanks, but yes, I did knew this.   It's all working now.   When I first got your message my first reaction was to reply saying "that's not it—it's not nil"; but then I thought "I should check, it would be better if I could say I'd checked", and five minutes after that it was all cleared up.   A lesson. 
    Thanks again.  I did download your debugger (and used parts of the package) but thought that for what I was doing just using a logfile, with tail -F, would be enough.  I'm migrating from Aperture and iPhoto, and thought that at the same time I could try to orgaineze my keywords.   It's been frustrating but enjoyable.
    And you said in the first message "given the nature of Lua".   After trying to use Applescript to work with Aperture, Lua is positively luminous.
    Thanks again,
    Bill MItchell

  • Assertion failed when open Applet in Internet Explorer 7.0 ( Windows Vista)

    I have a problem when loading an applet ( calling from a ASP.NET page ) only in 1 computer ( the others in my company is fine )
    Here is capture of the error dialog i got : http://img134.imageshack.us/my.php?image=editorproblemszx1.jpg
    I try to re-install all Java related program but the problem is still existed ( The applet worked fine before ) . I think re-install Windows Vista can fix but it is the last choice of course
    Would someone please to help me to solve this problem ( not sure if this is a Microsoft's problem ) .
    Thanx in advance

    It seems to be a bug related to fonts.
    Here's a bug related to your one, might give you a clue about some workaround:
    http://bugs.sun.com/bugdatabase/view_bug.do?bug_id=4599491

  • "internal error: assertion failed" when publishing to harddisk

    Hello there!
    After upgrading to 3.5 from 3.4.1 I received this error when attempting to publish new photos to my harddisk. First I thought the problem may be related to access rights. I am running Win7, 64 bit. So I reset the read/write rights in the export folder and the LR catalogue and AppData folders. No success.
    Then I opened a new cataloge and imported the old one in order to start "from scratch" - no success, publishing collections were not importet. Finally I switched back to version 3.4.1, and ... it works again!
    Possibly I am doing something wrong??  Possibly it is a bug? Any suggestions are welcome.
    Thanks and regards, Mike.

    I'm running Windows 7, 64-bit and having the same trouble right now.  The collection is an auto generated collection.

  • "internal error: assertion failed" when exporting via LR4

    I've never had problems doing this with Lightroom 3, just upgraded to Lightroom 4 and I can't seem to export anything. I also can't publish either.

    Thanks for the suggestions. I tried removing the com.adobe.Lightroom4.plist. This didn't help, still getting the error.
    Then I removed these files as well:
    com.adobe.Lightroom3.plist
    com.adobe.Lightroom2.plist
    com.adobe.Lightroom3.LSSharedFileList.plist
    com.adobe.Lightroom3.plist.lockfile
    None of that helped.
    I tried creating a new library and just importing one picture but I still get the same "internal error" VERY FRUSTRATING.

  • Iisproxy.dll causes "DLL initialization routine has failed" when serving JSPs

              Hi,
              We are experiencing problems with the Weblogic ISAPI plug-in. Often the webservers
              are giving the following error:
              "A dynamic link library (DLL) initialization routine has failed"
              when trying to serve JSP requests (the only ones that are using this plug-in),
              without crashing the IIS service. Which causes our load-balancers to hit the affected
              webservers as the IIS service is running, but the clients (browsers) only seen
              this error.
              Our configuration is the following:
              - 2 WLS 4.5.1 SP11 on Solaris 2.5.7 boxes running in a cluster
              - 3 IIS4 using the iisproxy.dll from WLS 4.5.1 SP14 on NT4 SP6a boxes.
              Our iisproxy.ini is the following:
              WebLogicCluster=10.194.34.32:7005,10.194.34.34:7005
              ErrorPage=http://212.0.161.16/media/site_down.htm
              ConnectTimeoutSecs=15
              ConnectRetrySecs=2
              DebugConfigInfo=ON
              Debug=ON
              The plug-in is registered to only serve JSP requests and the "Run in separate
              memory space" is checked. Does anyone knows what's the problem? I'm also attaching
              the plug-in log from one of the affected webservers.
              Thanks in advance.
              [Wlproxy.zip]
              

    Thanks, JLS.
    We figured it out. There's an entry in the registry that lvanyls.dll points to specifying the location of the LV shared directory (and therefore the MKL directory). If it's not found in that exact location, the dll load aborts.
    We're trying to not include the runtime installer in our application installer because of the size, so we're figuring out our own workaround (and trying to CYA in the meantime ).
    -Scott

  • Lightroom 4: assertion failed message when opening [was: help]

    I have download lightroom 4 from a cd and it is telling me assertion failed when i try to open program.

    That is all the error message said:  assertion failed
    Date: Mon, 3 Jun 2013 18:55:35 -0700
    From: [email protected]
    To: [email protected]
    Subject: help
    Re: help created by sarika02 in Downloading, Installing, Setting Up - View the full discussion
    Hi Lynchgirl,
    Please send complete error message or if possible, send a screen shot.

  • Assertion Failed error on solaris

              Hi Friends,
              I am getting the following exception while running JSP whta can be the problem. I am running weblogic on sun solaris.
              weblogic.utils.AssertionError: ***** ASSERTION FAILED *****[ getServlet() return
              ed null!! ]
              at java.lang.Throwable.fillInStackTrace(Native Method)
              at java.lang.Throwable.fillInStackTrace(Compiled Code)
              at java.lang.Throwable.<init>(Compiled Code)
              at java.lang.Error.<init>(Error.java:50)
              at weblogic.utils.NestedError.<init>(NestedError.java:15)
              at weblogic.utils.AssertionError.<init>(AssertionError.java:49)
              at weblogic.utils.Debug.assert(Compiled Code)
              at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubIm
              pl.java:104)
              at weblogic.servlet.internal.ServletContextImpl.invokeServlet(ServletCon
              textImpl.java:742)
              at weblogic.servlet.internal.ServletContextImpl.invokeServlet(ServletCon
              textImpl.java:686)
              at weblogic.servlet.internal.ServletContextManager.invokeServlet(Servlet
              ContextManager.java:247)
              at weblogic.socket.MuxableSocketHTTP.invokeServlet(MuxableSocketHTTP.jav
              a:361)
              at weblogic.socket.MuxableSocketHTTP.execute(MuxableSocketHTTP.java:261)
              at weblogic.kernel.ExecuteThread.run(Compiled Code
              Rajan
              

              Info please ...
              OS?
              JDK?
              WL?
              service pack?
              always/sometimes ?
              clustered?
              mike
              "Rajan Kashyap" <[email protected]> wrote:
              >
              >Hi Friends,
              > I am getting the following exception while running JSP whta can be the problem. I am running weblogic on sun solaris.
              >
              >weblogic.utils.AssertionError: ***** ASSERTION FAILED *****[ getServlet() return
              >ed null!! ]
              > at java.lang.Throwable.fillInStackTrace(Native Method)
              > at java.lang.Throwable.fillInStackTrace(Compiled Code)
              > at java.lang.Throwable.<init>(Compiled Code)
              > at java.lang.Error.<init>(Error.java:50)
              > at weblogic.utils.NestedError.<init>(NestedError.java:15)
              > at weblogic.utils.AssertionError.<init>(AssertionError.java:49)
              > at weblogic.utils.Debug.assert(Compiled Code)
              > at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubIm
              >pl.java:104)
              > at weblogic.servlet.internal.ServletContextImpl.invokeServlet(ServletCon
              >textImpl.java:742)
              > at weblogic.servlet.internal.ServletContextImpl.invokeServlet(ServletCon
              >textImpl.java:686)
              > at weblogic.servlet.internal.ServletContextManager.invokeServlet(Servlet
              >ContextManager.java:247)
              > at weblogic.socket.MuxableSocketHTTP.invokeServlet(MuxableSocketHTTP.jav
              >a:361)
              > at weblogic.socket.MuxableSocketHTTP.execute(MuxableSocketHTTP.java:261)
              > at weblogic.kernel.ExecuteThread.run(Compiled Code
              >
              >
              >
              >Rajan
              

  • Internal error: assertion failed - still won't work in LR4

    When I try to export an image from LR4 I get the "internal error: assertion failed" error. I'm running Lion 10.7.3 on a MacBook.
    I started by reading the thread at:
    Re: "internal error: assertion failed" when exporting via LR4
    tinaTS offered what she thought was the correct fix but her suggestion didn't apply to my situation. She suggested moving user presets but I don't have any to move.
    I also tried the basic “repair permissions” and Lion restart with no luck. 
    Kirk Marcus suggested removing the com.adobe.Lightroom4.plist from my library. This didn't help, still getting the error.
    Then I removed these files as well:
    com.adobe.Lightroom3.plist
    com.adobe.Lightroom2.plist
    com.adobe.Lightroom3.LSSharedFileList.plist
    com.adobe.Lightroom3.plist.lockfile
    None of that helped.
    I tried removing all files that began with com.adobe.Lightroom and then creating a new library and just importing one picture but I still get the same "internal error" VERY FRUSTRATING.
    Obviously, the program is worthless to me if I can't export images.
    Additional suggestions would be appreciated. I see that lots of people on the internet are having this problem but none of the suggestions I've found so far have been of any help.

    Thanks for the suggestions. I tried removing the com.adobe.Lightroom4.plist. This didn't help, still getting the error.
    Then I removed these files as well:
    com.adobe.Lightroom3.plist
    com.adobe.Lightroom2.plist
    com.adobe.Lightroom3.LSSharedFileList.plist
    com.adobe.Lightroom3.plist.lockfile
    None of that helped.
    I tried creating a new library and just importing one picture but I still get the same "internal error" VERY FRUSTRATING.

  • Lightroom 5.2 "assertion failed" on start-up; prior LR 4 remedies not working

    Hi folks,
    I'm getting "assertion failed" when trying to start LR 5.2.  Looking through old threads I've tried the remedy suggested for LR 4, i.e. renaming the .agprefs file and letting LR build a new one (which it does, verified in Windows Explorer) but I still get the same error.  LR asks me to enter my country, then the license key (which is pre-filled), but clicking "Finish" takes me immediately to "assertion failed".  Double-clicking the .lrcat file in Windows Explorer produces the same sequence.
    LR was working fine last time I used it, 6 days ago.  I've added nothing to the computer since; there are no other or earlier copies of LR on the computer.  Lenovo Thinkpad T420, Win 7 Pro 64-bit.
    Help!
    Jon
    UPDATE: I just tried it again so I could write down the license key in case I needed to remove and re-install LR - and it started OK.  All I did differently this time was enter my name and e-mail address in the "Register now?" screen, then hit "Finish"; I didn't even click "register now".  Weird.

    A work-around that I am using is to run Lightroom as an administrator on my Windows 7 system (right-click on the icon and choose run as administrator).  Everything then works ok.  I also needed to run as an administrator to be able to update some plug-ins I was using.  I fixed the plug-in update issues by changing the permissions on plug-ins folder.  I suspect that it is a similar issue with the maps.
    I have not figured out what folder or files need to have the permissions altered to stop Lightroom from working in the unelevated state but if someone reading this knows please share.  I saw some posts related to the same issue but on Macs but the Windows configuration is different.
    Dan

  • LR 4 Assertion Failed

    Installed Lightroom 4 on a Vista PC from a new disk. Clicked on the desk top icon and get the following "Assertion Failed"
    Just above that are black letters stating "Lightroom Opening Catalog: P1050267_pp.JPG.lrcat"
    I uninstalled and and installed it again. This time instalation finished and never did get the Serial Number entery screen.
    Help! Thank you,
    Gary

    Hi Folks
    I was using the non CC version of LR5.3 and kept on getting "assertion failed" when upgrading to LR5.4.
    Simonsaith has solved this problem for me.  See below
    http://forums.adobe.com/message/6283967
    Basically, following, his instructions I added "Pictures" under  C:\users]<your window login name>\Pictures.  I also added back "My Pictures" under the same path.   I did this before pressing check updates on LR5.3
    Works a treat for me.  Thanks to Simon!
    Hope Adobe issue a fix for this. Just in case I delete Pictures folder.
    Cheers

  • Error message on opening "assertion failed" what do I do?

    The program started working normally but when I was in the middle of adding pictures to a catalogue and creating smart images I accidentally switched light room off and since then I cannot switch it back on. I get the error message "assertion failed" when I click on the icon to open light room. I tried uninstalling and reinstalling the program that had no effect. I then used to ccleaner to clean the registry in case there were errors that are I reinstalled the program to no avail. I phoned geek squad they took over my computer and try to discover what the error was without success. What do I do?

    Have you tried this?
    Error: 'assertion failed' | Update | Windows
    there might also be something here
    How to fix Adobe Lightroom 5.4 assertion failed error

  • WebI does not return failed when scheduling a report which only holds parti

    WebI does not return failed when scheduling a report which only holds partial results.
    We have scheduled reports which take some time to run. When they are scheduled they sometimes show successful even though the report only holds partial results. The only indication is when you open the report as webi report you see the warning that it holds partial results.
    When running the report manually, it works file.
    The issue is not in the no of rows in the universe settings because we this unselected. The issue is that it times out.
    The reason that it times out is that a lot of resources are used for loading and processing data when the report is scheduled. When running it manually, it works because at this time the serverload is less. the time in the universe is set to 10 min.
    The version we have is BOXIR2-SP4.
    Ok. Issue identified.
    The question is - why is the report successful when it holds partial results? If this is normal behavior, noone can really trust the scheduled reports, especially when you save it to excel and send it by mail.
    Is there a solution for this except increasing the allowed query time which would not solve the issu but only allow more reports to complete?
    Edited by: Karlgren Michael on Sep 17, 2009 1:22 PM

    Hi ,
    Currently this problem exists in XI R2. This feature will be part of thenext Service Pack i.e XI R2 SP6.
    This CER will be delivered from IDC Webi and BIP Platform as part of Jupiter Sp6.
    Problem Statement:
         Scheduled WebI Reports which are partially refreshed are distributed to the destinations for Users to View and make decisions. These users arenu2019t usually aware that these reports have u201CPARTIAL RESULTSu201D
    Recomended Solution:
        Allow the Schedule Creator / Modifier to set a parameter to stop the distribution of the u201CPARTIALLY REFRESHEDu201D WebI report.
    Thanks
    Salini

  • Assert condition failed when saving freight unit planning in transportation cockpit

    Hi all,
    I can successful complete Transportation Proposal and Optimizer Planning for freight Unit in Transportation cockpit. But when I am trying to save the freight Unit in Transportation cockpit, system is giving me dump "ERROR: The ASSERT condition was violated. (termination: RABAX_STATE)"
    ST22 showing  /SCMTMS/CL_BUFVAR_DISPATCHER==CP      Assertion failed
    Details of Active calls/Event in ST22
    35 METHOD       /SCMTMS/CL_BUFVAR_DISPATCHER==CP    /SCMTMS/CL_BUFVAR_DISPATCHER==CM005   116
        /SCMTMS/CL_BUFVAR_DISPATCHER=>/BOBF/IF_FRW_BUFFER~MODIFY
    34 METHOD       /BOBF/CL_FRW==================CP    /BOBF/CL_FRW==================CM00K  1173
        /BOBF/CL_FRW=>DO_MODIFY
    33 METHOD       /BOBF/CL_FRW_INT_ACCESS=======CP    /BOBF/CL_FRW_INT_ACCESS=======CM002    45
        /BOBF/CL_FRW_INT_ACCESS=>END_MODIFY
    32 METHOD       /BOBF/CL_FRW==================CP    /BOBF/CL_FRW==================CM00E   861
        /BOBF/CL_FRW=>DO_DETERMINATIONS
    31 METHOD       /BOBF/CL_FRW==================CP    /BOBF/CL_FRW==================CM01C   274
        /BOBF/CL_FRW=>/BOBF/IF_FRW_SERVICE_LAYER~FINALIZE
    30 METHOD       /BOBF/CL_LIB_DELEGATION_BOPF==CP    /BOBF/CL_LIB_DELEGATION_BOPF==CM00E    12
        /BOBF/CL_LIB_DELEGATION_BOPF=>/BOBF/IF_FRW_DELEGATION~FINALIZE
    29 METHOD       /SCMTMS/CL_BUFVAR_DODELEGATIONCP    /SCMTMS/CL_BUFVAR_DODELEGATIONCM004     6
        /SCMTMS/CL_BUFVAR_DODELEGATION=>/BOBF/IF_FRW_DELEGATION~FINALIZE
    28 METHOD       /BOBF/CL_FRW==================CP    /BOBF/CL_FRW==================CM01C   246
        /BOBF/CL_FRW=>/BOBF/IF_FRW_SERVICE_LAYER~FINALIZE
    27 METHOD       /BOBF/CL_TRA_SERVICE_MGR======CP    /BOBF/CL_TRA_SERVICE_MGR======CM00P    23
        /BOBF/CL_TRA_SERVICE_MGR=>/BOBF/IF_TRA_SERV_MGR_TRANSACT~FINALIZE
    26 METHOD       /BOBF/CL_TRA_TRANSACTION_MGR==CP    /BOBF/CL_TRA_TRANSACTION_MGR==CM001    60
        /BOBF/CL_TRA_TRANSACTION_MGR=>FINALIZE
    25 METHOD       /BOBF/CL_TRA_TRANSACTION_MGR==CP    /BOBF/CL_TRA_TRANSACTION_MGR==CM00S    63
        /BOBF/CL_TRA_TRANSACTION_MGR=>/BOBF/IF_TRA_TRANSACTION_MGR~SAVE
    24 METHOD       /BOFU/CL_FBI_CONTROLLER_NEW===CP    /BOFU/CL_FBI_CONTROLLER_NEW===CM00D    22
        /BOFU/CL_FBI_CONTROLLER_NEW=>IWCI_IF_FPM_TRANSACTION~SAVE
    23 METHOD       /SCMTMS/CL_UI_CONTROLLER_PLN==CP    /SCMTMS/CL_UI_CONTROLLER_PLN==CM00L    63
        /SCMTMS/CL_UI_CONTROLLER_PLN=>SAVE_PLANNING
    22 METHOD       /SCMTMS/CL_UI_CONTROLLER_PLN==CP    /SCMTMS/CL_UI_CONTROLLER_PLN==CM00N    41
        /SCMTMS/CL_UI_CONTROLLER_PLN=>HANDLE_ACTIONS
    21 METHOD       /SCMTMS/CL_UI_CONTROLLER_PLN==CP    /SCMTMS/CL_UI_CONTROLLER_PLN==CM00A    16
        /SCMTMS/CL_UI_CONTROLLER_PLN=>IWCI_IF_FPM_APP_CONTROLLER~AFTER_PROCESS_EVENT
    20 METHOD       /1BCWDY/03N7LCDLX3EFC4K580SF==CP    /1BCWDY/B_03N7LCDLX3EFC4K580YR        689
        CL_COMPONENTCONTROLLER_CTR=>AFTER_PROCESS_EVENT
        Web Dynpro Component          /BOFU/WDC_FBI_CONTROLLER
        Controller                    COMPONENTCONTROLLER
    19 METHOD       /1BCWDY/03N7LCDLX3EFC4K580SF==CP    /1BCWDY/B_03N7LCDLX3EFC4K580YR        119
        CLF_COMPONENTCONTROLLER_CTR=>IWCI_IF_FPM_APP_CONTROLLER~AFTER_PROCESS_EVENT
        Web Dynpro Component          /BOFU/WDC_FBI_CONTROLLER
        Controller                    COMPONENTCONTROLLER
    18 METHOD       CL_FPM========================CP    CL_FPM========================CM00G   101
        CL_FPM=>CALL_UIBB_PROCESS_EVENT
    17 METHOD       CL_FPM========================CP    CL_FPM========================CM005    46
        CL_FPM=>PROCESS_EVENT
    16 METHOD       CL_FPM========================CP    CL_FPM========================CM00C    33
        CL_FPM=>RUN_EVENT_LOOP
    15 METHOD       CL_FPM========================CP    CL_FPM========================CM002     5
        CL_FPM=>IF_FPM~RAISE_EVENT
    14 METHOD       /1BCWDY/03N7LCDLX3EFC3O22W8A==CP    /1BCWDY/B_03N7LCDLX3EFC3O22XGJ       1412
         CL_PAGE_HEADER_CTR=>ONACTIONACTION
         Web Dynpro Component          FPM_OVP_COMPONENT
         Controller                    PAGE_HEADER
      13 METHOD       /1BCWDY/03N7LCDLX3EFC3O22W8A==CP    /1BCWDY/B_03N7LCDLX3EFC3O22XGJ        581
         CLF_PAGE_HEADER_CTR=>IF_WDR_VIEW_DELEGATE~WD_INVOKE_EVENT_HANDLER
         Web Dynpro Component          FPM_OVP_COMPONENT
         Controller                    PAGE_HEADER
      12 METHOD       CL_WDR_DELEGATING_VIEW========CP    CL_WDR_DELEGATING_VIEW========CM006     6
         CL_WDR_DELEGATING_VIEW=>INVOKE_EVENTHANDLER
      11 METHOD       CL_WDR_ACTION=================CP    CL_WDR_ACTION=================CM00A    38
         CL_WDR_ACTION=>IF_WDR_ACTION~FIRE
      10 METHOD       CL_WDR_WINDOW_PHASE_MODEL=====CP    CL_WDR_WINDOW_PHASE_MODEL=====CM00U    95
         CL_WDR_WINDOW_PHASE_MODEL=>DO_HANDLE_ACTION_EVENTS
       9 METHOD       CL_WDR_WINDOW_PHASE_MODEL=====CP    CL_WDR_WINDOW_PHASE_MODEL=====CM002    95
         CL_WDR_WINDOW_PHASE_MODEL=>PROCESS_REQUEST
       8 METHOD       CL_WDR_WINDOW=================CP    CL_WDR_WINDOW=================CM00V    12
         CL_WDR_WINDOW=>PROCESS_REQUEST
       7 METHOD       CL_WDR_MAIN_TASK==============CP    CL_WDR_MAIN_TASK==============CM00I    77
         CL_WDR_MAIN_TASK=>EXECUTE
       6 METHOD       CL_WDR_MAIN_TASK==============CP    CL_WDR_MAIN_TASK==============CM00U     6
         CL_WDR_MAIN_TASK=>IF_WDR_RUNTIME~EXECUTE
       5 METHOD       CL_WDR_CLIENT_ABSTRACT_HTTP===CP    CL_WDR_CLIENT_ABSTRACT_HTTP===CM01C   114
         CL_WDR_CLIENT_ABSTRACT_HTTP=>HANDLE_REQUEST
       4 METHOD       CL_WDR_MAIN_TASK==============CP    CL_WDR_MAIN_TASK==============CM00J    85
         CL_WDR_MAIN_TASK=>IF_HTTP_EXTENSION~HANDLE_REQUEST
       3 METHOD       CL_HTTP_SERVER================CP    CL_HTTP_SERVER================CM00I   627
         CL_HTTP_SERVER=>EXECUTE_REQUEST
       2 FUNCTION     SAPLHTTP_RUNTIME                    LHTTP_RUNTIMEU02                     1218
         HTTP_DISPATCH_REQUEST
       1 MODULE (PBO) SAPMHTTP                            SAPMHTTP                               13
         %_HTTP_START
    Any help will be appreciated
    Thanks and regards
    Shambhu Sarkar

    Hi Shambhu,
          When i see the assert,i feel there is some problem at the determination. Whether you have implemented any custom determination of your own? 
          No issues, Place the break-point at the assert and check the call stack and find the which determination is that?
    Thanks,
    Dinesh

Maybe you are looking for

  • Not able to activate my Acrobat X Pro

    hello, i got my software from a licensed retailer in Singapore under Education as i am still in studying in a tertiary education institution. After installing, i keep having pop-ups saying that i have not activated my program. Since it is CS5.5 and i

  • Footer not staying at bottom in Firefox & Netscape

    I have a webpage that looks fine in IE but in Netscape and Firefox, the footer div is not staying down at the bottom of the page like it is supposed to. There is a "content" div which contains the 2 divs "nav" and "actual content". "Nav" is floated t

  • Shutting off when lid closes

    I just bought a 13 inch MBP yesterday. I know macbooks are supposed to sleep when the lid is closed by default. But a few times when I opened the lid, the computer had appeared to turn completely off. The indicator light on the front was steady when

  • Quadro K2000m drivers Win 8.1 W530

    Hello everyone, I was trying to see whether the drivers I originally had (can't remember the version) for the Quadro K2000m on my W530 were doing their job. The first sign I noticed that something was off was when playing CS: GO and I can only play i

  • Switching between OS X and Win7 on MacBook Pro

    Is there an app or some process to easily switch between OS X and Win7 on my MacBook Pro? Thanks.