Getting the following Error while extending HeaderVO,LinesVO -URGENT

Hi,
I am extendn HeaderVO,LinesVO with the help of JDeveloper and I am getting the following error while I Print a particular Quote (Using Asoprint.xsl template) from frontend:
oracle.apps.fnd.framework.OAException: oracle.jbo.SQLStmtException: JBO-27122: SQL error during statement preparation. Statement: SELECT * FROM (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 ,qte.attribute8 comp_product ,decode(qte.attribute4,NULL,'',(select manufacturer_name from mtl_manufacturers where manufacturer_id = to_number(qte.attribute4) and rownum<2)) Comp_Name ,qte.attribute5 Comp_Unit_Price ,qte.attribute6 Annual_Usage ,(qte.attribute6 * qte.attribute5)Total_Atrium ,qte.attribute7 Tot_comp_price FROM aso_pvt_quote_lines_bali_v qte) QRSLT WHERE (QUOTE_HEADER_ID = :1)
While I remove the customizations I get the complete seeded o/p but as and when I start extending and substituting HeaderVO and LinesVO the error comes.
Please let meknow the cause if possible

Sumit,
A jsp page can not read view obects, because in a jsp how would u get AM refrence.The only way to use view object in a jsp is to create a standalone AM and then create dynamic VOs, but this is not at all recommeneded approach and i doubt user would have followed it.Secondly if this is Oracle html quoting, this should not be a oaf page.
Because user is talking in terms of VO, it looks like some oaf page, if this oaf page, then getting error stack would only be possible through FND:Diagnostics
--Mukul                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

