JBO ERROR message while finding a detail row by rowkey....

HI,
in my application module i have the master viewobject "SelectionClasseVO" and
the restricted detail view object "ClasseHistoriqueVO" via the viewlink "ClasseHistoriqueVL".
in my master JSP i have the code :
<jbo:ApplicationModule id="amCP111" configname="fr.aphp.savane.bc4j.CP11SelectionClasseAM.CP11SelectionClasseAMLocal" releasemode="Stateful" />
<jbo:DataSource id="dsCP111" appid="amCP111" viewobject="SelectionClasseVO" rangesize="10" />
<jbo:DataHandler appid="amCP111" />
<table border=0>
<tr>
<td><jbo:DataScroller datasource="dsCP111" /></td>
</tr>
</table>
<jbo:DataTable datasource="dsCP111" relativeUrlPath="CP111DataTableComponent.jsp" />
<jbo:ReleasePageResources releasemode="Stateful" />
in my CP111DataTableComponent.jsp i have the code :
<%
// Retrieve all request parameters using our routine to handle multipart encoding type
RequestParameters params = HtmlServices.getRequestParameters(pageContext);
%>
<%-- Restore the data binding to the datasource passed as parameter --%>
<jbo:DataSourceRef id="dsBrowse" reference='<%=params.getParameter("datasource")%>' />
<%-- Affichage du rowset --%>
<TABLE BORDER=4 CELLSPACING=2 CELLPADDING=3 bordercolor="#0000FF" WIDTH=80%>
<tr>
<%-- Display all the attribute names in the table header --%>
<th>&nbsp</th>
<jbo:AttributeIterate id="ai2" datasource="dsBrowse" displayattributes="CodePrimairePrdtIdentifie,CodeOrganstnProprietaire" >
<th class="centre" title="<jbo:ShowHint hintname='TOOLTIP'/>">
<jbo:ShowHint hintname="LABEL">##Column</jbo:ShowHint>
</th>
</jbo:AttributeIterate>
</tr>
<%-- Iterate through all the rows in the range without changing the currency --%>
<jbo:RowsetIterate datasource="dsBrowse" changecurrentrow="false" userange="true">
<jbo:Row id="aRow" datasource="dsBrowse" action="Active"/>
<tr>
<td class="grille">See this record</TD>
<%-- Iterate through all the attribute of the row and Render their value --%>
<jbo:AttributeIterate id="ai3" datasource="dsBrowse" displayattributes="CodePrimairePrdtIdentifie, CodeOrganstnProprietaire" >
<td class="grille" title="<jbo:ShowHint hintname='TOOLTIP'/>"> <jbo:RenderValue datasource="dsBrowse">##Cell</jbo:RenderValue> </td>
</jbo:AttributeIterate>
</tr>
</jbo:RowsetIterate>
</TABLE>
in my detail jsp : CP1115ClasseHistorique.jsp i have the code :
<jbo:ApplicationModule id="amCP111" configname="fr.aphp.savane.bc4j.CP11SelectionClasseAM.CP11SelectionClasseAMLocal" releasemode="Stateless" />
<jbo:DataSource id="dsCP111" appid="amCP111" viewobject="SelectionClasseVO" />
<jbo:RefreshDataSource datasource="dsCP111" />
<jbo:Row id="rowCP111" datasource="dsCP111" action="Find" rowkeyparam= "Rowkeyvalue">
</jbo:Row>
<jbo:DataSource id="dsCP1115" appid="amCP111" viewobject="ClasseHistoriqueVO" rangesize="10"/>
<jbo:DataHandler appid="amCP111" />
<HR class="header">
<jbo:AttributeIterate id="aiCP1115" datasource="dsCP111" displayattributes="CodePrimairePrdtIdentifie, CodeOrganstnProprietaire" >
<b title="<jbo:ShowHint hintname='TOOLTIP'/>">
<jbo:ShowHint hintname="LABEL">##Column</jbo:ShowHint> : <jbo:RenderValue datasource="dsCP111">##Cell</jbo:RenderValue> - </b>
</jbo:AttributeIterate>
<HR class="header">
<center>
<BR>
<%-- Affichage de la navigation entre rowset --%>
<table border=0>
<tr>
<td><jbo:DataScroller datasource="dsCP1115" /></td>
</tr>
</TABLE>
<jbo:DataTable datasource="dsCP1115" relativeUrlPath="CP1711DataTableComponent.jsp" />
<jbo:ReleasePageResources releasemode="Stateless" />
after clicking on the "see record" in my Master JSP running i obtain this ERROR MESSAGE:
THANKS FOR HELP
Error Message: Row was not found using request parameter: 001A00000003434C410000000330303000000002393100000007312E2E412E303100000004312E2E4100000002C10400000003303030000000013600000002554E00000002554E000000033030310000000331303000000002393100000003434C410000000330303000000002393100000003434C410000000330303000000002393100000007312E2E412E303100000002C10200000003434C410000000330303000000002393100000007312E2E412E303100000002C10200000001000000EF2254E4DF.
oracle.jbo.JboException: Row was not found using request parameter: 001A00000003434C410000000330303000000002393100000007312E2E412E303100000004312E2E4100000002C10400000003303030000000013600000002554E00000002554E000000033030310000000331303000000002393100000003434C410000000330303000000002393100000003434C410000000330303000000002393100000007312E2E412E303100000002C10200000003434C410000000330303000000002393100000007312E2E412E303100000002C10200000001000000EF2254E4DF.
     void oracle.jbo.JboException.(java.lang.String)
     void oracle.jbo.html.jsp.datatags.RowTag.handleAction()
     int oracle.jbo.html.jsp.datatags.RowTag.doStartTag()
     void CP1115ClasseHistorique.jspService(javax.servlet.http.HttpServletRequest, javax.servlet.http.HttpServletResponse)
     void oracle.jsp.runtime.HttpJsp.service(javax.servlet.ServletRequest, javax.servlet.ServletResponse)
     void oracle.jsp.runtimev2.JspPageTable.service(javax.servlet.http.HttpServletRequest, javax.servlet.http.HttpServletResponse, java.lang.String)
     void oracle.jsp.runtimev2.JspServlet.internalService(javax.servlet.http.HttpServletRequest, javax.servlet.http.HttpServletResponse)
     void oracle.jsp.runtimev2.JspServlet.service(javax.servlet.http.HttpServletRequest, javax.servlet.http.HttpServletResponse)
     void javax.servlet.http.HttpServlet.service(javax.servlet.ServletRequest, javax.servlet.ServletResponse)
     void com.evermind.server.http.ServletRequestDispatcher.invoke(javax.servlet.ServletRequest, javax.servlet.ServletResponse)
     void com.evermind.server.http.ServletRequestDispatcher.forwardInternal(javax.servlet.ServletRequest, javax.servlet.http.HttpServletResponse)
     boolean com.evermind.server.http.HttpRequestHandler.processRequest(com.evermind.server.ApplicationServerThread, com.evermind.server.http.EvermindHttpServletRequest, com.evermind.server.http.EvermindHttpServletResponse, java.io.InputStream, java.io.OutputStream, boolean)
     void com.evermind.server.http.HttpRequestHandler.run(java.lang.Thread)
     void com.evermind.util.ThreadPoolThread.run()
