Error message when I run searches on my website (PHP/MySQL help)

Hey guys, can someone tell me why this is happening in my PHP? I run a search on my website and get this error message ye sI filled the hostname, username and password)
Results for
PHP Error Message
Warning:  mysql_num_rows(): supplied argument is not a valid MySQL result resource in /home/a8295382/public_html/Search Results.php on line 233
Couldn't execute query
Here is my PHP code:
<?php
$hostname_logon = "host" ;
$database_logon = "hostname" ;
$username_logon = username" ;
$password_logon = "password" ;
//open database connection
$connections = mysql_connect($hostname_logon, $username_logon, $password_logon) or die ( "Unabale to connect to the database" );
//select database
mysql_select_db($database_logon) or die ( "Unable to select database!" );
//specify how many results to display per page
$limit = 15;
//get the search variable from URL
$var = mysql_real_escape_string(@$_REQUEST['q']);
//get pagination
$s = mysql_real_escape_string($_REQUEST['s']);
//set keyword character limit
if(strlen($var) < 3){
    $resultmsg =  "<p>Search Error</p><p>Keywords with less then three characters are omitted...</p>" ;
//trim whitespace from the stored variable
$trimmed = trim($var);
$trimmed1 = trim($var);
//separate key-phrases into keywords
$trimmed_array = explode(" ",$trimmed);
$trimmed_array1 = explode(" ",$trimmed1);
// check for an empty string and display a message.
if ($trimmed == "") {
    $resultmsg =  "<p>Search Error</p><p>Please enter a search...</p>" ;
// check for a search parameter
if (!isset($var)){
    $resultmsg =  "<p>Search Error</p><p>We don't seem to have a search parameter! </p>" ;
// Build SQL Query for each keyword entered
foreach ($trimmed_array as $trimm){
// EDIT HERE and specify your table and field names for the SQL query
// MySQL "MATCH" is used for full-text searching. Please visit mysql for details.
$query = "SELECT * , MATCH (field1, field2) AGAINST ('".$trimm."') AS score FROM table_name WHERE MATCH (field1, field2) AGAINST ('+".$trimm."') ORDER BY score DESC";
// Execute the query to  get number of rows that contain search kewords
$numresults=mysql_query ($query);
$row_num_links_main =mysql_num_rows ($numresults);
//If MATCH query doesn't return any results due to how it works do a search using LIKE
if($row_num_links_main < 1){
    $query = "SELECT * FROM table_name WHERE field1 LIKE '%$trimm%' OR field2 LIKE '%$trimm%'  ORDER BY field3 DESC";
    $numresults=mysql_query ($query);
    $row_num_links_main1 =mysql_num_rows ($numresults);
// next determine if 's' has been passed to script, if not use 0.
// 's' is a variable that gets set as we navigate the search result pages.
if (empty($s)) {
     $s=0;
  // now let's get results.
  $query .= " LIMIT $s,$limit" ;
  $numresults = mysql_query ($query) or die ( "Couldn't execute query" );
  $row= mysql_fetch_array ($numresults);
  //store record id of every item that contains the keyword in the array we need to do this to avoid display of duplicate search result.
  do{
      $adid_array[] = $row[ 'field_id' ];
  }while( $row= mysql_fetch_array($numresults));
} //end foreach
//Display a message if no results found
if($row_num_links_main == 0 && $row_num_links_main1 == 0){
    $resultmsg = "<p>Search results for: ". $trimmed."</p><p>Sorry, your search returned zero results</p>" ;
//delete duplicate record id's from the array. To do this we will use array_unique function
$tmparr = array_unique($adid_array);
$i=0;
foreach ($tmparr as $v) {
   $newarr[$i] = $v;
   $i++;
//total result
$row_num_links_main = $row_num_links_main + $row_num_links_main1;
// now you can display the results returned. But first we will display the search form on the top of the page
echo '<form action="search.php" method="get">
        <div>
        <input name="q" type="text" value="'.$q.'">
        <input name="search" type="submit" value="Search">
        </div>
</form>';
// display an error or, what the person searched
if( isset ($resultmsg)){
    echo $resultmsg;
}else{
    echo "<p>Search results for: <strong>" . $var."</strong></p>";
    foreach($newarr as $value){
    // EDIT HERE and specify your table and field unique ID for the SQL query
    $query_value = "SELECT * FROM newsight_articles WHERE field_id = '".$value."'";
    $num_value=mysql_query ($query_value);
    $row_linkcat= mysql_fetch_array ($num_value);
    $row_num_links= mysql_num_rows ($num_value);
    //create summary of the long text. For example if the field2 is your full text grab only first 130 characters of it for the result
    $introcontent = strip_tags($row_linkcat[ 'field2']);
    $introcontent = substr($introcontent, 0, 130)."...";
    //now let's make the keywods bold. To do that we will use preg_replace function.
    //Replace field
      $title = preg_replace ( "'($var)'si" , "<strong>\\1</strong>" , $row_linkcat[ 'field1' ] );
      $desc = preg_replace ( "'($var)'si" , "<strong>\\1</strong>" , $introcontent);
      $link = preg_replace ( "'($var)'si" , "<strong>\\1</strong>" ,  $row_linkcat[ 'field3' ]  );
        foreach($trimmed_array as $trimm){
            if($trimm != 'b' ){
                $title = preg_replace( "'($trimm)'si" ,  "<strong>\\1</strong>" , $title);
                $desc = preg_replace( "'($trimm)'si" , "<strong>\\1</strong>" , $desc);
                $link = preg_replace( "'($trimm)'si" ,  "<strong>\\1</strong>" , $link);
             }//end highlight
        }//end foreach $trimmed_array
        //format and display search results
            echo '<div class="search-result">';
                echo '<div class="search-title">'.$title.'</div>';
                echo '<div class="search-text">';
                    echo $desc;
                echo '</div>';
                echo '<div class="search-link">';
                echo $link;
                echo '</div>';
            echo '</div>';
    }  //end foreach $newarr
    if($row_num_links_main > $limit){
    // next we need to do the links to other search result pages
        if ($s >=1) { // do not display previous link if 's' is '0'
            $prevs=($s-$limit);
            echo '<div class="search_previous"><a href="'.$PHP_SELF.'?s='.$prevs.'&q='.$var.'">Previous</a>
            </div>';
    // check to see if last page
        $slimit =$s+$limit;
        if (!($slimit >= $row_num_links_main) && $row_num_links_main!=1) {
            // not last page so display next link
            $n=$s+$limit;
            echo '<div  class="search_next"><a href="'.$PHP_SELF.'?s='.$n.'&q='.$var.'">Next</a>
            </div>';
    }//end if $row_num_links_main > $limit
}//end if search result
?>
Anyone got any ideas as to why this is happening?
Also, I have not created any tables in my database... is this why it doesn't display any search results from my website?

Sorry, but it doesn't help JTANNA.
What is your definition of "more efficiently"? If it's limitation of search results, branded search, and limitation of styling your results then google search is more efficient. Real developers rely on their own developments. For example: how can google search display results from a password-protected site? They can't.
best,
Shocker

Similar Messages

  • Get these two error messages when I run the iTunes exe file:  Error 2 and Error 2 (Windows error 2).  Both say Apple Application Support is required.  Uninstalled and tried to install again several times.  Using Windows 7 64 bit on laptop.

    Trying to install iTunes on my Dell laptop with Windows 7 - 64 bit.  Get these two error messages when I run the iTunes exe file:  Error 2 and Error 2 (Windows error 2).  Both say Apple Application Support was not found.  Can anyone tell me why this is happening?

    See Troubleshooting issues with iTunes for Windows updates.
    tt2

  • There is the error message when we run IR8A report

    Hi SAP expert,
    There is the error message when we run IR8A report via T-code PC00_M25_NCT8A, below is the error message
    "Assignment to valuation model is missing for calculation process 25 SGLS
    Message no. HRSEN00107
    Diagnosis
    There is no entry in the assignment table for valuation model and rounding rule (V_T525S) for the return value  for feature SENOR on the key date 07.12.2007 for the selected calculation process 25 SGLS (country grouping, calculation process, process step).
    At least one valuation model must be assigned to each calculation process in view V_T525S.
    Procedure
    Make an entry for this calculation process and return value for feature SENOR in view V_T525S (Assignment of Valuation Model and Rounding Rule).
    I would appreciate you very much if you could advise me how to solve this problem.

    Hi ,
    I am facing the same error like this,
    please let how did you solve this iisue ?
    thakn\s

  • I have plugged my iphone 5s into windows computer, the computer picks up that its there and starts charging but keeps coming up with error message when i try connect to itunes... HELP!!!

    I have plugged my iphone 5s into windows computer, the computer picks up that its there and starts charging but keeps coming up with error message when i try connect to itunes... HELP!!!

    What does the error message say? (Precise text, please.)

  • Error message when i run a request on an InfoSet

    Hi,
    I' ve a this follow message when i run a request based on an InfoSet :
    "System error in program SAPLRR12 and form SET_TCUR-02-(see long text)"
    Do you know what's wrong ?
    Thank you for your help
    Jacques

    The SAP note number is : 899572
    I use BW 7.0
    I don't have any access to OSS notes, could you help me please ?
    Thnk you
    Jacques

  • SSRS 2008 Created Commssion Report, now getting error message when I run this ( need Help)

    in SSRS 2008 2 years ago created Commission with sub reports added, it was working fine, some how started to get error  
    message when we entered some invoice # see below screen shot of error message
    but same time if I enter different invoice # it process the report without any error message , donot understand the problem
    what's causing this issue, I have looked each sub report,
    can some one suggest any idea,
    I have spent hrs to figure it out, no luck so far.
    thanks in advance
    see the 2nd screen shot with report process
    any help will be greatly appreciated

    Hi Wendy
    thanks for your reply
    I tried creating new report , I have 1 main report and 3 sub report on this
    on main report when I enter some invoice# and accountnum  data shows up with no problem,
    but same time if I enter different invoice# and accountnum , there is no data return  on same query, I have checked my query so many times, donot understand this issue, what's causing this problem, since all the data pulling from same tables, why its
    not pulling for some invoices,
     other strange thing , I created this report , year ago, there was no problem until now,
    all of the sudden this problem just shows up,'
    I am not that expert in sql , can I really use advise
    see below by query , if you can tell me what's wrong with my query I will be really greatfull I have spend so much time to figure it out, but so far no luck
    SELECT        VENDTRANS.DATAAREAID, SALESTABLE.SALESID, VENDTRANS.VOUCHER, SALESTABLE.SALESTYPE, SALESTABLE.SALESSTATUS, VENDTRANS.TRANSDATE,
                             CUSTINVOICEJOUR.INVOICEAMOUNT, VENDTRANS.INVOICE, VENDTRANS.PAYMMODE, VENDTRANS.ACCOUNTNUM, VENDTRANS.TRANSTYPE,
                             VENDTRANS.LASTSETTLEVOUCHER, VENDTRANS.TXT, CUSTINVOICEJOUR.INVOICEACCOUNT, CUSTINVOICEJOUR.INVOICINGNAME,
                             VENDTRANS.LASTSETTLEDATE, LEDGERJOURNALTRANS.ACCOUNTTYPE, LEDGERJOURNALTRANS.AMOUNTCURCREDIT, LEDGERJOURNALTRANS.LINENUM,
                             CUSTINVOICETRANS.INVOICEDATE
    FROM            SALESTABLE INNER JOIN
                             CUSTINVOICETRANS ON SALESTABLE.DATAAREAID = CUSTINVOICETRANS.DATAAREAID AND SALESTABLE.SALESID = CUSTINVOICETRANS.SALESID
    INNER JOIN
                             CUSTINVOICEJOUR ON CUSTINVOICETRANS.INVOICEID = CUSTINVOICEJOUR.INVOICEID AND CUSTINVOICETRANS.SALESID = CUSTINVOICEJOUR.SALESID
    AND
                             CUSTINVOICETRANS.INVOICEDATE = CUSTINVOICEJOUR.INVOICEDATE INNER JOIN
                             VENDTRANS ON CUSTINVOICETRANS.INVOICEID = VENDTRANS.INVOICE AND CUSTINVOICETRANS.DATAAREAID = VENDTRANS.DATAAREAID
    AND
                             CUSTINVOICEJOUR.DATAAREAID = VENDTRANS.DATAAREAID AND CUSTINVOICEJOUR.INVOICEDATE = VENDTRANS.TRANSDATE INNER JOIN
                             LEDGERJOURNALTRANS ON VENDTRANS.DATAAREAID = LEDGERJOURNALTRANS.DATAAREAID AND
                             VENDTRANS.ACCOUNTNUM = LEDGERJOURNALTRANS.ACCOUNTNUM AND CUSTINVOICETRANS.LINENUM = LEDGERJOURNALTRANS.LINENUM AND
                             VENDTRANS.INVOICE = LEDGERJOURNALTRANS.INVOICE AND VENDTRANS.VOUCHER = LEDGERJOURNALTRANS.VOUCHER AND
                             VENDTRANS.PAYMMODE = LEDGERJOURNALTRANS.PAYMMODE AND VENDTRANS.TRANSDATE = LEDGERJOURNALTRANS.TRANSDATE
    WHERE        (VENDTRANS.DATAAREAID = N'AR1') AND (SALESTABLE.SALESTYPE = 3) AND (SALESTABLE.SALESSTATUS = 3) AND (VENDTRANS.ACCOUNTNUM = @Accountnum)
                             AND (VENDTRANS.INVOICE = @Invoice) AND (LEDGERJOURNALTRANS.ACCOUNTTYPE = 2)

  • Error message when we do search for claim in Isupplier

    Help Me.
    GET ERROR PAGE WHEN DO SEARCH FOR CLAIM IN PERSONNALIZATION OF Isupplier
    Error Page
    Exception Details.
    oracle.apps.fnd.framework.OAException: oracle.jbo.SQLStmtException: JBO-27122: SQL error during statement preparation. Statement: SELECT xxscd.CLAIM_ID,
    xxscd.CLAIM_NUM,
    xxscd.SUPPLIER_NAME,
    xxscd.SUPPLIER_ID,
    xxscd.ADDRESS,
    xxscd.ADDRESS_ID,
    xxscd.CLAIM_DATE,
    flvt.meaning CLAIM_TYPE,
    xxscd.INVOICE_NUM,
    xxscd.INVOICE_ID,
    xxscd.CLOSUER_DATE,
    xxscd.ORDER_NUM,
    flvs.meaning STATUS,
    xxscd.RECEIVING_CHANNEL,
    xxscd.LEADTIME,
    xxscd.EMP_ASSIGNED_NAME,
    xxscd.EMP_ASSIGNED_ID,
    xxscd.PATTERN,
    xxscd.SUPPLIER_TYPE,
    xxscd.DEPARTMENT,
    xxscd.ORG_ID,
    xxscd.CREATION_DATE,
    xxscd.CREATED_BY,
    xxscd.LAST_UPDATE_DATE,
    xxscd.LAST_UPDATED_BY,
    xxscd.LAST_UPDATE_LOGIN,
    xxscd.AttriBUTE1,
    xxscd.AttriBUTE2,
    xxscd.AttriBUTE3,
    xxscd.AttriBUTE4,
    xxscd.AttriBUTE5,
    xxscd.AttriBUTE6,
    xxscd.AttriBUTE7,
    xxscd.AttriBUTE8,
    xxscd.AttriBUTE9,
    xxscd.AttriBUTE10,
    xxsnt_claim_upd_enb_disab(STATUS) AS UPDATE_SWITCHER
    FROM XXSNT_SUPPLIER_CLAIM_DETAILS xxscd,
    fnd_lookup_values flvt,
    fnd_lookup_values flvs
    WHERE ((xxsnt_claim_status_draft(xxscd.CREATED_BY) = 'Y' AND
    xxscd.status != 'DRAFT') OR
    (xxsnt_claim_status_draft(xxscd.CREATED_BY) = 'N'))
    AND xxscd.CLAIM_NUM like NVL(:1, xxscd.CLAIM_NUM)
    AND flvt.lookup_type(+) = 'XXSNT_SUPPLIER_CLAIM_TYPE'
    AND flvt.lookup_code(+) = xxscd.CLAIM_TYPE
    AND flvt.language(+) = userenv('LANG')
    AND flvs.lookup_type(+) = 'XXSNT_CLAIM_STATUS'
    AND flvs.lookup_code(+) = xxscd.STATUS
    AND flvs.language(+) = userenv('LANG')
    AND xxscd.SUPPLIER_ID = NVL(:2, xxscd.SUPPLIER_ID)
    AND nvl(xxscd.INVOICE_ID, -999) = NVL(:3, nvl(xxscd.INVOICE_ID, -999))
    AND xxscd.STATUS = NVL(:4, xxscd.STATUS)
    AND TRUNC(xxscd.claim_date) between
    NVL(:5, to_date('01-JAN-1955', 'DD-MON-YYYY')) AND
    NVL(:6, TRUNC(SYSDATE))
    ORDER BY xxscd.CLAIM_ID, xxscd.SUPPLIER_NAME
         at oracle.apps.fnd.framework.OAException.wrapperException(OAException.java(Compiled Code))
         at oracle.apps.fnd.framework.OAException.wrapperException(OAException.java(Compiled Code))
         at oracle.apps.fnd.framework.OAException.wrapperInvocationTargetException(OAException.java(Compiled Code))
         at oracle.apps.fnd.framework.server.OAUtility.invokeMethod(OAUtility.java(Compiled Code))
         at oracle.apps.fnd.framework.server.OAUtility.invokeMethod(OAUtility.java(Inlined Compiled Code))
         at oracle.apps.fnd.framework.server.OAApplicationModuleImpl.invokeMethod(OAApplicationModuleImpl.java(Compiled Code))
         at xxsnt.oracle.apps.pos.isp.webui.ClaimSearchCO.processFormRequest(ClaimSearchCO.java:101)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequest(OAWebBeanHelper.java(Compiled Code))
         at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.processFormRequest(OAWebBeanContainerHelper.java(Compiled Code))
         at oracle.apps.fnd.framework.webui.OAPageLayoutHelper.processFormRequest(OAPageLayoutHelper.java:1159)
         at oracle.apps.fnd.framework.webui.beans.layout.OAPageLayoutBean.processFormRequest(OAPageLayoutBean.java:1579)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequestChildren(OAWebBeanHelper.java(Compiled Code))
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequestChildren(OAWebBeanHelper.java(Inlined Compiled Code))
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequest(OAWebBeanHelper.java(Compiled Code))
         at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.processFormRequest(OAWebBeanContainerHelper.java(Compiled Code))
         at oracle.apps.fnd.framework.webui.beans.form.OAFormBean.processFormRequest(OAFormBean.java:395)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequestChildren(OAWebBeanHelper.java(Compiled Code))
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequestChildren(OAWebBeanHelper.java(Inlined Compiled Code))
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequest(OAWebBeanHelper.java(Compiled Code))
         at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.processFormRequest(OAWebBeanContainerHelper.java(Inlined Compiled Code))
         at oracle.apps.fnd.framework.webui.beans.OABodyBean.processFormRequest(OABodyBean.java(Compiled Code))
         at oracle.apps.fnd.framework.webui.OAPageBean.processFormRequest(OAPageBean.java(Compiled Code))
         at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java(Compiled Code))
         at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java(Compiled Code))
         at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java(Inlined Compiled Code))
         at oa_html._OA._jspService(_OA.java(Compiled Code))
         at oracle.jsp.runtime.HttpJsp.service(HttpJsp.java(Compiled Code))
         at oracle.jsp.app.JspApplication.dispatchRequest(JspApplication.java(Compiled Code))
         at oracle.jsp.JspServlet.doDispatch(JspServlet.java(Compiled Code))
         at oracle.jsp.JspServlet.internalService(JspServlet.java(Compiled Code))
         at oracle.jsp.JspServlet.service(JspServlet.java(Compiled Code))
         at javax.servlet.http.HttpServlet.service(HttpServlet.java(Compiled Code))
         at org.apache.jserv.JServConnection.processRequest(JServConnection.java(Compiled Code))
         at org.apache.jserv.JServConnection.run(JServConnection.java(Compiled Code))
         at java.lang.Thread.run(Thread.java(Compiled Code))
    ## Detail 0 ##
    java.sql.SQLException: ORA-00904: "XXSNT_CLAIM_STATUS_DRAFT": invalid identifier
         at oracle.jdbc.dbaccess.DBError.throwSqlException(DBError.java(Compiled Code))
         at oracle.jdbc.ttc7.TTIoer.processError(TTIoer.java(Compiled Code))
         at oracle.jdbc.ttc7.Oall7.receive(Oall7.java(Compiled Code))
         at oracle.jdbc.ttc7.TTC7Protocol.doOall7(TTC7Protocol.java(Compiled Code))
         at oracle.jdbc.ttc7.TTC7Protocol.parseExecuteFetch(TTC7Protocol.java(Compiled Code))
         at oracle.jdbc.driver.OracleStatement.doExecuteQuery(OracleStatement.java(Compiled Code))
         at oracle.jdbc.driver.OracleStatement.doExecuteWithTimeout(OracleStatement.java(Compiled Code))
         at oracle.jdbc.driver.OraclePreparedStatement.executeUpdate(OraclePreparedStatement.java(Compiled Code))
         at oracle.jdbc.driver.OraclePreparedStatement.executeQuery(OraclePreparedStatement.java(Compiled Code))
         at oracle.jbo.server.QueryCollection.buildResultSet(QueryCollection.java(Compiled Code))
         at oracle.jbo.server.QueryCollection.executeQuery(QueryCollection.java(Compiled Code))
         at oracle.jbo.server.ViewObjectImpl.executeQueryForCollection(ViewObjectImpl.java(Compiled Code))
         at oracle.jbo.server.OAJboViewObjectImpl.executeQueryForCollection(OAJboViewObjectImpl.java(Inlined Compiled Code))
         at oracle.apps.fnd.framework.server.OAViewObjectImpl.executeQueryForCollection(OAViewObjectImpl.java(Compiled Code))
         at oracle.jbo.server.ViewRowSetImpl.execute(ViewRowSetImpl.java(Compiled Code))
         at oracle.jbo.server.ViewRowSetImpl.execute(ViewRowSetImpl.java(Inlined Compiled Code))
         at oracle.jbo.server.ViewRowSetImpl.executeDetailQuery(ViewRowSetImpl.java(Inlined Compiled Code))
         at oracle.jbo.server.ViewObjectImpl.executeDetailQuery(ViewObjectImpl.java(Inlined Compiled Code))
         at oracle.jbo.server.ViewObjectImpl.executeQuery(ViewObjectImpl.java(Inlined Compiled Code))
         at oracle.apps.fnd.framework.server.OAViewObjectImpl.executeQuery(OAViewObjectImpl.java(Compiled Code))
         at xxsnt.oracle.apps.pos.isp.server.XxsntSupplierClaimsAMImpl.searchclaim(XxsntSupplierClaimsAMImpl.java:120)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java(Compiled Code))
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java(Compiled Code))
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java(Compiled Code))
         at java.lang.reflect.Method.invoke(Method.java(Compiled Code))
         at oracle.apps.fnd.framework.server.OAUtility.invokeMethod(OAUtility.java(Compiled Code))
         at oracle.apps.fnd.framework.server.OAUtility.invokeMethod(OAUtility.java(Inlined Compiled Code))
         at oracle.apps.fnd.framework.server.OAApplicationModuleImpl.invokeMethod(OAApplicationModuleImpl.java(Compiled Code))
         at xxsnt.oracle.apps.pos.isp.webui.ClaimSearchCO.processFormRequest(ClaimSearchCO.java:101)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequest(OAWebBeanHelper.java(Compiled Code))
         at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.processFormRequest(OAWebBeanContainerHelper.java(Compiled Code))
         at oracle.apps.fnd.framework.webui.OAPageLayoutHelper.processFormRequest(OAPageLayoutHelper.java:1159)
         at oracle.apps.fnd.framework.webui.beans.layout.OAPageLayoutBean.processFormRequest(OAPageLayoutBean.java:1579)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequestChildren(OAWebBeanHelper.java(Compiled Code))
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequestChildren(OAWebBeanHelper.java(Inlined Compiled Code))
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequest(OAWebBeanHelper.java(Compiled Code))
         at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.processFormRequest(OAWebBeanContainerHelper.java(Compiled Code))
         at oracle.apps.fnd.framework.webui.beans.form.OAFormBean.processFormRequest(OAFormBean.java:395)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequestChildren(OAWebBeanHelper.java(Compiled Code))
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequestChildren(OAWebBeanHelper.java(Inlined Compiled Code))
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequest(OAWebBeanHelper.java(Compiled Code))
         at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.processFormRequest(OAWebBeanContainerHelper.java(Inlined Compiled Code))
         at oracle.apps.fnd.framework.webui.beans.OABodyBean.processFormRequest(OABodyBean.java(Compiled Code))
         at oracle.apps.fnd.framework.webui.OAPageBean.processFormRequest(OAPageBean.java(Compiled Code))
         at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java(Compiled Code))
         at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java(Compiled Code))
         at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java(Inlined Compiled Code))
         at oa_html._OA._jspService(_OA.java(Compiled Code))
         at oracle.jsp.runtime.HttpJsp.service(HttpJsp.java(Compiled Code))
         at oracle.jsp.app.JspApplication.dispatchRequest(JspApplication.java(Compiled Code))
         at oracle.jsp.JspServlet.doDispatch(JspServlet.java(Compiled Code))
         at oracle.jsp.JspServlet.internalService(JspServlet.java(Compiled Code))
         at oracle.jsp.JspServlet.service(JspServlet.java(Compiled Code))
         at javax.servlet.http.HttpServlet.service(HttpServlet.java(Compiled Code))
         at org.apache.jserv.JServConnection.processRequest(JServConnection.java(Compiled Code))
         at org.apache.jserv.JServConnection.run(JServConnection.java(Compiled Code))
         at java.lang.Thread.run(Thread.java(Compiled Code))
    java.sql.SQLException: ORA-00904: "XXSNT_CLAIM_STATUS_DRAFT": invalid identifier
         at oracle.jdbc.dbaccess.DBError.throwSqlException(DBError.java(Compiled Code))
         at oracle.jdbc.ttc7.TTIoer.processError(TTIoer.java(Compiled Code))
         at oracle.jdbc.ttc7.Oall7.receive(Oall7.java(Compiled Code))
         at oracle.jdbc.ttc7.TTC7Protocol.doOall7(TTC7Protocol.java(Compiled Code))
         at oracle.jdbc.ttc7.TTC7Protocol.parseExecuteFetch(TTC7Protocol.java(Compiled Code))
         at oracle.jdbc.driver.OracleStatement.doExecuteQuery(OracleStatement.java(Compiled Code))
         at oracle.jdbc.driver.OracleStatement.doExecuteWithTimeout(OracleStatement.java(Compiled Code))
         at oracle.jdbc.driver.OraclePreparedStatement.executeUpdate(OraclePreparedStatement.java(Compiled Code))
         at oracle.jdbc.driver.OraclePreparedStatement.executeQuery(OraclePreparedStatement.java(Compiled Code))
         at oracle.jbo.server.QueryCollection.buildResultSet(QueryCollection.java(Compiled Code))
         at oracle.jbo.server.QueryCollection.executeQuery(QueryCollection.java(Compiled Code))
         at oracle.jbo.server.ViewObjectImpl.executeQueryForCollection(ViewObjectImpl.java(Compiled Code))
         at oracle.jbo.server.OAJboViewObjectImpl.executeQueryForCollection(OAJboViewObjectImpl.java(Inlined Compiled Code))
         at oracle.apps.fnd.framework.server.OAViewObjectImpl.executeQueryForCollection(OAViewObjectImpl.java(Compiled Code))
         at oracle.jbo.server.ViewRowSetImpl.execute(ViewRowSetImpl.java(Compiled Code))
         at oracle.jbo.server.ViewRowSetImpl.execute(ViewRowSetImpl.java(Inlined Compiled Code))
         at oracle.jbo.server.ViewRowSetImpl.executeDetailQuery(ViewRowSetImpl.java(Inlined Compiled Code))
         at oracle.jbo.server.ViewObjectImpl.executeDetailQuery(ViewObjectImpl.java(Inlined Compiled Code))
         at oracle.jbo.server.ViewObjectImpl.executeQuery(ViewObjectImpl.java(Inlined Compiled Code))
         at oracle.apps.fnd.framework.server.OAViewObjectImpl.executeQuery(OAViewObjectImpl.java(Compiled Code))
         at xxsnt.oracle.apps.pos.isp.server.XxsntSupplierClaimsAMImpl.searchclaim(XxsntSupplierClaimsAMImpl.java:120)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java(Compiled Code))
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java(Compiled Code))
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java(Compiled Code))
         at java.lang.reflect.Method.invoke(Method.java(Compiled Code))
         at oracle.apps.fnd.framework.server.OAUtility.invokeMethod(OAUtility.java(Compiled Code))
         at oracle.apps.fnd.framework.server.OAUtility.invokeMethod(OAUtility.java(Inlined Compiled Code))
         at oracle.apps.fnd.framework.server.OAApplicationModuleImpl.invokeMethod(OAApplicationModuleImpl.java(Compiled Code))
         at xxsnt.oracle.apps.pos.isp.webui.ClaimSearchCO.processFormRequest(ClaimSearchCO.java:101)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequest(OAWebBeanHelper.java(Compiled Code))
         at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.processFormRequest(OAWebBeanContainerHelper.java(Compiled Code))
         at oracle.apps.fnd.framework.webui.OAPageLayoutHelper.processFormRequest(OAPageLayoutHelper.java:1159)
         at oracle.apps.fnd.framework.webui.beans.layout.OAPageLayoutBean.processFormRequest(OAPageLayoutBean.java:1579)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequestChildren(OAWebBeanHelper.java(Compiled Code))
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequestChildren(OAWebBeanHelper.java(Inlined Compiled Code))
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequest(OAWebBeanHelper.java(Compiled Code))
         at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.processFormRequest(OAWebBeanContainerHelper.java(Compiled Code))
         at oracle.apps.fnd.framework.webui.beans.form.OAFormBean.processFormRequest(OAFormBean.java:395)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequestChildren(OAWebBeanHelper.java(Compiled Code))
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequestChildren(OAWebBeanHelper.java(Inlined Compiled Code))
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequest(OAWebBeanHelper.java(Compiled Code))
         at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.processFormRequest(OAWebBeanContainerHelper.java(Inlined Compiled Code))
         at oracle.apps.fnd.framework.webui.beans.OABodyBean.processFormRequest(OABodyBean.java(Compiled Code))
         at oracle.apps.fnd.framework.webui.OAPageBean.processFormRequest(OAPageBean.java(Compiled Code))
         at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java(Compiled Code))
         at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java(Compiled Code))
         at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java(Inlined Compiled Code))
         at oa_html._OA._jspService(_OA.java(Compiled Code))
         at oracle.jsp.runtime.HttpJsp.service(HttpJsp.java(Compiled Code))
         at oracle.jsp.app.JspApplication.dispatchRequest(JspApplication.java(Compiled Code))
         at oracle.jsp.JspServlet.doDispatch(JspServlet.java(Compiled Code))
         at oracle.jsp.JspServlet.internalService(JspServlet.java(Compiled Code))
         at oracle.jsp.JspServlet.service(JspServlet.java(Compiled Code))
         at javax.servlet.http.HttpServlet.service(HttpServlet.java(Compiled Code))
         at org.apache.jserv.JServConnection.processRequest(JServConnection.java(Compiled Code))
         at org.apache.jserv.JServConnection.run(JServConnection.java(Compiled Code))
         at java.lang.Thread.run(Thread.java(Compiled Code))

    I guess this is your custom VO Query issue.
    Not sure why you are writing (xxsnt_claim_status_draft(xxscd.CREATED_BY) = 'Y' instead of simply writing xxscd.CREATED_BY = 'Y'
    Its not recognizing xxsnt_claim_status_draft in where clause of your query.
    Regards,
    Ram

  • Error message when I run the Web Dynpro Project

    Dear friend,
    I had deploy & run project, but it's got the error message under the line:
    I had install NWDS V. 2.0.11 on my PC, but the project which I deployed was the version that I created by NWDS V. 2.0.9, and I had install new OS as XP Home instead the old one (Windows2000), are these the cause of problem?
    Please advise how can I do.
    Best regards,
    SeMs
    Web Dynpro client:
    HTML Client
    Web Dynpro client capabilities:
    User agent: Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Media Center PC 3.0; .NET CLR 1.0.3705), version: null, DOM version: null, client type: msie6, client type profile: ie6, ActiveX: enabled, Cookies: enabled, Frames: enabled, Java applets: enabled, JavaScript: enabled, Tables: enabled, VB Script: enabled
    Web Dynpro runtime:
    Vendor: SAP, Build ID: 6.4009.00.0000.20041104173322.0000 (release=630_REL, buildtime=2004-11-18:22:17:10[UTC], changelist=298578, host=PWDFM027)
    Web Dynpro code generators of DC local/ZWelCome:
    SapDictionaryGenerationCore: 6.4011.00.0000.20050127161623.0000 (release=630_VAL_REL, buildtime=2005-02-20:21:34:47[UTC], changelist=324383, host=PWDFM026.wdf.sap.corp)
    SapMetamodelWebDynpro: 6.4011.00.0000.20050121170001.0000 (release=630_VAL_REL, buildtime=2005-02-20:21:38:14[UTC], changelist=322883, host=PWDFM026.wdf.sap.corp)
    SapMetamodelCore: 6.4011.00.0000.20050121165648.0000 (release=630_VAL_REL, buildtime=2005-02-20:21:28:49[UTC], changelist=322878, host=PWDFM026.wdf.sap.corp)
    SapWebDynproGenerationTemplates: 6.4011.00.0000.20050217164947.0000 (release=630_VAL_REL, buildtime=2005-02-20:21:53:22[UTC], changelist=329752, host=PWDFM026)
    SapWebDynproGenerationCTemplates: 6.4011.00.0000.20050217164947.0000 (release=630_VAL_REL, buildtime=2005-02-20:21:53:22[UTC], changelist=329752, host=PWDFM026)
    SapGenerationFrameworkCore: 6.4011.00.0000.20041104141254.0000 (release=630_VAL_REL, buildtime=2005-02-20:21:28:00[UTC], changelist=298452, host=PWDFM026.wdf.sap.corp)
    SapIdeWebDynproCheckLayer: 6.4011.00.0000.20050215134310.0000 (release=630_VAL_REL, buildtime=2005-02-20:21:42:02[UTC], changelist=329103, host=PWDFM026.wdf.sap.corp)
    SapMetamodelDictionary: 6.4011.00.0000.20040609163924.0000 (release=630_VAL_REL, buildtime=2005-02-20:21:32:12[UTC], changelist=253570, host=PWDFM026.wdf.sap.corp)
    SapMetamodelCommon: 6.4011.00.0000.20050121165648.0000 (release=630_VAL_REL, buildtime=2005-02-20:21:28:59[UTC], changelist=322878, host=PWDFM026.wdf.sap.corp)
    SapWebDynproGenerationCore: 6.4011.00.0000.20050215134310.0000 (release=630_VAL_REL, buildtime=2005-02-20:21:42:32[UTC], changelist=329103, host=PWDFM026.wdf.sap.corp)
    SapDictionaryGenerationTemplates: (unknown)
    Web Dynpro code generators of DC sap.com/tcwddispwda:
    No information available
    Web Dynpro code generators of DC sap.com/tcwdcorecomp:
    No information available
    J2EE Engine:
    No information available
    Java VM:
    Java HotSpot(TM) Server VM, version: 1.4.2_08-b03, vendor: Sun Microsystems Inc.
    Operating system:
    Windows 2000, version: 5.0, architecture: x86
    Message was edited by: Sukasem S.wattanakoon
    Message was edited by: Sukasem S.wattanakoon

    Probably the usual problem of deploying an application built with a newer NWDS (SP11) on an older server (SP9).
    But without the stacktrace this is only a guess.
    Armin

  • I get error messages when I try to visit certain websites using Mozilla Firefox but not when I use other browsers

    About two days ago I noticed that when I tried to access certain websites using Firefox I always got this error message; "The connection was reset". I initially thought it was a problem with my isp before noticing that the network was fine on my phone and iPad. I then attempted opening the same links that brought up the error message on the TorBrowser and it worked perfectly.
    Basically the only website that works on my Firefox browser right now is Google but if I do a search on Google and then click on any link that comes up as a result I get the same error message, "The connection was reset". I can also log into my gmail account but I cannot access any other website including Feedly, Tumblr, Twitter, Yahoo, Wordpress, Blogspot, even though they work fine on my other browser.
    I cleared my cache and cookies, wiped out all the browsing history but the problem persisted so I uninstalled Mozilla Firefox and reinstalled it. The problem is still there. I checked the proxy settings, I went through all the solutions on this page https://support.mozilla.org/en-US/kb/firefox-cant-load-websites-other-browsers-can?esab=a&as=aaq and still nothing. I am not sure what the problem is here but any solution will be much appreciated. I have used Firefox for years now and I am not really comfortable using another browser.
    I use a Macbook OS X Version 10.9.4 and the latest Firefox 32.0.1

    Create a new profile as a test to check if your current profile is causing the problems. <br>
    See '''Creating a profile''':
    *https://support.mozilla.org/kb/profile-manager-create-and-remove-firefox-profiles
    *http://kb.mozillazine.org/Standard_diagnostic_-_Firefox#Profile_issues
    If the new profile works then you can transfer files from a previously used profile to the new profile, but be cautious not to copy corrupted files to avoid carrying over the problem <br>
    '''Profile Backup and Restore'''
    *http://kb.mozillazine.org/Profile_backup
    *https://support.mozilla.org/en-US/kb/back-and-restore-information-firefox-profiles
    *http://kb.mozillazine.org/Transferring_data_to_a_new_profile_-_Firefox

  • Error messages when starting iTunes - 11556 and other. Who may help?

    Hi there,
    When starting iTunes i get to the iTunes U store. Trying to connect to the normal iTunes store, I get the following error message:
    "We could not complete your iTunes store request. The iTunes store is temporarly unavailable"
    This message I get since about one week. Further I tried to sign in and then I get the following message:
    "iTunes could not connect to the iTunes store. An unknown error occured (11556). Make sure your network connection is active and try again."
    Network connection is working. iTunes connectivity diagnostics showed: all tests passed. I am using the latest version of iTunes (9.0.3.15). I tried to reinstall iTunes - did not help.
    I hope, anybody can help me.
    Regards,
    kunzro

    Hey Richard
    After I posted here I realized it was in the Windows/iTunes board. I reposted in the OS X/iTunes board along with the solution.
    I did more searching on Google and found that the store was disabled in parental controls in the iTunes Prefs. Go to iTunes prefs, click on Parental. See if iTunes store is disabled. I unchecked it and am all set. Someone mentioned that when iTunes is updated, this setting is the default.
    Hope this helps.
    Peter
    Message was edited by: pmullen

  • Error message when loading books into my nook ce_copy_not_allowed can somebody help ??

    Can somebody help with the error message ce_copy_not_allowed when transfering books to my NOOK

    I have the same problem  HELP  Not computer savvy  Using a kobo glow have purchased the books from the kobo store. using adobe editions 4 and my computer is authorized.

  • I have always had trouble (including error messages)when opening pdf files from a website within Firefox

    More often than not when I open a pdf file from within Firefox the file fails to open (often you get an error message. "there was an error processing page. A file I/O error has ocurred"). Sometimes the file downloads but is only white pages. I usually then right click the file and save it to my desktop but this is cumbersom!

    Ok two things based on the crash report and the steps you took right before the crash:
    # Try to disable scrolling acceleration and restart Firefox. Does it continue to crash?
    # Try Safe Mode and do the same task as above with email and the pdf [[Troubleshoot Firefox issues using Safe Mode]]
    # Also pdf.js may be helpful to read pdfs in the meantime. You can change the default reader in the Preferences/Options > Application menu of Firefox.
    # Try to clear out the downloads folder and update flash to version 14 (that should do it)
    IF it crashes again please also provide the new crash signatures and we can take a look :-) Sorry for the crashing :-(

  • ISQL - error message when script run

    I have installed iSQL, and entered statements run well, but when I attempt to run a script I get the message "-- Internal error (No Content-Type in the header)" I can cut and paste the contents of the file to the statement area and it works.
    What is causing this error?
    Thanks,
    robin

    Robin,
    Are you using Netscape Navigator? If so, you've probably hit a known bug. There is a workaround, and here's the para from the doc for the upcoming 9i version of iSQL*Plus:
    "Netscape Navigator requires an application association for .sql files to enable iSQL*Plus to load them. See your operating system documentation for information about creating a file association."
    Basically, create a file association for .sql files in Netscape Navigator and everything should work, eg:
    Description of Type: SQL script
    File extension: sql
    MIME type: text
    Application to use: notepad.exe
    Alison
    iSQL*Plus Team

  • Error message when I run my anti-virus

    When I ran my anti-virus I got the following message
    "C:\Program Files\Toshiba\TOSAPINS\COMPS1\Intel Chipset Software Installation Utility (3264bit)0\MANUAL\B27611B.EXE";"The file is signed with a broken digital signature, issued by: TOSHIBA AMERICA INFORMATION SYSTEMS.";""
    and then it tells me that   "the file is signed with a broken digital signature, issued by Toshiba america information systems"
    Any idea how to fix it?

    Nothing for you to fix. Toshiba will eventually fix the file.
    In the meantime, tell your AV program to overlook that apparent error.
    -Jerry

  • I get an error message when using google search: Debug Error:[Exception... "Node was not found" code: "8" nsresult: "0x80530008 (NS_ERROR_DOM_NOT_FOUND_ERR)" location: "chrome://ffamazonhot/content/lib/Extension.debug.js Line: 366"]

    Debug Error:[Exception... "Node was not found" code: "8" nsresult: "0x80530008 (NS_ERROR_DOM_NOT_FOUND_ERR)" location: "chrome://ffamazonhot/content/lib/Extension.debug.js Line: 366"]

    Tools->Add-ons->Extensions
    At the top of the Firefox window, click on the Tools menu and select Add-ons. The Add-ons window will appear.
    In the Add-ons window, select the Extensions panel.
    Select the add-on you wish to uninstall.
    Click the Uninstall button. When prompted, click Uninstall to confirm.
    Then restart Firefox.
    Read here:
    [[Uninstalling add-ons|#How to uninstall extensions and themes|Uninstalling extensions]]

Maybe you are looking for

  • Key Fields and Data Fields in ODS

    Hi Guru's , Can u Explain what are Key Field's and Data Field's in ODS,and How they work. Thanx in Advance.

  • LTP in MULTIPLE BOM  scenario

    Hi friends, Please suggest for this following issue which is urgent one Client Have 2 plants:  2010-PRODUCTIONM PLANT ( MONTHLYROLLING PLAN)                                     2020- WAREHOUSE PLANT (ANNUAL SALES PLANNING ) Have 2  type of planning.

  • I need to know the best usb interface for garage band

    need to record at least 4 xlr inputs at same time on seperate tracks price is an issue cheaper is better maybe a usb mixer?

  • Why can't i log into my iMessage

    Cant log into my imessage or facetime, server difficulties keeps appearing, anyone else having these problems

  • Down Payment process - rounding

    Dear Gurus, I have followed scenario: First I created down payment request, type FAZ, with netto 3109,24, VAT 590,76, total: 3700 EUR Next, there were created invoices: Inv1: netto 1006,75,  VAT 191,28,  total 1198,03 Inv2: netto 1153,74,  VAT 219,21