Similar Messages

  • Getting the following error while parsing the values usng xml parser

    Hi
    I am getting the following error while parsing the values using the code in r12 instance on linux
    declare
    XML_PARSER XMLPARSER.PARSER;
    DOC XMLDOM.DOMDOCUMENT;
    DOCELEMENT DBMS_XMLDOM.DOMELEMENT;
    BEGIN
    -- NEW PARSER
    XML_PARSER := XMLPARSER.NEWPARSER;
    -- SET SOME CHARACTERISTICS
    XMLPARSER.SETVALIDATIONMODE(XML_PARSER, FALSE);
         IF P_DIR IS NOT NULL AND P_FILENAME IS NOT NULL
         THEN
         FND_FILE.PUT_LINE(FND_FILE.LOG,'DIRECTORY FOUND'||'-'||P_DIR);
         XMLPARSER.SETBASEDIR(XML_PARSER, P_DIR);     
         -- PARSE INPUT FILE
         FND_FILE.PUT_LINE(FND_FILE.LOG,'FILE FOUND'||'-'||P_FILENAME);
         XMLPARSER.PARSE(XML_PARSER, P_DIR || '/' || P_FILENAME);     
         -- GET DOCUMENT
         DOC := XMLPARSER.GETDOCUMENT(XML_PARSER);
         LOAD_SUPP(doc);
         ELSE
         DBMS_OUTPUT.PUT_LINE('DIRACTORY/FILENAME CANNOT BE NULL');
         END IF;
    EXCEPTION
    WHEN OTHERS THEN
    DBMS_OUTPUT.PUT_LINE('DATA NOTINSERTED'||sqlerrm);
         ROLLBACK;
    END
    I am getting the following error
    DIRACTORYL-/home/appldevORA-0000: normal, successful completion
    FILE NAME-suppliersample_data.xmlORA-0000: normal, successful completion
    DATA NOTINSERTEDORA-31001: Invalid resource handle or path name "/home/appldev/suppliersample_data.xml"
    ORA-06512: at "SYS.XDBURITYPE", line 11
    ORA-06512: at "XDB.DBMS_XSLPROCESSOR", line 142
    ORA-29280: invalid directory path
    ORA-29280: invalid directory path
    ORA-29280: invalid directory path
    It could be great if some one could give a suggestion/solution.
    Thanks
    Ajesh

    Besides this is not the correct forum try to google the error message first before posting:
    http://ora-29280.ora-code.com/
    cheers

  • Am getting the following error while running the servlet example

    Hi,
    am getting the following error while running the servlet example
    message
    description The server encountered an internal error () that prevented it from fulfilling this request.
    exception
    java.lang.NullPointerException
         edu.dao.StudentDao.insertStudent(StudentDao.java:18)
         edu.servlet.StudentServlet.doGet(StudentServlet.java:25)
         javax.servlet.http.HttpServlet.service(HttpServlet.java:689)
         javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
    note The full stack trace of the root cause is available in the Apache Tomcat/5.5.20 logs.
    Thanks
    //sreekanth

    Hi,
    the following code i have written in StudentDao
    package edu.dao;
    import java.sql.Connection;
    import java.sql.PreparedStatement;
    import java.sql.SQLException;
    import org.apache.commons.dbutils.DbUtils;
    import edu.model.Student;
    import edu.util.DBUtil;
    public class StudentDao {
         public void insertStudent(Student student) {
              String stuQuery = "INSERT INTO STUDENT VALUES(?,?)";
              Connection connection = DBUtil.getConnection();
              PreparedStatement preparedStatement = null;
              try {
                   preparedStatement = connection.prepareStatement(stuQuery);
                   preparedStatement.setString(1,student.getStudentNo());
                   preparedStatement.setString(2, student.getStudentName());
                   preparedStatement.executeUpdate();
              } catch(SQLException e){
                   System.out.println("..Sql exception......");
              }finally {
                   DbUtils.closeQuietly(connection,preparedStatement,null);
    }

  • Hi, I am getting the following error while booting up cisco asa firewall .

    Hi,
    I'm getting the following error form console when booting up Cisco ASA firewall...
    How do we determine the issue if its hardware or software related?
    ERROR: Type:2; Severity:80; Class:1; Subclass:3; Operation: 3

    Dear Ravi,
    You are getting the message of time out because you must be loading huge volume of data and BW runs for a specific peroid of time and then it gives a dump with message as processing is overdue.what you can do is first you should drop the indexes of the cube and then you should manually load the data-packets.I think you can again load the failed data package.select the failed data package in the monitor screen.then go to edit(on upper left next to monitor).In Edit select Init update then select "settings for further update" now select that process should be run in the background.Now right click on the failed datapacket and select Manual update.
    Hope this works for you.
    With Regards,
    Prafulla

  • Getting the following error while running the apex 3.2 report

    Hello All,
    I am running apex 3.2 on oracle 10g.
    I am getting the following error ..
    ORA-04030: out of process memory when trying to allocate 16328 bytes (koh-kghu call ,pl/sql vc2)
    Pls let me know what's the cause of this error..
    thanks/kumar

    Server error, sounds like you have some server issues there, see this blog for possible answers..: http://www.dba-oracle.com/t_ora_04030_out_process_memory.htm
    Thank you,
    Tony Miller
    Webster, TX

  • Getting the following error while creating a new configuration

    Hi team,
    I am trying to create configuration of my web dynpro application. When
    I right click on my application and choose create/change configuration,
    browser started. Now when I give a name ( e.g zabc) to it and choose the
    function create, the following error occurs... Can you please give me
    suggestion to overcome it
    Error when processing your request
    What has happened?
    The URL https://gsdcb261.in.ibm.com:8443/sap/bc/webdynpro/sap/zims_issue/ was not called due to an error.
    Note
    The following error text was processed in the system SD4 : Screen output without connection to user.
    The error occurred on the application server gsdcb261_SD4_01 and in the work process 0 .
    The termination type was: RABAX_STATE
    The ABAP call stack was:
    SYSTEM-EXIT of program SAPLSKEY
    Function: TADIR_OBJECT_CHECK of program SAPLSKEY
    Function: CHECK_ACCESS_KEYS of program SAPLSKEY
    Method: CHECK_TROBJ_BEFORE_EDIT of program CL_WD_CONFIGURATION_MODEL=====CP
    Method: FILL_APPL_CONFIG_CONTEXT of program CL_WD_CONFIGURATION_MODEL=====CP
    Method: UPDATE_APPLICATION_TREE of program /1BCWDY/0A4VPNTYZEA2W6Q9CMDX==CP
    Method: IF_COMPONENTCONTROLLER~UPDATE_APPLICATION_TREE of program /1BCWDY/0A4VPNTYZEA2W6Q9CMDX==CP
    Method: ONACTIONACTION of program /1BCWDY/0A4VPNTYZEA2W6Q9CMDX==CP
    Method: ONACTIONACTION of program /1BCWDY/0A4VPNTYZEA2W6Q9CMDX==CP
    Method: IF_WDR_VIEW_DELEGATE~WD_INVOKE_EVENT_HANDLER of program /1BCWDY/0A4VPNTYZEA2W6Q9CMDX==CP
    What can I do?
    If the termination type was RABAX_STATE, then you can find more information on the cause of the termination in the system SD4 in transaction ST22.
    If the termination type was ABORT_MESSAGE_STATE, then you can find more information on the cause of the termination on the application server gsdcb261_SD4_01 in transaction SM21.
    If the termination type was ERROR_MESSAGE_STATE, then you can search for more information in the trace file for the work process 0 in transaction ST11 on the application server gsdcb261_SD4_01 . In some situations, you may also need to analyze the trace files of other work processes.
    If you do not yet have a user ID, contact your system administrator.
    Error code: ICF-IE-https -c: 100 -u: AGAURAV -l: E -s: SD4 -i: gsdcb261_SD4_01 -w: 0 -d: 20070426 -t: 200845 -v: RABAX_STATE -e: DYNPRO_SEND_IN_BACKGROUND
    HTTP 500 - Internal Server Error
    Your SAP Internet Communication Framework Team

    Hello Thomas,
    I am sorry but I haven't check this forum in the last weeks because of lack of time. Thanks for your hint regarding a potential solution. Taking a look a the note I have some problem in "using" it.
    This note contains a number of potential solutions regarding our problem.
    Solution 1.) one could use the modification as described. Surprising to read that SAP is saying: do a modification to solve the problem. => this is only possible "manually"  I am not sure If I will follow this approach
    Solution 2.) Change the URL: This solution scenario I do not understand. The solution path is "very" short and not very instructive. This is the story:
    You can do this by adding "_OLD" to the name of the application of the URL created for the configuration: Use "CONFIGURE_APPLICATION_OLD" instead of "CONFIGURE_APPLICATION"
    and "CONFIGURE_COMPONENT_OLD" instead of "CONFIGURE_COMPONENT". If you want to use this function as your standard, you have to change the original application. To do this, set the parameter "OLD_TR" to "X".
    This solution path is "to short". I do not get the "message" what to do.
    Furthermore: Does that mean you have to use this peculiar solution any time durnig software development of webdynpro components using configurations? In my opinion yes. This is therefore only a "workaround solution" and nothing else.
    And there can I find this parameter "old_tr" they are talking about?
    Sap note 1060287 is the "same" kind (Symptom of this note:
    If you use the configuration editor, there may be errors during transport handling or
    DYNPRO_SEND_IN_BACKGROUND crashes.).
    Here they are saying:
    "Solution
    A final solution will be provided for Release 7.0 BASIS Support Package 13."
    So in SP13 there seems to be a solution (I haven't found up to now the corresponding note). But does that now mean I must implement the complete support package?
    So I am sorry: No progress on my side up to now. May be you have had some success?
    With best regards
    Christoph

  • Getting the following error while attaching a .applescript file to a button

    Hi. I hav created a xcode project using cocoa application. Also I hav add a .applescript file to that project. I hav attached dat file to a button. When I build the project, got the following error . Can anybody help me out this?
    [Session started at 2010-03-02 13:02:03 +0530.] GNU gdb 6.3.50-20050815 (Apple version gdb-966) (Tue Mar 10 02:43:13 UTC 2009) Copyright 2004 Free Software Foundation, Inc. GDB is free software, covered by the GNU General Public License, and you are welcome to change it and/or distribute copies of it under certain conditions. Type "show copying" to see the conditions. There is absolutely no warranty for GDB. Type "show warranty" for details. This GDB was configured as "i386-apple-darwin".sharedlibrary apply-load-rules all Attaching to process 1705. kill
    The Debugger Debugger is attaching to process [Session started at 2010-03-02 13:03:31 +0530.] 2010-03-02 13:03:31.452 test[1717:10b] An uncaught exception was raised 2010-03-02 13:03:31.453 test[1717:10b] * -[NSKeyedUnarchiver decodeObjectForKey:]: cannot decode object of class (ASKNibConnector) 2010-03-02 13:03:31.453 test[1717:10b] Terminating app due to uncaught exception 'NSInvalidUnarchiveOperationException', reason: '** -[NSKeyedUnarchiver decodeObjectForKey:]: cannot decode object of class (ASKNibConnector)' 2010-03-02 13:03:31.454 test[1717:10b] Stack: ( 2510958571, 2520804923, 2510958027, 2510958090, 2486042959, 2486048301, 2486049449, 2486041504, 2486039829, 2489002358, 2486041504, 2486039829, 2488999761, 2488998172, 2488997215, 2488997021, 2488996172 )
    [Session started at 2010-03-02 13:03:31 +0530.] GNU gdb 6.3.50-20050815 (Apple version gdb-966) (Tue Mar 10 02:43:13 UTC 2009) Copyright 2004 Free Software Foundation, Inc. GDB is free software, covered by the GNU General Public License, and you are welcome to change it and/or distribute copies of it under certain conditions. Type "show copying" to see the conditions. There is absolutely no warranty for GDB. Type "show warranty" for details. This GDB was configured as "i386-apple-darwin".sharedlibrary apply-load-rules all Attaching to process 1717. kill

    Hello Thomas,
    I am sorry but I haven't check this forum in the last weeks because of lack of time. Thanks for your hint regarding a potential solution. Taking a look a the note I have some problem in "using" it.
    This note contains a number of potential solutions regarding our problem.
    Solution 1.) one could use the modification as described. Surprising to read that SAP is saying: do a modification to solve the problem. => this is only possible "manually"  I am not sure If I will follow this approach
    Solution 2.) Change the URL: This solution scenario I do not understand. The solution path is "very" short and not very instructive. This is the story:
    You can do this by adding "_OLD" to the name of the application of the URL created for the configuration: Use "CONFIGURE_APPLICATION_OLD" instead of "CONFIGURE_APPLICATION"
    and "CONFIGURE_COMPONENT_OLD" instead of "CONFIGURE_COMPONENT". If you want to use this function as your standard, you have to change the original application. To do this, set the parameter "OLD_TR" to "X".
    This solution path is "to short". I do not get the "message" what to do.
    Furthermore: Does that mean you have to use this peculiar solution any time durnig software development of webdynpro components using configurations? In my opinion yes. This is therefore only a "workaround solution" and nothing else.
    And there can I find this parameter "old_tr" they are talking about?
    Sap note 1060287 is the "same" kind (Symptom of this note:
    If you use the configuration editor, there may be errors during transport handling or
    DYNPRO_SEND_IN_BACKGROUND crashes.).
    Here they are saying:
    "Solution
    A final solution will be provided for Release 7.0 BASIS Support Package 13."
    So in SP13 there seems to be a solution (I haven't found up to now the corresponding note). But does that now mean I must implement the complete support package?
    So I am sorry: No progress on my side up to now. May be you have had some success?
    With best regards
    Christoph

  • I am getting the following error while running the app in ios8 .

    My app is working fine in all versions prior to ios8.0 . In ios 8 it gives me the following error.
    Error #3747: Multiple application domains are not supported on this operating system. Please help me out.

    Hi
    Thank you for reporting the bug, can you please tell us which API you are using in your application, using which we can reproduce this bug at our end.
    It would be great help if you can share us sample application for mentioned bug.
    Thanks

  • I am getting the following error while installing the data log

    ging Superisory control toolkit the error is "if you have just converted to a new version of labveiw a new version of TAg engine may be required" how do i fix this error is there any upadate for fixing this error . the version i am currently using is 6.02steps taken is i have aslso installesd opc server in ni daq . still the problem persists.

    ging Superisory control toolkit the error is "if you have just converted to a new version of labveiw a new version of TAg engine may be required" how do i fix this error is there any upadate for fixing this error . the version i am currently using is 6.02Did you update as well LabVIEW DSC to version 6.0.2? - If not it would be required. You could get the update from the Driver&Update download site from National Instruments:
    http://digital.ni.com/softlib.nsf/16a19f446db24ce5​862568d2005b971c/a9638d8d99f3787e86256a23006b98d5?​OpenDocument
    Or : you can call National Instruments Sales departement and order the update for LabVIEW DSC 6.0.2 (free)
    Hope this helps
    Roli

  • Getting the following error while creating the model for webdynpro app.

    Plugin Name: Web Dynpro Model Editor Services
    Plugin ID  : com.sap.ide.webdynpro.service.modeleditor
    Class      :ap.ide.webdynpro.modeleditor.wizards.model.              creation.ModelDialog
    Method     : nextPressed
    Exception  : org.eclipse.swt.SWTException: Failed to  execute runnable (java.lang.NoClassDefFoundError)
    This is the error i am getting while creating the model for the webdynpro application. Can some one help ?
    Thanks & Regards
    Lalith

    hi
    This error occurs mainly due to the reason that particular plugin is not there in the NWDS.
    So please try to reinstall the NWDS or try tracing out whether that particular plugin is there or not.
    Thank,
    kris

  • I am getting the following error while configuring stream setup witch OEM..

    I am using OEM in Windows 2003 environment...what are steps for eliminate this mistake
    Error - java.sql.SQLException: ORA-20411: Incorrectly specified parameter oracle_home ORA-06512: at "SYSMAN.MGMT_JOBS", line 242 ORA-06512: at "SYSMAN.MGMT_JOBS", line 78 ORA-06512: at line 1
    its urgent
    Help in advance

    Hi
    Thank you for reporting the bug, can you please tell us which API you are using in your application, using which we can reproduce this bug at our end.
    It would be great help if you can share us sample application for mentioned bug.
    Thanks

  • I am getting the following error...

    Hi All,
    I am getting the following error while loading the data into data targets. The data was loaded into PSA , but while loading into data targets am getting the following error message , kindly rectify it.
    Processing in Warehouse timed out; processing steps mising
    Diagnosis
    Request processing in the BI system is taking a long time and processing step Second step in the update has still not been executed.
    System Response
    Caller is still missing.
    Procedure
    In the process overview in the BI system, check whether processes are running in the BI system under the background user.
    If this is not the case, check the short dump overview in the BI system.
    Thanks in advance,
    Ravi Alakuntla.

    Dear Ravi,
    You are getting the message of time out because you must be loading huge volume of data and BW runs for a specific peroid of time and then it gives a dump with message as processing is overdue.what you can do is first you should drop the indexes of the cube and then you should manually load the data-packets.I think you can again load the failed data package.select the failed data package in the monitor screen.then go to edit(on upper left next to monitor).In Edit select Init update then select "settings for further update" now select that process should be run in the background.Now right click on the failed datapacket and select Manual update.
    Hope this works for you.
    With Regards,
    Prafulla

  • Getting th following error while trying to do BUILD INDEX for search in BCC

    Hi I am getting the following error while I am trying to build index through search administration from BCC.
    I am using windows7, Weblogic 10.3.2 and ATG9.2
    On BCC screen I am getting the message as : An unexpected error has occurred. Please try again later or contact system administrator.
    In the console logs, the following error is occurring:
    2011-10-06 18:26:58,319;;;org.apache.commons.digester.Digester.sax;;;DEBUG;endDocument()
    **** Error Thu Oct 06 18:27:35 CEST 2011 1317918455348 /atg/searchadmin/repository/service/SyncService No partition_step step found in task '
    700001' of type 'check' atg.search.exception.ObjectNotFoundException: SyncStepDefinition not found.. id=null, item-desciptor=null
    **** Error Thu Oct 06 18:27:35 CEST 2011 1317918455348 /atg/searchadmin/repository/service/SyncService at atg.searchadmin.repository.
    beans.methods.BaseSyncTaskMethods.setSyncStepDefinitionOption(BaseSyncTaskMethods.java:307)
    **** Error Thu Oct 06 18:27:35 CEST 2011 1317918455348 /atg/searchadmin/repository/service/SyncService at atg.searchadmin.repository.
    beans.methods.BaseSyncTaskMethods.setPartitionReuseType(BaseSyncTaskMethods.java:101)
    **** Error Thu Oct 06 18:27:35 CEST 2011 1317918455348 /atg/searchadmin/repository/service/SyncService at atg.searchadmin.repository.
    beans.methods.BaseSyncTaskMethods.setPartitionReuseType(BaseSyncTaskMethods.java:91)
    **** Error Thu Oct 06 18:27:35 CEST 2011 1317918455348 /atg/searchadmin/repository/service/SyncService at atg.searchadmin.repository.
    beans._SyncTaskDefinition_Impl.setPartitionReuseType(_SyncTaskDefinition_Impl.java:107)
    **** Error Thu Oct 06 18:27:35 CEST 2011 1317918455348 /atg/searchadmin/repository/service/SyncService at atg.searchadmin.adminui.for
    mhandlers.EstimateIndexSummaryFormHandler.createTask(EstimateIndexSummaryFormHandler.java:144)
    **** Error Thu Oct 06 18:27:35 CEST 2011 1317918455348 /atg/searchadmin/repository/service/SyncService at atg.searchadmin.adminui.for
    mhandlers.EstimateIndexSummaryFormHandler.handlePerformSyncTask(EstimateIndexSummaryFormHandler.java:236)
    **** Error Thu Oct 06 18:27:35 CEST 2011 1317918455348 /atg/searchadmin/repository/service/SyncService at sun.reflect.NativeMethodAcc
    essorImpl.invoke0(Native Method)
    **** Error Thu Oct 06 18:27:35 CEST 2011 1317918455348 /atg/searchadmin/repository/service/SyncService at sun.reflect.NativeMethodAcc

    Please check:
    1) Values of in engineDir and deployShare in LaunchingService component
    2) Search environment name
    3) To create a full index, the indexing engine requires a clean partition, a file from which all indexes are created: /atg/search/routing/RoutingSystemService
    You need to identify the location of the clean partition by creating a /localconfig/atg/search/routing/RoutingSystemService.properties file. Use the cleanPhysicalPartitionPath property
    to identify the full path to the clean partition. There is a copy of the clean partition located at <Searchdir>/SearchEngine/operatingsystem/data/initial.index. To resolve the path
    correctly, use a relative path to identify the clean partition location as a local copy. For example: cleanPhysicalPartitionPath =../data/initial.index
    Thanks and regards,
    Anuj

  • While importing a CD into my iTunes library I kept getting the following error message- iTunes library cannot be saved- An unknown error occurred (-54).  What does this error mean and what can I do about it??

    While importing a CD into my iTunes library I kept getting the following error message- iTunes cannot be saved- An unknown error occurred (-54).  what does this error mean and what can I do about it??

    The CD I imported (in the above post) is now not in my iTunes library. Any help would be appreciated .

  • I am getting the following error message while opening the fire fox browser "sript file:///programe % 20 files/siber%AT% 20roboform/rirefox/components/ref helper.JS:510 in English

    i am getting the following error message while opening the fire fox browser "sript file:///programe % 20 files/siber%AT% 20roboform/Firefox/components/ref helper.JS:510 in English

    ls -l /var/run/lighttpd/
    And how are you spawning the php instances? I don't see that in the daemons array anywhere.
    EDIT: It looks like the info in that page is no longer using pre-spawned instances, but lighttpd adaptive-spawn. The documentation has been made inconsistent it looks like.
    You will note that with pre-spawned information, the config looks different[1].
    You need to do one or the other, not both (eg. choose adaptive-spawn, or pre-spawn..not both).
    [1]: http://wiki.archlinux.org/index.php?tit … oldid=8051 "change"

