Need urgent help on this error "oracle.jbo.AttrValException: JBO-27019"

This is regarding Print Quote eror.
"oracle.jbo.AttrValException: JBO-27019"
I am facing the above error .(I am new to OA Framework) whenever i tried to add a new column to the select query 'Comp_info' .
My development has come to an Halt really :(
The code is :
<?xml version="1.0" encoding='windows-1252'?>
<!DOCTYPE ViewObject SYSTEM "jbo_03_01.dtd">
<!-- $Header: LinesVO.xml 115.3 2003/12/30 07:01:46 asetti noship $-->
<ViewObject
Name="LinesVO"
BindingStyle="Oracle"
CustomQuery="true"
RowClass="oracle.apps.aso.print.server.LinesVORowImpl"
ComponentClass="oracle.apps.aso.print.server.LinesVOImpl"
MsgBundleClass="oracle.jbo.common.JboResourceBundle"
FetchMode="FETCH_AS_NEEDED"
Passivate="None"
UseGlueCode="false" >
<SQLQuery><![CDATA[
SELECT
qte.ui_line_number line_number
,qte.padded_concatenated_segments item_number
,qte.item_description item_description
,qte.uom_code Order_Quantity_Uom
,DECODE(qte.line_category_code, 'RETURN', qte.quantity*(-1), qte.quantity) Ordered_Quantity
,qte.line_category_code
,qte.service_ref_line_id
,UPPER(qte.service_ref_type_code) srv_ref_type_code
,DECODE(qte.line_category_code, 'RETURN', qte.line_list_price*(-1), qte.line_list_price) unit_list_price
,DECODE(qte.line_category_code, 'RETURN', qte.line_adjusted_amount*(-1), qte.line_adjusted_amount) line_adj_price
,DECODE(qte.line_category_code, 'RETURN', qte.line_quote_price*(-1), qte.line_quote_price) unit_selling_price
,DECODE(qte.line_category_code, 'RETURN', qte.extended_list_price*(-1), qte.extended_list_price) line_total_list_price
,DECODE(qte.line_category_code, 'RETURN', qte.extended_adjusted_amount*(-1), qte.extended_adjusted_amount) line_total_adj_amt
,DECODE(qte.line_category_code, 'RETURN', qte.extended_selling_price*(-1), qte.extended_selling_price) line_total
,line_number old_line_number
,to_char(qte.start_date_active,nvl(FND_PROFILE.VALUE('ICX_DATE_FORMAT_MASK'), 'DD-MON-RRRR')) start_date_active
,to_char(qte.end_date_active,nvl(FND_PROFILE.VALUE('ICX_DATE_FORMAT_MASK'), 'DD-MON-RRRR')) end_date_active
,qte.service_duration
,qte.service_period
,qte.item_type_code
,decode(qte.item_type_code, 'MDL', NVL(qte.complete_configuration_flag, 'N'), 'Z') Model_Status
,qte.quote_line_id qlid
,qte.quote_header_id
,DECODE(qte.line_category_code,
'RETURN',
(select qte.quantity * (nvl(sum(decode(apav.applied_flag,'Y',decode(apav.charge_type_code,NULL,0,apav.adjusted_amount),0) ), 0))
FROM aso_price_adjustments_v apav
where qte.quote_line_id = apav.quote_line_id )*(-1),
(select qte.quantity * (nvl(sum(decode(apav.applied_flag,'Y',decode(apav.charge_type_code,NULL,0,apav.adjusted_amount),0) ), 0))
FROM aso_price_adjustments_v apav
where qte.quote_line_id = apav.quote_line_id )) line_charges
,DECODE(qte.line_category_code,
'RETURN',
(decode(qte.item_type_code,
'MDL',
decode (qte.config_header_id,
NULL,
qte.extended_selling_price,
(select sum(QUOTE_LINES.LINE_QUOTE_PRICE * QUOTE_LINES.QUANTITY)
from ASO_QUOTE_LINES_ALL QUOTE_LINES,
ASO_QUOTE_LINE_DETAILS QUOTE_LINE_DETAILS
where quote_line_details.config_header_id=qte.config_header_id
and quote_line_details.quote_line_id =quote_lines.quote_line_id)),
qte.extended_selling_price))*(-1),
(decode(qte.item_type_code,
'MDL',
decode (qte.config_header_id,
NULL,
qte.extended_selling_price,
(select sum(QUOTE_LINES.LINE_QUOTE_PRICE * QUOTE_LINES.QUANTITY)
from ASO_QUOTE_LINES_ALL QUOTE_LINES,
ASO_QUOTE_LINE_DETAILS QUOTE_LINE_DETAILS
where quote_line_details.config_header_id=qte.config_header_id
and quote_line_details.quote_line_id =quote_lines.quote_line_id)),
qte.extended_selling_price))) model_total
,qte.attribute3 Comp_Info
FROM
aso_pvt_quote_lines_bali_v qte
]]></SQLQuery>
<DesignTime>
<Attr Name="_isCodegen" Value="true" />
<Attr Name="_version" Value="9.0.3.11.21" />
<Attr Name="_CodeGenFlagNew" Value="36" />
</DesignTime>
<ViewAttribute
Name="LineNumber"
IsQueriable="false"
IsPersistent="false"
Precision="4000"
Type="java.lang.String"
AliasName="UI_LINE_NUMBER"
ColumnType="VARCHAR2"
Expression="UI_LINE_NUMBER"
SQLType="VARCHAR" >
<DesignTime>
<Attr Name="_DisplaySize" Value="4000" />
</DesignTime>
</ViewAttribute>
<ViewAttribute
Name="ItemNumber"
IsQueriable="false"
IsPersistent="false"
Precision="30"
Type="java.lang.String"
AliasName="LINE_SEGMENT"
ColumnType="VARCHAR2"
Expression="LINE_SEGMENT"
SQLType="VARCHAR" >
<DesignTime>
<Attr Name="_DisplaySize" Value="30" />
</DesignTime>
</ViewAttribute>
<ViewAttribute
Name="comp_product"
IsQueriable="false"
IsPersistent="false"
Precision="30"
Type="java.lang.String"
AliasName="comp_product"
ColumnType="VARCHAR2"
Expression="comp_product"
SQLType="VARCHAR" >
<DesignTime>
<Attr Name="_DisplaySize" Value="30" />
</DesignTime>
</ViewAttribute>
<ViewAttribute
Name="ItemDescription"
IsQueriable="false"
IsPersistent="false"
Precision="240"
Type="java.lang.String"
AliasName="LINE_DESC"
ColumnType="VARCHAR2"
Expression="LINE_DESC"
SQLType="VARCHAR" >
<DesignTime>
<Attr Name="_DisplaySize" Value="240" />
</DesignTime>
</ViewAttribute>
<ViewAttribute
Name="OrderQuantityUom"
IsQueriable="false"
IsPersistent="false"
IsNotNull="true"
Precision="3"
Type="java.lang.String"
AliasName="LINE_UOM_CODE"
ColumnType="VARCHAR2"
Expression="LINE_UOM_CODE"
SQLType="VARCHAR" >
<DesignTime>
<Attr Name="_DisplaySize" Value="3" />
</DesignTime>
</ViewAttribute>
<ViewAttribute
Name="OrderedQuantity"
IsQueriable="false"
IsPersistent="false"
IsNotNull="true"
Precision="255"
Type="oracle.jbo.domain.Number"
AliasName="LINE_QTY"
ColumnType="VARCHAR2"
Expression="LINE_QTY"
SQLType="NUMERIC" >
<DesignTime>
<Attr Name="_DisplaySize" Value="22" />
</DesignTime>
</ViewAttribute>
<ViewAttribute
Name="LineCategoryCode"
IsQueriable="false"
IsPersistent="false"
Precision="30"
Type="java.lang.String"
AliasName="LINE_CATEGORY_CODE"
ColumnType="VARCHAR2"
Expression="LINE_CATEGORY_CODE"
SQLType="VARCHAR" >
<DesignTime>
<Attr Name="_DisplaySize" Value="30" />
</DesignTime>
</ViewAttribute>
<ViewAttribute
Name="ServiceRefLineId"
IsQueriable="false"
IsPersistent="false"
Type="oracle.jbo.domain.Number"
AliasName="SERVICE_REF_LINE_ID"
ColumnType="VARCHAR2"
Expression="SERVICE_REF_LINE_ID"
SQLType="NUMERIC" >
<DesignTime>
<Attr Name="_DisplaySize" Value="22" />
</DesignTime>
</ViewAttribute>
<ViewAttribute
Name="SrvRefTypeCode"
IsQueriable="false"
IsPersistent="false"
Precision="30"
Type="java.lang.String"
AliasName="SRV_REF_TYPE_CODE"
ColumnType="VARCHAR2"
Expression="SRV_REF_TYPE_CODE"
SQLType="VARCHAR" >
<DesignTime>
<Attr Name="_DisplaySize" Value="30" />
</DesignTime>
</ViewAttribute>
<ViewAttribute
Name="UnitListPrice"
IsQueriable="false"
IsPersistent="false"
Precision="255"
Type="oracle.jbo.domain.Number"
AliasName="LINELIST_PRICE"
ColumnType="VARCHAR2"
Expression="LINELIST_PRICE"
SQLType="NUMERIC" >
<DesignTime>
<Attr Name="_DisplaySize" Value="22" />
</DesignTime>
</ViewAttribute>
<ViewAttribute
Name="LineAdjPrice"
IsQueriable="false"
IsPersistent="false"
Type="oracle.jbo.domain.Number"
AliasName="LINE_ADJ_PRICE"
ColumnType="VARCHAR2"
Expression="LINE_ADJ_PRICE"
SQLType="NUMERIC" >
<DesignTime>
<Attr Name="_DisplaySize" Value="22" />
</DesignTime>
</ViewAttribute>
<ViewAttribute
Name="UnitSellingPrice"
IsQueriable="false"
IsPersistent="false"
Precision="255"
Type="oracle.jbo.domain.Number"
AliasName="LINE_NET_PRICE"
ColumnType="VARCHAR2"
Expression="LINE_NET_PRICE"
SQLType="NUMERIC" >
<DesignTime>
<Attr Name="_DisplaySize" Value="22" />
</DesignTime>
</ViewAttribute>
<ViewAttribute
Name="LineTotalListPrice"
IsQueriable="false"
IsPersistent="false"
Type="oracle.jbo.domain.Number"
AliasName="LINE_TOTAL_LIST_PRICE"
ColumnType="VARCHAR2"
Expression="LINE_TOTAL_LIST_PRICE"
SQLType="NUMERIC" >
<DesignTime>
<Attr Name="_DisplaySize" Value="22" />
</DesignTime>
</ViewAttribute>
<ViewAttribute
Name="LineTotalAdjAmt"
IsQueriable="false"
IsPersistent="false"
Type="oracle.jbo.domain.Number"
AliasName="LINE_TOTAL_ADJ_AMT"
ColumnType="VARCHAR2"
Expression="LINE_TOTAL_ADJ_AMT"
SQLType="NUMERIC" >
<DesignTime>
<Attr Name="_DisplaySize" Value="22" />
</DesignTime>
</ViewAttribute>
<ViewAttribute
Name="LineTotal"
IsQueriable="false"
IsPersistent="false"
Precision="255"
Type="oracle.jbo.domain.Number"
AliasName="LINE_TOTAL_NET_PRICE"
ColumnType="VARCHAR2"
Expression="LINE_TOTAL_NET_PRICE"
SQLType="NUMERIC" >
<DesignTime>
<Attr Name="_DisplaySize" Value="22" />
</DesignTime>
</ViewAttribute>
<ViewAttribute
Name="OldLineNumber"
IsQueriable="false"
IsPersistent="false"
Precision="255"
Type="oracle.jbo.domain.Number"
AliasName="LINE_NUMBER"
ColumnType="VARCHAR2"
Expression="LINE_NUMBER"
SQLType="NUMERIC" >
<DesignTime>
<Attr Name="_DisplaySize" Value="22" />
</DesignTime>
</ViewAttribute>
<ViewAttribute
Name="StartDateActive"
IsQueriable="false"
IsPersistent="false"
DiscrColumn="true"
Precision="255"
Type="java.lang.String"
AliasName="START_DATE_ACTIVE"
ColumnType="VARCHAR2"
Expression="START_DATE_ACTIVE"
SQLType="VARCHAR" >
<DesignTime>
<Attr Name="_DisplaySize" Value="7" />
</DesignTime>
</ViewAttribute>
<ViewAttribute
Name="EndDateActive"
IsQueriable="false"
IsPersistent="false"
Precision="255"
Type="java.lang.String"
AliasName="END_DATE_ACTIVE"
ColumnType="VARCHAR2"
Expression="END_DATE_ACTIVE"
SQLType="VARCHAR" >
<DesignTime>
<Attr Name="_DisplaySize" Value="7" />
</DesignTime>
</ViewAttribute>
<ViewAttribute
Name="ServiceDuration"
IsQueriable="false"
IsPersistent="false"
Type="oracle.jbo.domain.Number"
AliasName="SERVICE_DURATION"
ColumnType="VARCHAR2"
Expression="SERVICE_DURATION"
SQLType="NUMERIC" >
<DesignTime>
<Attr Name="_DisplaySize" Value="22" />
</DesignTime>
</ViewAttribute>
<ViewAttribute
Name="ServicePeriod"
IsQueriable="false"
IsPersistent="false"
Precision="3"
Type="java.lang.String"
AliasName="SERVICE_PERIOD"
ColumnType="VARCHAR2"
Expression="SERVICE_PERIOD"
SQLType="VARCHAR" >
<DesignTime>
<Attr Name="_DisplaySize" Value="3" />
</DesignTime>
</ViewAttribute>
<ViewAttribute
Name="ItemTypeCode"
IsQueriable="false"
IsPersistent="false"
Precision="30"
Type="java.lang.String"
AliasName="ITEM_TYPE_CODE"
ColumnType="VARCHAR2"
Expression="ITEM_TYPE_CODE"
SQLType="VARCHAR" >
<DesignTime>
<Attr Name="_DisplaySize" Value="30" />
</DesignTime>
</ViewAttribute>
<ViewAttribute
Name="ModelStatus"
IsUpdateable="false"
IsQueriable="false"
IsPersistent="false"
Precision="1"
Type="java.lang.String"
ColumnType="VARCHAR2"
Expression="ModelStatus"
SQLType="VARCHAR" >
</ViewAttribute>
<ViewAttribute
Name="Qlid"
IsQueriable="false"
IsPersistent="false"
IsNotNull="true"
Precision="1"
Type="oracle.jbo.domain.Number"
AliasName="QLID"
ColumnType="VARCHAR2"
Expression="QLID"
SQLType="NUMERIC" >
<DesignTime>
<Attr Name="_DisplaySize" Value="22" />
</DesignTime>
</ViewAttribute>
<ViewAttribute
Name="QuoteHeaderId"
IsQueriable="false"
IsPersistent="false"
IsNotNull="true"
Type="oracle.jbo.domain.Number"
AliasName="QUOTE_HEADER_ID"
ColumnType="VARCHAR2"
Expression="QUOTE_HEADER_ID"
SQLType="NUMERIC" >
<DesignTime>
<Attr Name="_DisplaySize" Value="22" />
</DesignTime>
</ViewAttribute>
<ViewAttribute
Name="LineCharges"
IsQueriable="false"
IsPersistent="false"
Precision="255"
Type="oracle.jbo.domain.Number"
AliasName="LINE_TOTAL_CHARGES"
ColumnType="VARCHAR2"
Expression="LINE_TOTAL_CHARGES"
SQLType="NUMERIC" >
<DesignTime>
<Attr Name="_DisplaySize" Value="22" />
</DesignTime>
</ViewAttribute>
<ViewAttribute
Name="ModelTotal"
IsQueriable="false"
IsPersistent="false"
Precision="255"
Type="oracle.jbo.domain.Number"
AliasName="MODEL_TOTAL"
ColumnType="VARCHAR2"
Expression="MODEL_TOTAL"
SQLType="NUMERIC" >
<DesignTime>
<Attr Name="_DisplaySize" Value="22" />
</DesignTime>
</ViewAttribute>
<ViewAttribute
Name="Comp_Info"
IsQueriable="false"
IsPersistent="false"
Precision="30"
Type="java.lang.String"
AliasName="Comp_Info"
ColumnType="VARCHAR2"
Expression="Comp_Info"
SQLType="VARCHAR" >
<DesignTime>
<Attr Name="_DisplaySize" Value="30" />
</DesignTime>
</ViewAttribute>
<ViewLinkAccessor
Name="ServiceToOrderLineVO"
ViewLink="oracle.apps.aso.print.server.ServiceToOrderLineVL"
Type="oracle.jbo.RowIterator"
IsUpdateable="false" >
</ViewLinkAccessor>
<ViewLinkAccessor
Name="ServiceToInstBaseVO"
ViewLink="oracle.apps.aso.print.server.ServiceToInstBaseVL"
Type="oracle.jbo.RowIterator"
IsUpdateable="false" >
</ViewLinkAccessor>
<ViewLinkAccessor
Name="QuoteLineChargesVO"
ViewLink="oracle.apps.aso.print.server.QuoteLineChargesVL"
Type="oracle.jbo.RowIterator"
IsUpdateable="false" >
</ViewLinkAccessor>
<ViewLinkAccessor
Name="QuoteLineTaxesVO"
ViewLink="oracle.apps.aso.print.server.QuoteLineTaxesVL"
Type="oracle.jbo.RowIterator"
IsUpdateable="false" >
</ViewLinkAccessor>
<ViewLinkAccessor
Name="LineTemplateVO"
ViewLink="oracle.apps.aso.print.server.LineTemplateVL"
Type="oracle.jbo.RowIterator"
IsUpdateable="false" >
</ViewLinkAccessor>
<ViewLinkAccessor
Name="LineAttachmentVO"
ViewLink="oracle.apps.aso.print.server.LineAttachmentVL"
Type="oracle.jbo.RowIterator"
IsUpdateable="false" >
</ViewLinkAccessor>
</ViewObject>
It gives me an error as "oracle.jbo.AttrValException: JBO-27019: Get method for attribute "comp_info" in LinesVO_HeaderLinesVL_LinesVO could not be resolved.
I have added the getter and setter as well in the RowImpl.java file but still its givn this error.
I need to add many more columns after this error is solved.
I tried all permutation n combination but all in vain.
Any help on this would be highly appreciated.
Thanks,
Ajit

Ajit,
Writing getter/setter methods manually is not a good idea, when jdev provides u that facility. Moreover in ur case i m getting a feeling as if ur VO mappings are corrupted. Can u try one thing ,assuming this is a custom VO,Delete the VO from the project and delete all related files in myclasses and my projects.Recreate the VO with all the attributes and try if same error is coming.
--Mukul                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

Similar Messages

  • Need to do a remote wipe of my iphone - stolen 24 hrs ago and . Need urgent help on this. Thanks - Pinaki

    Need to do a remote wipe of my iphone - stolen 24 hrs ago  Need urgent help on this. Thanks - Pinaki
    < Personal Information Edited By Host >

    Follow the steps in this article:
    iCloud: Erase your device
    Sign in to icloud.com/#find with your Apple ID (the one you use with iCloud), then click Find My iPhone.If you’re using another iCloud app, click the app’s name at the top of the iCloud.com window, then click Find My iPhone.If you don’t see Find My iPhone on iCloud.com, your account just has access to iCloud web-only features. To gain access to other iCloud features, set up iCloud on your iOS device or Mac.
    Click All Devices, then select the device you want to erase.If you have Family Sharing set up, your family members’ devices appear below their names.
    In the device’s Info window, click Erase [device].
    To erase:
    An iOS device: Enter your Apple ID password. If the device you’re erasing has iOS 7 or later, enter a phone number and message. The number and message will be displayed on the screen after the device is erased.

  • Need Urgent help on Logging error

    Hi ,
    In my project we are using Log4j 1.3 alpha. and we have commons-logging.jar(1.0.4) also. I am trying to deploying my application to stand alone OC4J from jdeveloper it was deployed successfully. I am trying to run one jsp in the browser http://localhost:8888/jsp/menu.jsp. I am getting the following error
    500 Internal Server Error
    java.lang.NoSuchFieldError: INFO
         at org.apache.commons.logging.impl.Log4JLogger.info(Log4JLogger.java:152)
         at org.apache.struts.util.PropertyMessageResources.<init>(PropertyMessageResources.java:127)
         at org.apache.struts.util.PropertyMessageResourcesFactory.createResources(PropertyMessageResourcesFactory.java:90)
         at org.apache.struts.util.MessageResources.getMessageResources(MessageResources.java:577)
         at org.apache.struts.taglib.html.HtmlTag.<clinit>(HtmlTag.java:96)
         at java.lang.Class.forName0(Native Method)
         at java.lang.Class.forName(Class.java:141)
         at jsp.admin._S__RS030__101.class$(_S__RS030__101.java:48)
         [SRC:/jsp/admin/S_RS030_101.jsp:5]
         at jsp.admin._S__RS030__101._jspService(_S__RS030__101.java:48)
         [SRC:/jsp/admin/S_RS030_101.jsp:5]
         at com.orionserver[Oracle Application Server Containers for J2EE 10g (9.0.4.0.0)].http.OrionHttpJspPage.service(OrionHttpJspPage.java:56)
         at oracle.jsp.runtimev2.JspPageTable.compileAndServe(JspPageTable.java:567)
         at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:302)
         at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:509)
         at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:413)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at com.evermind[Oracle Application Server Containers for J2EE 10g (9.0.4.0.0)].server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:765)
         at com.evermind[Oracle Application Server Containers for J2EE 10g (9.0.4.0.0)].server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:317)
         at com.evermind[Oracle Application Server Containers for J2EE 10g (9.0.4.0.0)].server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:790)
         at com.evermind[Oracle Application Server Containers for J2EE 10g (9.0.4.0.0)].server.http.HttpRequestHandler.run(HttpRequestHandler.java:270)
         at com.evermind[Oracle Application Server Containers for J2EE 10g (9.0.4.0.0)].server.http.HttpRequestHandler.run(HttpRequestHandler.java:112)
         at com.evermind[Oracle Application Server Containers for J2EE 10g (9.0.4.0.0)].util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:192)
         at java.lang.Thread.run(Thread.java:534)
    I am working on this error for 2 days.We are using struts1.1.Is there any compatibility issue between log4j and commons-logging.jar file.We are using log4j.xml file for the configuration. I checked it and it is ok. I am not able to know where is the problem. Any Help?
    Thanks,
    Reddy

    Hi ,
    In my project we are using Log4j 1.3 alpha. and we have commons-logging.jar(1.0.4) also. I am trying to deploying my application to stand alone OC4J from jdeveloper it was deployed successfully. I am trying to run one jsp in the browser http://localhost:8888/jsp/menu.jsp. I am getting the following error
    500 Internal Server Error
    java.lang.NoSuchFieldError: INFO
         at org.apache.commons.logging.impl.Log4JLogger.info(Log4JLogger.java:152)
         at org.apache.struts.util.PropertyMessageResources.<init>(PropertyMessageResources.java:127)
         at org.apache.struts.util.PropertyMessageResourcesFactory.createResources(PropertyMessageResourcesFactory.java:90)
         at org.apache.struts.util.MessageResources.getMessageResources(MessageResources.java:577)
         at org.apache.struts.taglib.html.HtmlTag.<clinit>(HtmlTag.java:96)
         at java.lang.Class.forName0(Native Method)
         at java.lang.Class.forName(Class.java:141)
         at jsp.admin._S__RS030__101.class$(_S__RS030__101.java:48)
         [SRC:/jsp/admin/S_RS030_101.jsp:5]
         at jsp.admin._S__RS030__101._jspService(_S__RS030__101.java:48)
         [SRC:/jsp/admin/S_RS030_101.jsp:5]
         at com.orionserver[Oracle Application Server Containers for J2EE 10g (9.0.4.0.0)].http.OrionHttpJspPage.service(OrionHttpJspPage.java:56)
         at oracle.jsp.runtimev2.JspPageTable.compileAndServe(JspPageTable.java:567)
         at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:302)
         at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:509)
         at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:413)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at com.evermind[Oracle Application Server Containers for J2EE 10g (9.0.4.0.0)].server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:765)
         at com.evermind[Oracle Application Server Containers for J2EE 10g (9.0.4.0.0)].server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:317)
         at com.evermind[Oracle Application Server Containers for J2EE 10g (9.0.4.0.0)].server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:790)
         at com.evermind[Oracle Application Server Containers for J2EE 10g (9.0.4.0.0)].server.http.HttpRequestHandler.run(HttpRequestHandler.java:270)
         at com.evermind[Oracle Application Server Containers for J2EE 10g (9.0.4.0.0)].server.http.HttpRequestHandler.run(HttpRequestHandler.java:112)
         at com.evermind[Oracle Application Server Containers for J2EE 10g (9.0.4.0.0)].util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:192)
         at java.lang.Thread.run(Thread.java:534)
    I am working on this error for 2 days.We are using struts1.1.Is there any compatibility issue between log4j and commons-logging.jar file.We are using log4j.xml file for the configuration. I checked it and it is ok. I am not able to know where is the problem. Any Help?
    Thanks,
    Reddy

  • Need Urgent Help with trigger in Oracle 10g

    Hello frd,
    I am working on my DBMS Project in VB 6.0 that is Tollbooth management system
    i have to insert one trigger for my project so i had decided to insert time trigger.
    I have total 3 table UserLogin, Vehice and Vehicle_Data
    the 3rd table Vehicle data contain the following fields
    Vehicle_Type, Vehicle_No, Tax_Time, Source, Destination and Tax
    Now i had done coding for tax when you select Vehicle Type, Source and Destination the Tax Field will automatically fillup and all the data will Saved in Oracle table but now my problem is that i want to create trigger for Tax_Time column When any new data inserted current time will stored in that column
    I had create one but it gives error
    create trigger time after insert on vehicle_Data
    for each row
    begin
    insert into Vehicle_Data(Tax_Time) values(to_char(sysdate, 'HH:MI:SSAM DD_MON_YYYY'));
    end;
    Note: I am Using VB 6.0 and Oracle 10g Express Edition

    I had create one but it gives errorWelcome to the forum and many many thanks for not posting the full error message, that is really helpful, since we're all a 100% sure what's going on now (yes, that was ironic ;) ).
    Let me guess: a mutating table error?
    Read:
    http://www.oracle-base.com/articles/9i/MutatingTableExceptions.php
    http://asktom.oracle.com/pls/asktom/ASKTOM.download_file?p_file=6551198119097816936
    But before that, actually you should read:
    http://tkyte.blogspot.com/2005/06/how-to-ask-questions.html

  • Plz  need your help for this  error code :1 (FBAPIErrorDomain)

    After installed IOS7 i can not use Facebook application and i'm already remove the application and re install again but when i login found this message                Sorry , an unexpected error occurred please try again lare , error code :1 (FBAPIErrorDomain)

    Here is the solution. I like to play candy crush saga on my iPhone five. I cannot wait the allotted time frame to get extra lives. So what I have done is gone into the date and time settings of my phone and made the date in the future to speed up the process. All you have to do to fix this problem is to make the time and date on your phone or your iPad or your computer the correct time and date for today. The server certificates for most websites have expiration dates. How are machines are set up to revoke permission if you are trying to access the websites after the certificate expiration date. It's a real easy fix. Summary: make the time and date on your phone, computer, iPad today's date and current time, it should work after that.

  • BW error. Need urgent Help( I will give out full points).

    We have BW version 3.1 and content 3.3.
    We are doing loads to ODS and getting oracle partition error. It gives Oracle partition error ORA-14400. inserted partition key doesn't map to any parititon.
    The exception must either be prevented, caught within the procedure               
    "INSERT_ODS"                                                                     
    (FORM)", or declared in the procedure's RAISING clause.                          
    o prevent the exception, note the following:                                     
    atabase error text........: "ORA-14400: inserted partition key does not map to   
    any partition"                                                                   
    nternal call code.........: "[RSQL/INSR//BIC/B0000401000 ]"                      
    lease check the entries in the system log (Transaction SM21).                                                                               
    ou may able to find an interim solution to the problem                           
    n the SAP note system. If you have access to the note system yourself,           
    se the following search criteria:                                                
    The termination occurred in the ABAP program "GP3WRFMGVS1D8IW16LLGSL4QQKH " in       
    "INSERT_ODS".                                                                       
    he main program was "SAPMSSY1 ".                                                                               
    he termination occurred in line 41 of the source code of the (Include)              
    program "GP3WRFMGVS1D8IW16LLGSL4QQKH "                                              
    f the source code of program "GP3WRFMGVS1D8IW16LLGSL4QQKH " (when calling the       
    editor 410).                                                                        
    rocessing was terminated because the exception "CX_SY_OPEN_SQL_DB" occurred in      
    the                                                                               
    rocedure "INSERT_ODS" "(FORM)" but was not handled locally, not declared in         
    the                                                                               
    AISING clause of the procedure.                                                     
    he procedure is in the program "GP3WRFMGVS1D8IW16LLGSL4QQKH ". Its source code      
    starts in line 21                                                                   
    f the (Include) program "GP3WRFMGVS1D8IW16LLGSL4QQKH ".                                                                               
    Please help me guys. I will award points for good answers.

    Dear Sir,
    Now I have got the problem like yours (load to ODS and ORACLE partition error ORA-14400 with INSERT_ODS). Tell me, please - did you solve this problem?
    Can you recommend me something? What did you do with partitions?
    Help me, please - I need urgent help too.
    GLEB ([email protected])
    P.S. Sorry for my English, I haven’t got any language practice for a long time.

  • I need some help. im getting error -69 when trying to sync my ipod. i dont kno what to do. ive tried googling as much info as i can on this but i cant seem to find a answer to get me off to a good starting point. i back all my music up on a hard drive.

    i need some help. im getting error -69 when trying to sync my ipod. i dont kno what to do. ive tried googling as much info as i can on this subject but i cant seem to find a answer to get me off to a good starting point. i back all my music up on a external hard drive.

    If the file was not originally from iTunes, you'll need to redownload it from it's original source or rerip it from the CD.  Files can sometimes go bad and become corrupted.  As to how or why that happens, there are a number of ways.
    What format are the problematic tracks in? Have you tried converting them to another format in iTunes?
    iTunes: How to convert a song to a different file format
    B-rock

  • Need urgent help. I have been trying to resolve this problem to no avail. I am able to preview my sp

    Need urgent help. I have been trying to resolve this problem to no avail. I am able to preview my sprymenu on my local browsers opera, google crome, and IE but when it is uploaded, the sprymenu squashes to the left hand side.

    Please get your checkbook ready. (Only kidding.)
    Have you ever done a hard factory reset of your Airport Express base? If not, then try it. Push down the reset button with a pen, then keep it depressed as you plug AX into the wall and keep holding it down until the green light blinks 4 times and then turns amber. Then let go. Unplug your broadband modem for a couple of minutes and shut down your Mac. First restart the modem, then the Mac. Use Airport Setup Assistant to set up a new network from scratch.
    In System Prefs > Network > Show > Network Port Configurations drop n drag Airport to the top of the list and deselect all port configurations that you do not use.
    That's a start.

  • Need urgent help! - I accidentally sycn my friend's iphone account to my company's phone. I could not swich back to my own icloud account because of the icloud password i enter was incorrect. My friend does not use this icloud account since age.

    Need urgent help! - I accidentally sync my friend's iphone account to my company's iphone. I could not switch back to my own icloud account because of the icloud password i enter was incorrect. My friend does not use this icloud account since age only remember 1 password which i already try but iphone shown that " incorrect password" I checked on icloud ID and try to log in but it shown as " You Apple ID was disable for security reason. To enable your account must reset password" but so bad again, the email address that he used to create icloud ID also lock for security reason. May Apple Supporter please help reset it ASAP? I can verify that I am the iphone's owner, as it belong to company's phone.

    Have your company IT department get proof that the company was the
    original purchaser of the iPhone and visit a physical Apple store with
    proof of original purchase, proof that person is company representative,
    and the iPhone - Apple may be able to help. If no physical Apple store,
    contact Apple - you will still need the same items of proof.

  • I need URGENT help, My company just changed all our iphones to Samsung Notes and i am now unable to get ANY messages from current iphone friends and colleagues colleagues.... This is certainly unfair and inconvenient.... Once loved apple not so much now

    I need URGENT help, My company just changed all our iphones to Samsung Notes and i am now unable to get ANY messages from current iphone friends and colleagues colleagues.... This is certainly unfair and inconvenient.... Once loved apple not so much now

    Go to: https://supportprofile.apple.com/MySupportProfile.do
    Log in if not already logged in.
    Click on "Edit Products"
    Click on the "X" to the right of the product.
    Click "Unregister".
    If that doesn't work, you're going to need to call AppleCare and have them remove your phone from the system.
    Best of luck.

  • Error 1603: Need some help with this one

    When installing iTunes I first get an error box saying
    "Error 1406: Could not write value to key \Software\classes\.cdda\OpenWithList\iTunes.exe. Verify that you have sufficient access to that key, or contact your support personnel."
    The second one (after I click on Ignore on the last box) I get it this one:
    "Error: -1603 Fatal error during installation.
    Consult Windows Installer Help (Msi.chm) or MSDN for more information"
    Strange thing is that I do have full access to my computer (or atleast in all other cases I have had since I am the only one with an account on it).
    I have done my best in trying to solve it myself but I'm running out of ideas. I have downloaded latest versions from the website and tried installing Quicktime separately. I have also tried removing Quicktime using add/or remove programs though I just I didn't dare to take full removal because it said something about system files.
    Anyway I really need some help with this, anyone got any ideas?
    Greets,
    Sixten
      Windows XP Pro  

    Do you know how to count backwards? Do you know how to construct a loop? Do you know what an autodecrementor is? Do you know how to use String length? Do you know Java arrays start with index 0 and run to length-1? Do you know you use length on arrays too? Do you know what System.out.println does?
    Show us what you have, there isn't anything here that isn't easily done the same as it would be on paper.

  • Need urgent help with Error -200018

    hi all,
    I'm trying to generate analog signals using 8 channels of pxi 6733 (basically from this generation), and it works well (sample rate 1MHz, with 10000 samples per buffer).
    At the same time, I want to fetch the generated analog signals using pxi 5105 (basically using niScope Stream to Disk Queues Win32 File IO_Basic.vi from here), and it runs with no problem. (sample rate 20MHz).
    BUT, when I try to get them running together at the same time, I got the error -200018:
    "A DAC conversion is started before the data to be converted were available.
    Decrease the output frequency to increase the period between two DAC conversions, or reduce the size of the output buffer to the data faster (faster) to write.
    When using an external clock, check whether the signal contains noise or voltage spikes."
    And I couldn't find any helps for this error, I've tried to reduce the clock rate of pxi 5105, but doesnt help.
    Any helps are much appreciated.
    Regards,
    Yan.

    Mystogan wrote:
    1. I'm using non regenerative buffer.
    2. I think I'm creating output using onboard buffer.
    This contradicts. Non regenerative generation means that you have to refill the buffer in a required time frame (depending on buffer size and clock speed of generation). So if you generate a signal with 10kHz, you have to refill the buffer with 20kB/s. This is the load for the bus system.
    Look into the specification of the PXIe1082. On page 1-7, you'll see the setup for the PXIe bus in the chassis and how it distributes to the different slots.
    Taking your numbers into account, you have 1MHz generation (so 2MB/s) and 20MHz acquisition (40MB/s) as bus load. Adding some overhead, it is something which should be supported in the chassis in any combination of used slots (since all slots do have x4, with MUXing up to two slots, so leaving transferrate of x2 for each slot).
    So the next questions are:
    What kind of controller are you using?
    How does your software write data to the generation task? Is it possible that the loop performing this is starving in your application software?
    Norbert 
    CEO: What exactly is stopping us from doing this?
    Expert: Geometry
    Marketing Manager: Just ignore it.

  • Need Urgent Help. ORA-12500 with no reason

    I need urgent help.
    I have 8.1.7.2.1 on Win2K.
    I get ORA-12500 error when trying to connect oracle instance. This problem begin to arise only when number of sessions reach a number about 200. At the same time there is no definite boundary for it. Once it happened when there were 216 session, then 196, then 206.
    There rarely (1/100) I get ORA-12514 and after again ORA-12500. Once I got ORA-12600.
    What it might be you think? It can't be a problem in listener.ora or in tnsnames.ora because it works fine if number of sessions is about 100. It tried to restart tnslistener (from lsnrctl and the service) and restarted database (but not the service). I did it different in sequences, but didn't help. What should I do? Is it a known bug?

    I need urgent help.
    I have 8.1.7.2.1 on Win2K.
    I get ORA-12500 error when trying to connect oracle instance. This problem begin to arise only when number of sessions reach a number about 200. At the same time there is no definite boundary for it. Once it happened when there were 216 session, then 196, then 206.
    There rarely (1/100) I get ORA-12514 and after again ORA-12500. Once I got ORA-12600.
    What it might be you think? It can't be a problem in listener.ora or in tnsnames.ora because it works fine if number of sessions is about 100. It tried to restart tnslistener (from lsnrctl and the service) and restarted database (but not the service). I did it different in sequences, but didn't help. What should I do? Is it a known bug? bash-2.03$ oerr ora 12500
    12500, 00000, "TNS:listener failed to start a dedicated server process"
    // *Cause:  The process of starting up a dedicated server process failed.
    // The executable could not be found or the environment may be set up
    // incorrectly.
    // *Action: Turn on tracing at the ADMIN level and reexecute the operation.
    // Verify that the ORACLE Server executable is present and has execute
    // permissions enabled. Ensure that the ORACLE environment is specified
    // correctly in LISTENER.ORA. The Oracle Protocol Adapter that is being
    // called may not be installed on the local hard drive. Please check that
    // the correct Protocol Adapter are successfully linked.
    // If error persists, contact Oracle Customer Support.
    There is not enough info to go on but the problem seems to be either in the listener.ora
    or tnsnames.ora. Did you make any changes before this started occurring?
    William

  • Need urgently help for OBIEE Installation (11g)

    Hi all,
    I am having problems trying to install Oracle Business Intelligence 11g on Windows 7.
    The Installation Wizard hangs on the step: Domain Configuration (0%). The Creating Domain shows In progress.
    The log under the Inventory directory shows me only following:
    INFO: Ending the inventory Session
    INFO: Using an existing InstallAreaControl for this Inventory Session with existing access level 1
    INFO: The ORACLE_CONFIG_HOME env var is set to
    INFO: The ORACLE_CONFIG_HOME env var is set to
    INFO: The ORACLE_CONFIG_HOME env var is set to
    INFO: The ORACLE_CONFIG_HOME env var is set to
    INFO: The ORACLE_CONFIG_HOME env var is set to
    INFO: The ORACLE_CONFIG_HOME env var is set to
    INFO: The ORACLE_CONFIG_HOME env var is set to
    INFO: The ORACLE_CONFIG_HOME env var is set to
    INFO: The ORACLE_CONFIG_HOME env var is set to
    INFO: The ORACLE_CONFIG_HOME env var is set to
    INFO: The ORACLE_CONFIG_HOME env var is set to
    INFO: The ORACLE_CONFIG_HOME env var is set to
    INFO: The ORACLE_CONFIG_HOME env var is set to
    INFO: The ORACLE_CONFIG_HOME env var is set to
    INFO: The ORACLE_CONFIG_HOME env var is set to
    INFO: The ORACLE_CONFIG_HOME env var is set to
    I really don't know what to do. I am searching for a solution on Internet, but I don't find it.
    I need urgently help. I would appreciate someone could help me.
    We can do together via Webex or something similar. It doesnt worth it for me to type here and wait till someone give me an answer (if any), trying to find out how I did.
    I hope to find the help I need. I am desperated :-(

    Can I install the OBIEE 10g version?I am not sure but i think OBIEE is not certified with windows 7. i could not find any MOS doc confirming same. Please log a call with oracle to confirm this.
    would it work fine with the Oracle Database 11g and the RCUs?. Yes OBIEE 10g will work with oracle database 11g.
    Thanks,
    JD

  • Need Urgent Help: Solaris fails to come up after applying patch 120012-14

    Hello All,
    I really need urgent help , as I am in really big problem. Today I applied patches , the last patch I applied was 120012-14.
    After this I rebooted Solaris and it is not coming up now. It is giving me following error, it reboots again and again
    nel/misc/sparcv9/hook: undefined symbol 'netstack_unregister'
    WARNING: mod_load: cannot load module 'hook'
    /kernel/misc/sparcv9/hook: undefined symbol 'netstack_register'
    /kernel/misc/sparcv9/hook: undefined symbol 'netstack_unregister'
    WARNING: mod_load: cannot load module 'hook'
    /kernel/misc/sparcv9/neti: undefined symbol 'netstack_register'
    /kernel/misc/sparcv9/neti: undefined symbol 'hook_event_remove'
    /kernel/misc/sparcv9/neti: undefined symbol 'hook_register'
    /kernel/misc/sparcv9/neti: undefined symbol 'netstack_unregister'
    /kernel/misc/sparcv9/neti: undefined symbol 'hook_family_add'
    /kernel/misc/sparcv9/neti: undefined symbol 'hook_family_remove'
    /kernel/misc/sparcv9/neti: undefined symbol 'hook_unregister'
    /kernel/misc/sparcv9/neti: undefined symbol 'netstack_find_by_stackid'
    /kernel/misc/sparcv9/neti: undefined symbol 'hook_event_add'
    /kernel/misc/sparcv9/neti: undefined symbol 'netstack_rele'
    WARNING: mod_load: cannot load module 'neti'
    WARNING: neti: unable to resolve dependency, module 'misc/hook' not found
    /kernel/drv/sparcv9/ip: undefined symbol 'netstack_find_by_zoneid'
    /kernel/drv/sparcv9/ip: undefined symbol 'net_unregister_event'
    /kernel/drv/sparcv9/ip: undefined symbol 'netstack_register'
    /kernel/drv/sparcv9/ip: undefined symbol 'secpolicy_ip_config'
    /kernel/drv/sparcv9/ip: undefined symbol 'net_register_impl'
    /kernel/drv/sparcv9/ip: undefined symbol 'kstat_delete_netstack'
    /kernel/drv/sparcv9/ip: undefined symbol 'netstack_unregister'
    /kernel/drv/sparcv9/ip: undefined symbol 'secpolicy_ip'
    /kernel/drv/sparcv9/ip: undefined symbol 'hook_run'
    /kernel/drv/sparcv9/ip: undefined symbol 'net_unregister'
    /kernel/drv/sparcv9/ip: undefined symbol 'netstack_find_by_cred'
    /kernel/drv/sparcv9/ip: undefined symbol 'netstackid_to_zoneid'
    /kernel/drv/sparcv9/ip: undefined symbol 'net_register_event'
    /kernel/drv/sparcv9/ip: undefined symbol 'net_unregister_family'
    /kernel/drv/sparcv9/ip: undefined symbol 'kstat_create_netstack'
    /kernel/drv/sparcv9/ip: undefined symbol 'netstack_find_by_stackid'
    /kernel/drv/sparcv9/ip: undefined symbol 'netstack_rele'
    /kernel/drv/sparcv9/ip: undefined symbol 'netstack_hold'
    /kernel/drv/sparcv9/ip: undefined symbol 'netstack_next'
    /kernel/drv/sparcv9/ip: undefined symbol 'net_register_family'
    /kernel/drv/sparcv9/ip: undefined symbol 'netstack_next_init'
    /kernel/drv/sparcv9/ip: undefined symbol 'netstack_next_fini'
    WARNING: mod_load: cannot load module 'ip'
    WARNING: neti: unable to resolve dependency, module 'misc/hook' not found
    /kernel/drv/sparcv9/ip: undefined symbol 'netstack_find_by_zoneid'
    /kernel/drv/sparcv9/ip: undefined symbol 'net_unregister_event'
    /kernel/drv/sparcv9/ip: undefined symbol 'netstack_register'
    /kernel/drv/sparcv9/ip: undefined symbol 'secpolicy_ip_config'
    /kernel/drv/sparcv9/ip: undefined symbol 'net_register_impl'
    /kernel/drv/sparcv9/ip: undefined symbol 'kstat_delete_netstack'
    /kernel/drv/sparcv9/ip: undefined symbol 'netstack_unregister'
    /kernel/drv/sparcv9/ip: undefined symbol 'secpolicy_ip'
    /kernel/drv/sparcv9/ip: undefined symbol 'hook_run'
    /kernel/drv/sparcv9/ip: undefined symbol 'net_unregister'
    /kernel/drv/sparcv9/ip: undefined symbol 'netstack_find_by_cred'
    /kernel/drv/sparcv9/ip: undefined symbol 'netstackid_to_zoneid'
    /kernel/drv/sparcv9/ip: undefined symbol 'net_register_event'
    /kernel/drv/sparcv9/ip: undefined symbol 'net_unregister_family'
    /kernel/drv/sparcv9/ip: undefined symbol 'kstat_create_netstack'
    /kernel/drv/sparcv9/ip: undefined symbol 'netstack_find_by_stackid'
    /kernel/drv/sparcv9/ip: undefined symbol 'netstack_rele'
    /kernel/drv/sparcv9/ip: undefined symbol 'netstack_hold'
    /kernel/drv/sparcv9/ip: undefined symbol 'netstack_next'
    /kernel/drv/sparcv9/ip: undefined symbol 'net_register_family'
    /kernel/drv/sparcv9/ip: undefined symbol 'netstack_next_init'
    /kernel/drv/sparcv9/ip: undefined symbol 'netstack_next_fini'
    WARNING: mod_load: cannot load module 'ip'
    WARNING: ip: unable to resolve dependency, module 'misc/hook' not found
    strplumb: can't install module drv/ip, err -1
    /kernel/dacf/sparcv9/consconfig_dacf: undefined symbol 'cons_tem_disable'
    /kernel/dacf/sparcv9/consconfig_dacf: undefined symbol 'prom_get_tem_inverses'
    /kernel/dacf/sparcv9/consconfig_dacf: undefined symbol 'consmode'
    /kernel/dacf/sparcv9/consconfig_dacf: undefined symbol 'prom_hide_cursor'
    /kernel/dacf/sparcv9/consconfig_dacf: undefined symbol 'prom_get_tem_pos'
    /kernel/dacf/sparcv9/consconfig_dacf: undefined symbol 'prom_get_term_font_size'
    /kernel/dacf/sparcv9/consconfig_dacf: undefined symbol 'prom_get_tem_size'
    WARNING: mod_load: cannot load module 'consconfig_dacf'
    /kernel/misc/sparcv9/consconfig: undefined symbol 'dynamic_console_config'
    WARNING: mod_load: cannot load module 'consconfig'
    WARNING: consconfig: unable to resolve dependency, module 'dacf/consconfig_dacf' not found
    panic[cpu3]/thread=180e000: mod_hold_stub: Couldn't load stub module misc/consconfig
    000000000180b890 genunix:mod_hold_stub+1f0 (0, 185fc00, 18acbf8, 60002cff370, 1817328, 0)
    %l0-3: 0000000001843b18 0000060003308000 0000000001811ce8 0000000000000000
    %l4-7: 0000000000000000 0000000000000064 ffffffffffffffff 0000000000000000
    000000000180b940 unix:stubs_common_code+30 (1f037ce7fb0, e164, 64000000, 0, 1ef800, 0)
    %l0-3: 000000000180b209 000000000180b2e1 000000337e000000 0000000000000001
    %l4-7: 0000000000000000 0000000001817338 0000000000000000 0000060002ccf6c0
    000000000180ba10 genunix:main+134 (18ad050, 18a8c00, 1836500, 1861800, 183b400, 1814000)
    %l0-3: 0000000070002000 0000000000000001 0000000000000000 0000000000000002
    %l4-7: 00000000018b0280 00000000018b0000 00000000018ad060 00000000018ad000
    syncing file systems... done
    skipping system dump - no dump device configured
    rebooting...
    Please help me what should I do. I have gone through all forums and mailing lists but couldnt find pin point solution.
    Thanks,
    Farhan
    Edited by: rozzx on Jul 5, 2008 1:48 AM

    Solve this. Patch just screwed the meta devices, changed vfstab in single user mod and it booted fine.

Maybe you are looking for