THANKS FOR HELP

From my experience with VOs w/o an entity, the row key seems to only be valid for a given instance of the rowset. So each time you load the rowset from the same view, the rowkeys change. Also while your jboRowKey value is probably getting passed in the URL but the rowkey may not exist in your next request unless you receive the same AppModule.
I suspect you are seeing this error because you are rebuilding the JSP from your IDE and refreshing the page. In this case you might be getting a new app module so the jboRowkey is no longer valid.

Similar Messages

  • Error message while activating ODS ZFI_ORD( FI Order Details)

    hi ,
    I am getting this error message while activating  the ODS ZFI_ORD( FI Order Details) "Value '1 - Hide = 2 Neck' (hex. '2000200020002000310020002D002000480069006400650020') of characteristic ZORD_DESC contains invalid characters
    " . I am not able to get in which record the problem is and the message is not clear for records. How to check it.
    Thanks,
    Pooja

    Hi
    Try to see the Errorred Records At PSA itself. The Object ZORD_DESC can be cheched for values.
    Data Target Request can be Deleted by making it Red. Edit at PSA
    /people/sankar.kumar/blog/2006/10/11/loading-text-filestxt-into-bw-with-hex-option
    RSKC --> type ALL_CAPITAL --> F8 (Execute)
    OR
    Go to SE38 and execute the program RSKC_ALLOWED_CHAR_MAINTAIN and give ALL_CAPITAL or the char you want to add.
    Check the table RSALLOWEDCHAR. It should contain ALL_CAPITAL or the char you have entered.
    Refer
    /people/sap.user72/blog/2006/07/23/invalid-characters-in-sap-bw-3x-myths-and-reality-part-2
    /people/sap.user72/blog/2006/07/08/invalid-characters-in-sap-bw-3x-myths-and-reality-part-1
    /people/aaron.wang3/blog/2007/09/03/steps-of-including-one-special-characters-into-permitted-ones-in-bi
    http://help.sap.com/saphelp_nw04/helpdata/en/64/e90da7a60f11d2a97100a0c9449261/frameset.htm
    For adding Other characters
    OSS note #173241 u2013 "Allowed characters in the BW System"
    Sample cleansing routine (#)
    Help loading  char EQUIP#1111#TAG#3311  SN#A01040          *     into Cube
    Hope it helps and clear

  • Error 8 while upload the program : row 425 message

    Can any one answer this ?
    I am not using Any lower case letters any special characteristics in the flat file.
    But still i am getting the same error "Error 8 while upload the program : row 425 message "
    Thanks

    hi padma
    or chk this
    In case of the flat file datasource, when you assign flat file source system again, the system assign IS to the old transfer structure! Because of the same DS name.
    There are 2 remedies.
    1. Log off the system. During the current session the system may keep deleted IO, TRs, URs etc and propose them again. Log off should wipe deleted objects.
    2. If the #1 didn't help. - Recreate an infosource with a new name. Create all other structures as needed.
    reg
    ashwin

  • Error message while using extension in notifications summary page in PO

    Hi,
    I am getting the below error messages while trying to add couple of columns in Purchasing, notifications summay. The files are located in folders 'JDEV_HOME/xx/oracle/apps/icx/por/wf/server' and I have no idea what this error means.
    Error(2,38): cannot access class oracle.apps.icx.por.wf.server.ReqLinesNotificationsVORowImpl; bad constant pool tag: 13 at 80
    Error(10,55): class ReqLinesNotificationsVORowImpl not found in class xx.oracle.apps.icx.por.wf.server.xxReqLinesNotificationsVORowImpl
    Couple of lines from Java code is below. The error is showing at import oracle.apps.icx.por.wf.server.ReqLinesNotificationsVORowImpl;'.
    package xx.oracle.apps.icx.por.wf.server;
    import oracle.apps.icx.por.wf.server.ReqLinesNotificationsVORowImpl;
    import oracle.jbo.server.AttributeDefImpl;
    import oracle.jbo.domain.Number;
    import oracle.jbo.domain.Date;
    Thanks,
    Rahul.

    Hi Ansari,
    Thanks for the reply. I tried to place all the files into myclasses and my projects path is JAVA_HOME\oracle\apps\icx\por\wf\server and JAVA_HOME\xx\oracle\apps\icx\por\wf\server. I did one more mistake of not ftp'ing the class files in binary format. It compiled and no errors.
    I have moved all the required files from these folders into $JAVA_TOP/xx/oracle/apps/icx/por/wf/server folder. One thing I observed is that jdeveloper is producing below files and is missing XXReqLinesNotificatinsVOImpl.class. I followed all the steps to include the custom sql into the view object.
    xxReqLinesNotifications.jpr
    xxReqLinesNotifications.jpx
    xxReqLinesNotifications.jws
    xxReqLinesNotificationsVO.xml
    xxReqLinesNotificationsVORowImpl.java
    xxReqLinesNotificationsVORowImpl.class
    oracle.apps.fnd.framework.OAException: Message not found. Application: FND, Message Name: FND_VIEWOBJECT_NOT_FOUND. Tokens: VONAME = ReqLinesNotificationsVO; APPLICATION_MODULE = oracle.apps.icx.por.wf.server.ReqApprovalNotificationsAM;
         at oracle.apps.fnd.framework.webui.OAPageErrorHandler.prepareException(OAPageErrorHandler.java:1223)
         at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:1986)
         at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:508)
         at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:429)
         at oa_html._OA._jspService(_OA.java:85)
         at oracle.jsp.runtime.HttpJsp.service(HttpJsp.java:119)
         at oracle.jsp.app.JspApplication.dispatchRequest(JspApplication.java:417)
         at oracle.jsp.JspServlet.doDispatch(JspServlet.java:267)
         at oracle.jsp.JspServlet.internalService(JspServlet.java:186)
         at oracle.jsp.JspServlet.service(JspServlet.java:156)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:588)
         at oracle.jsp.provider.Jsp20RequestDispatcher.forward(Jsp20RequestDispatcher.java:162)
         at oracle.jsp.runtime.OraclePageContext.forward(OraclePageContext.java:187)
         at oa_html._OA._jspService(_OA.java:95)
         at oracle.jsp.runtime.HttpJsp.service(HttpJsp.java:119)
         at oracle.jsp.app.JspApplication.dispatchRequest(JspApplication.java:417)
         at oracle.jsp.JspServlet.doDispatch(JspServlet.java:267)
         at oracle.jsp.JspServlet.internalService(JspServlet.java:186)
         at oracle.jsp.JspServlet.service(JspServlet.java:156)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:588)
         at org.apache.jserv.JServConnection.processRequest(JServConnection.java:456)
         at org.apache.jserv.JServConnection.run(JServConnection.java:294)
         at java.lang.Thread.run(Thread.java:534)
    ## Detail 0 ##
    oracle.apps.fnd.framework.OAException: Message not found. Application: FND, Message Name: FND_VIEWOBJECT_NOT_FOUND. Tokens: VONAME = ReqLinesNotificationsVO; APPLICATION_MODULE = oracle.apps.icx.por.wf.server.ReqApprovalNotificationsAM;
         at oracle.apps.fnd.framework.webui.OADataBoundValueViewObject.getViewObject(OADataBoundValueViewObject.java:355)
         at oracle.apps.fnd.framework.webui.OADataBoundValueViewObject.getViewName(OADataBoundValueViewObject.java:221)
         at oracle.apps.fnd.framework.webui.PPRHelper.addMappingsForBeanProperties(PPRHelper.java:458)
         at oracle.apps.fnd.framework.webui.PPRHelper.addMappingsForBean(PPRHelper.java:593)
         at oracle.apps.fnd.framework.webui.PPRHelper.addMappingsForChildren(PPRHelper.java:726)
         at oracle.apps.fnd.framework.webui.PPRHelper.addMappingsForBean(PPRHelper.java:596)
         at oracle.apps.fnd.framework.webui.PPRHelper.addMappingsForChildren(PPRHelper.java:726)
         at oracle.apps.fnd.framework.webui.PPRHelper.addMappingsForBean(PPRHelper.java:596)
         at oracle.apps.fnd.framework.webui.PPRHelper.addMappingsForChildren(PPRHelper.java:726)
         at oracle.apps.fnd.framework.webui.PPRHelper.addMappingsForBean(PPRHelper.java:596)
         at oracle.apps.fnd.framework.webui.PPRHelper.addMappingsForChildren(PPRHelper.java:726)
         at oracle.apps.fnd.framework.webui.PPRHelper.addMappingsForBean(PPRHelper.java:596)
         at oracle.apps.fnd.framework.webui.PPRHelper.addMappingsForChildren(PPRHelper.java:726)
         at oracle.apps.fnd.framework.webui.PPRHelper.addMappingsForBean(PPRHelper.java:596)
         at oracle.apps.fnd.framework.webui.PPRHelper.addMappingsForChildren(PPRHelper.java:726)
         at oracle.apps.fnd.framework.webui.PPRHelper.addMappingsForBean(PPRHelper.java:596)
         at oracle.apps.fnd.framework.webui.PPRHelper.addMappingsForChildren(PPRHelper.java:726)
         at oracle.apps.fnd.framework.webui.PPRHelper.addMappingsForBean(PPRHelper.java:596)
         at oracle.apps.fnd.framework.webui.PPRHelper.addMappingsForChildren(PPRHelper.java:726)
         at oracle.apps.fnd.framework.webui.PPRHelper.addMappingsForBean(PPRHelper.java:596)
         at oracle.apps.fnd.framework.webui.PPRHelper.addMappingsForChildren(PPRHelper.java:726)
         at oracle.apps.fnd.framework.webui.PPRHelper.addMappingsForBean(PPRHelper.java:596)
         at oracle.apps.fnd.framework.webui.PPRHelper.addMappingsForChildren(PPRHelper.java:726)
         at oracle.apps.fnd.framework.webui.PPRHelper.addMappingsForBean(PPRHelper.java:596)
         at oracle.apps.fnd.framework.webui.PPRHelper.addMappingsForChildren(PPRHelper.java:726)
         at oracle.apps.fnd.framework.webui.PPRHelper.addMappingsForBean(PPRHelper.java:596)
         at oracle.apps.fnd.framework.webui.PPRHelper.createReverseMapForRoot(PPRHelper.java:229)
         at oracle.apps.fnd.framework.webui.OAPageBean.processRequest(OAPageBean.java:2464)
         at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:1734)
         at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:508)
         at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:429)
         at oa_html._OA._jspService(_OA.java:85)
         at oracle.jsp.runtime.HttpJsp.service(HttpJsp.java:119)
         at oracle.jsp.app.JspApplication.dispatchRequest(JspApplication.java:417)
         at oracle.jsp.JspServlet.doDispatch(JspServlet.java:267)
         at oracle.jsp.JspServlet.internalService(JspServlet.java:186)
         at oracle.jsp.JspServlet.service(JspServlet.java:156)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:588)
         at oracle.jsp.provider.Jsp20RequestDispatcher.forward(Jsp20RequestDispatcher.java:162)
         at oracle.jsp.runtime.OraclePageContext.forward(OraclePageContext.java:187)
         at oa_html._OA._jspService(_OA.java:95)
         at oracle.jsp.runtime.HttpJsp.service(HttpJsp.java:119)
         at oracle.jsp.app.JspApplication.dispatchRequest(JspApplication.java:417)
         at oracle.jsp.JspServlet.doDispatch(JspServlet.java:267)
         at oracle.jsp.JspServlet.internalService(JspServlet.java:186)
         at oracle.jsp.JspServlet.service(JspServlet.java:156)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:588)
         at org.apache.jserv.JServConnection.processRequest(JServConnection.java:456)
         at org.apache.jserv.JServConnection.run(JServConnection.java:294)
         at java.lang.Thread.run(Thread.java:534)
    oracle.apps.fnd.framework.OAException: Message not found. Application: FND, Message Name: FND_VIEWOBJECT_NOT_FOUND. Tokens: VONAME = ReqLinesNotificationsVO; APPLICATION_MODULE = oracle.apps.icx.por.wf.server.ReqApprovalNotificationsAM;
         at oracle.apps.fnd.framework.webui.OADataBoundValueViewObject.getViewObject(OADataBoundValueViewObject.java:355)
         at oracle.apps.fnd.framework.webui.OADataBoundValueViewObject.getViewName(OADataBoundValueViewObject.java:221)
         at oracle.apps.fnd.framework.webui.PPRHelper.addMappingsForBeanProperties(PPRHelper.java:458)
         at oracle.apps.fnd.framework.webui.PPRHelper.addMappingsForBean(PPRHelper.java:593)
         at oracle.apps.fnd.framework.webui.PPRHelper.addMappingsForChildren(PPRHelper.java:726)
         at oracle.apps.fnd.framework.webui.PPRHelper.addMappingsForBean(PPRHelper.java:596)
         at oracle.apps.fnd.framework.webui.PPRHelper.addMappingsForChildren(PPRHelper.java:726)
         at oracle.apps.fnd.framework.webui.PPRHelper.addMappingsForBean(PPRHelper.java:596)
         at oracle.apps.fnd.framework.webui.PPRHelper.addMappingsForChildren(PPRHelper.java:726)
         at oracle.apps.fnd.framework.webui.PPRHelper.addMappingsForBean(PPRHelper.java:596)
         at oracle.apps.fnd.framework.webui.PPRHelper.addMappingsForChildren(PPRHelper.java:726)
         at oracle.apps.fnd.framework.webui.PPRHelper.addMappingsForBean(PPRHelper.java:596)
         at oracle.apps.fnd.framework.webui.PPRHelper.addMappingsForChildren(PPRHelper.java:726)
         at oracle.apps.fnd.framework.webui.PPRHelper.addMappingsForBean(PPRHelper.java:596)
         at oracle.apps.fnd.framework.webui.PPRHelper.addMappingsForChildren(PPRHelper.java:726)
         at oracle.apps.fnd.framework.webui.PPRHelper.addMappingsForBean(PPRHelper.java:596)
         at oracle.apps.fnd.framework.webui.PPRHelper.addMappingsForChildren(PPRHelper.java:726)
         at oracle.apps.fnd.framework.webui.PPRHelper.addMappingsForBean(PPRHelper.java:596)
         at oracle.apps.fnd.framework.webui.PPRHelper.addMappingsForChildren(PPRHelper.java:726)
         at oracle.apps.fnd.framework.webui.PPRHelper.addMappingsForBean(PPRHelper.java:596)
         at oracle.apps.fnd.framework.webui.PPRHelper.addMappingsForChildren(PPRHelper.java:726)
         at oracle.apps.fnd.framework.webui.PPRHelper.addMappingsForBean(PPRHelper.java:596)
         at oracle.apps.fnd.framework.webui.PPRHelper.addMappingsForChildren(PPRHelper.java:726)
         at oracle.apps.fnd.framework.webui.PPRHelper.addMappingsForBean(PPRHelper.java:596)
         at oracle.apps.fnd.framework.webui.PPRHelper.addMappingsForChildren(PPRHelper.java:726)
         at oracle.apps.fnd.framework.webui.PPRHelper.addMappingsForBean(PPRHelper.java:596)
         at oracle.apps.fnd.framework.webui.PPRHelper.createReverseMapForRoot(PPRHelper.java:229)
         at oracle.apps.fnd.framework.webui.OAPageBean.processRequest(OAPageBean.java:2464)
         at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:1734)
         at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:508)
         at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:429)
         at oa_html._OA._jspService(_OA.java:85)
         at oracle.jsp.runtime.HttpJsp.service(HttpJsp.java:119)
         at oracle.jsp.app.JspApplication.dispatchRequest(JspApplication.java:417)
         at oracle.jsp.JspServlet.doDispatch(JspServlet.java:267)
         at oracle.jsp.JspServlet.internalService(JspServlet.java:186)
         at oracle.jsp.JspServlet.service(JspServlet.java:156)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:588)
         at oracle.jsp.provider.Jsp20RequestDispatcher.forward(Jsp20RequestDispatcher.java:162)
         at oracle.jsp.runtime.OraclePageContext.forward(OraclePageContext.java:187)
         at oa_html._OA._jspService(_OA.java:95)
         at oracle.jsp.runtime.HttpJsp.service(HttpJsp.java:119)
         at oracle.jsp.app.JspApplication.dispatchRequest(JspApplication.java:417)
         at oracle.jsp.JspServlet.doDispatch(JspServlet.java:267)
         at oracle.jsp.JspServlet.internalService(JspServlet.java:186)
         at oracle.jsp.JspServlet.service(JspServlet.java:156)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:588)
         at org.apache.jserv.JServConnection.processRequest(JServConnection.java:456)
         at org.apache.jserv.JServConnection.run(JServConnection.java:294)
         at java.lang.Thread.run(Thread.java:534)
    Thanks,
    Rahul.

  • Error message while creating Appropriation Request

    Hey there,
    I am getting Error message while creating Appropriation Request.
    I have done all the confiig according to SAP Best Practices U30 Investment Management.
    When going into transaction IMA11(Create an AR) I can full in all fields but as soon as I click on the Control Tab I get a Run time error. Also when attempting to save the AR without clicking on the Control tab I get this message.
    Any help would be greatly appreciated
    RAISE_ exception
    Runtime Errors         RAISE_EXCEPTION                                                            
    Date and Time          18.07.2011 07:15:07                                                                               
    ShrtText                                                                               
    Exception condition "ERROR_IN_STATUS" raised.                                                                               
    What happened?                                                                               
    The current ABAP/4 program encountered an unexpected                                         
         situation.                                                                               
    Error analysis                                                                               
    A RAISE statement in the program "SAPLAIA_TOOL" raised the exception                         
         condition "ERROR_IN_STATUS".                                                                 
         Since the exception was not intercepted by a superior program                                
         in the hierarchy, processing was terminated.                                                                               
    Short description of exception condition:                                                                               
    For detailed documentation of the exception condition, use                                   
         Transaction SE37 (Function Library). You can take the called                                 
         function module from the display of active calls.                                            
    Trigger Location of Runtime Error                                                                
         Program                                 SAPLAIA_TOOL                                         
         Include                                 LAIA_TOOLU11                                         
         Row                                     119                                                  
         Module type                             (FUNCTION)                                           
         Module Name                             AIA_TOOL_GET_STATUS                      
    Source Code Extract                                                                               
    Line  SourceCde                                                                               
    89 *                TYPE       = SY-MSGTY                              
        90 *                CL         = SY-MSGID                              
        91 *                NUMBER     = SY-MSGNO                              
        92 *                PAR1       = SY-MSGV1                              
        93 *                PAR2       = SY-MSGV2                              
        94 *                PAR3       = SY-MSGV3                              
        95 *                PAR4       = SY-MSGV4                              
        96 *           IMPORTING                                               
        97 *                RETURN     = ls_return.                            
        98 *   endif.                                                          
        99 *   if not ls_return is initial.                                    
       100 *      append ls_return to return.                                  
       101 *      raise error_in_status.                                       
       102 *   endif.                                                          
       103 *                                                                   
       104 *  Füllen der Ausgabetabellen                                       
       105    perform fill_output_tables tables lt_status                      
       106                                      lt_jsto                        
       107                                      et_appreq_status               
       108                                      et_appreqvarnt_status          
       109                                      et_appreq_user_status          
       110                                      et_appreqvarnt_user_status     
       111                                      lt_objnr                       
       112                                      lt_objnr_varnt                 
       113                                      lt_return                      
       114                               using  i_language                     
       115                                      i_with_text.                   
       116                                                                     
       117    if not lt_return[] is initial.                                   
       118       append lines of lt_return to return.                          
    >>>>>       raise error_in_status.                                        
       120    endif.                                                           
       121                                                                     
       122                                                                     
       123 ENDFUNCTION.

    Hi,
    You said you are trying to do this stuff in IDES right.
    If you are using IDES provided by a company and where many people play on IDES, then you can get many such issues...
    This is by our experience.  Today you do something in IDES and tommorow that thing or config is screwed up by others.
    If you have your own IDES, then check the suggestion given by the forum Guru's.
    Regards,
    SB

  • Error message while executing international payroll with schema x000

    Dear Team,
    I am getting the below error message while running international payroll with schema x000.
       "Jump from DAYPR to detailed log
       Incorrect generation of wage types"
    Request forum members to help me on the same.
    Thank you,
    Srinivas

    Hi,
    Thank you for the reply please find below i reviewed all the below tables please gothrough and advice me if any i missed out.
    1)     T555E-Message Descriptions----
    2) T551C-Period work schedule evaluation---
    Grpg        Period ws     Description     Start Date      End Date      Cntg Class
       01     PWTC         Period WS     01.01.1990      31.12.9999     1
    3) V_551C_B-Valuation class for Periodic work schedule
    Grpg  Period ws  Description     start Date       End Date       Val.Classfor PWS
    01      PWTC      Period WS       01.01.1990    31.12.9999       1
    4) V_t508A-Work schedule rule
    ESG    ES grpg for ws     Holiday      Text      PSG   WSrule    St Date          End Date
    2        Salaried Employee   TCD             TC         01     TCWR    01.01.1900   31.12.9999
    5) V_001P_H-Personnel Subarea grouping for Time Recording
    Personnel area  Personnel Area Text Personnel Subarea Pers.Subarea  Ps Group
    1100                 JEDDAH            1110              MAIN OFFICE           01
    6) V_T555Z- Time type Determination
    Can you advice me on this what I need to maintain here
    7) V_T510S-Time wage type selection rule
    Tm.WT  Dy Grpg          No                                                   Wagetype  Wage Type Long Text
    54       01               001                                              1010            Basic Pay
    Regards,
    Srinivas

  • While installing photoshop elements 11, I get an error message while "installing shared technologies

    installing Adobe Elements 11, I get an error message while "installing shared technologies"........any suggestions

    Please review your installation logs to locate the error message affecting your installation.  You can find details on how to review the install logs at Troubleshoot with install logs | CS5, CS5.5, CS6 - http://helpx.adobe.com/creative-suite/kb/troubleshoot-install-logs-cs5-cs5.html.

  • ORA-12705 Error Message while trying to connect to the DB

    A colleague of mine has been trying to connect to the DB through PL/SQL Developer. The error message returned is :
    ORA-12705: invalid or unknown NLS parameter value specified
    Checked the registry for NLS_LANG which is set to NA. I did that because the ORA message references the NLS_LANG parameter. However, I doubt that is the problem. Went about to create a new TNS Name entry through Oracle NET Manager and get the same Error Message while performing the TEST function.
    Any clues ? I am clueless at this point.

    This can occur with any NLS_ environment variable of registry value.
    Your assertion ' the ORA message references the NLS_LANG parameter' is incorrect.
    You can set NLS_TERRITORY, NLS_DATE_FORMAT etc, etc, etc.
    The order of precedence is environment variable, registry, Oracle provided default.
    To find out what is going on set every NLS related environment variable to the empty string.
    In sqlplus
    select * from v$nls_valid_values
    will show you what can be set,
    This error will also occur when you installed the software with English as the only language.
    SQL developer doesn't use tnsnames.ora
    The new tnsname entry has nothing to do with it.
    You have an incorrect environment variable or registry value somewhere
    (in HKLM\software\oracle)
    Sybrand Bakker
    Senior Oracle DBA

  • Error message while installing Oracle BI Publisher

    javaw.exe
    the procedure entry point GetProcessImageFileNameW could not be located in the dynamic link library PSAPI.DLL
    Please find the solution of this problem...I got this pop up error message while installing BI publisher..
    thanks in advance

    Do a search to find all copies of psapi.dll. You only need the one for IE 7. Rename the other one(s).

  • Error Message while ship to party is not assigned to sold to party in VA01

    Hi All,
    In VA01, i need to throw an error message while giving a ship to party, which is not assigned to sold to party.
    I tried in  EXIT_SAPLV09A_001
                  EXIT_SAPLV09A_002
                  EXIT_SAPLV09A_003
                  EXIT_SAPLV09A_004
    above user exits, but i couldnt find the solution.
    if possible provide with the code.
    i appericiate the early response.
    Regards,
    Kumar.

    User exit MV45AFZB, form-routine USEREXIT_CHECK_VBAK.

  • Error message while shipping restricted batches

    I  am trying to get an error message while picking  a batch in restricted status.
    I have done the following:
    1. Set up batch determination at shipping : Condition table set up at the Sales Org. level. Access sequence set up, Batch Search Procedure setup .....
    2. Set up an error message in OVM1 for message VL 215
    3. Set up condition records in VCH2 for the Sales Org level with indicator N. This is to ensure sending of batch search strategy to EWM.
    When I create an outbound delivery for a 3 PL in ECC and enter a restricted batch in the outbound delivery I get no error message. In fact I can do the PGI of the outbound delivery as well.
    Can you please tell me how to get an error message for this scenario.
    Thanks

    Just found SAP is checking with the requirements date.
    Anyhow click the batch split button in your delivery, and then the display batch determination
    In that screen you will see 3 buttons with a paper icon, one for strategy analysis  which is able to show you whether an condition record could be found and via which access sequence.
    then a button for the Determination Log  where you can see the details of all 5 steps that are carried out in a batch determination. And finally the Availability check button which actually takes you the CO09.  Here click the scope of check to see whether restricted use stock is customized as available.

  • Error message while loading

    Dear Friends,
    i am getting error message while loading data in the cube, yesterday i got the same error message while loading ODS
    the error message is as follows:
    Value '差旅费 - ERIC BADEN - MEETING WITH E&Y & AYKIM     ' (hex. '5DEE65C58D390020002D002000450052004900430020004200') of charac.
    Thank you
    Mohammad Riaz

    Hi
    It seems that some updates were done on the source system side and whicle entering the value so character has been enetered which is not identifed by the Bw system.
    The data has to be corrected in the source system, you will have to confirm it with your client that what the data should be and for the tiem being you can load it till PSA and correct the data in PSA, and push it manually.
    Give the PSA details to your client, it will conatin the data in source system format, and they will know what value has to be changed.
    Hope this helps
    Regards
    Shilpa

  • Error message while doing MIGO.

    Hi,
    I am getting error message while doing MIGO. Can some one help me out in this issue.
    Consolidated companies 0 and 5686 are different
    Message no. F5 080
    Diagnosis
    The number of the affiliated company must be clear for the selected document type for all line items. In this case at least two different companies or a company in connection with a business partner who does not belong to a company are stated.
    Procedure
    If you selected the correct accounts, you must enter the document with a document type that allows cross-company posting. Otherwise, please correct the entered account.
    Thanks in Advance,
    Subhajo

    Check Fi customizing in OBA7.
    As you mentioned MIGO, I assume you are doing goods receipt, so you use document type WE.
    Within WE you must not have selected  the field inter-company posting .
    Best you place the cursor into this field and press F1 for detailed explanation,

  • Error message while Solaris 10 installation

    I got that error message while installation without knowing the actual reason behind it :
    Searching for configuration file //cdrom/solaris_10/misc/install_config/sysidcfg
    Could not find file.
    Searching for Jumpstart directory : not found
    could not find matching rule in rules.ok

    OK, reinstalled XP, and problem solved.

  • Bearts Audio Control Pannel will not open. Get error message cannot find startup file

    Bearts Audio Control Pannel will not open. Get error message cannot find startup file!
    Downloaded and instaled up-date for IDT audio from driver up-date. After installation could no longer oppen Beats Audio Control Pannel.  Looked for download to re-install BEATS Audio but cannot find one.
    Any suggestions.
    Sound works with IDT driver installed.
    Pavilion P7-1500Z

    Hi,
    Try using Recovery Manager to reinstall the IDT HD Audio Driver ( this will also reinstall the Beats Audio interface ) - the procedure for using recovery manager to reinstall Software and Drivers is detailed in the document on the link below.
    Recovery Manager - Windows 8.
    Recovery Manager - Windows 7
    After the reinstallation has completed, restart the PC.
    Regards,
    DP-K
    ****Click the White thumb to say thanks****
    ****Please mark Accept As Solution if it solves your problem****
    ****I don't work for HP****
    Microsoft MVP - Windows Experience

Maybe you are looking for

  • My front camera won't load, how can I fix it?

    My regular camera is working, however, when I try to flip it the camera will not load!

  • WEB DMS

    Hi SAP Gurus, i have some basic Quires to be clarified regarding WEB DMS, Does Accessing documents through WEB DMS Documents require SAP Logon ID and Password, as i tried opening up the WEB DMS Link in different user System of my clients, but it did

  • T-code to find the capacity of the machine.

    HI Experts, I have a scenario for Process industry, In Resources i define formula for Capacity & scheduling , In Master Recipe i give the value to my formula and as per get the Capacity availibility & Scheduling time. i want to know Is there any T-co

  • Opening an e-mail is empty

    Evrything was working fine and then suddely when I open any e-mail, it's empty, no content. In the mail Inbox it's showing 3 lines. Anybody know what to do?

  • I need google as my browser and starting page instead of aol

    I installed firefox 4 and the starting page and browser was changed to aol.I need to get back Google