Maybe you are looking for

  • View more podcast history of a certain podcaster?

    Is there a way to see more than 4-5 previous podcasts through the music store interface? I want to be able to download them there so they will file properly as "podcasts" on my itunes. If not, is there another way to download podcasts so they will fi

  • My IPhone appears as someone else's when plugged into my computer.

    When it shows up as a "drive" it is not shown as the name of my Iphone but someone else's. All of my things are on the phone, the name is just incorrect. How can I correct this?

  • Restarted G4 and got "Darwin/BSD (Amnesiac) (console)" on black screen

    Hi, I had been playing music on my PB G4 for a while and when I came back to it to turn off the music I noticed that none of the info. in the menu bar was there (date/time/battery/volume etc.). This happened a few days ago also, so this time I decide

  • HR  Report  with LDB.

    Hi guys, i want to develop one report on Employee detail, using LDB PNP with infotype 0000,0001,0006. and table pa0000,pa0001,pa0006. selection criteria is based on pernr ,endda,begda, personal area,personal sub area. can any body please give me the

  • Project Special stock indicator PROJ-KZBWS

    Hi, I created a project with TCODE CJ20N. The project's valuation indicator(KZBWS) is assuming "M" and this field was not visible at moment of creation, Is there any config  to define "A" ? Regards, Menoita