Problem in search Issue

Hi there
I am creating a Library System. Here i provide a facility User to Search the Books by Title, Author , Category, Publisher.
In my program Book details are stored in the Books table in the Database When User wants to search a Book By Category, it has to select those category alone and store Them in BSearch table in the database.
When User clicks on Find Book Button. it has display all the available books Equal to that Category should be displayed on the JTable which is in another Form.
Here it works well for me. But the Problem is it shows only one Book on the JTable though there are Many Books in the Same Category.
Here i am posting my code
Code for SearchBook.java
import java.awt.*;
import java.awt.event.*;
import javax.swing.*;
import java.sql.*;
public class SearchBook extends JInternalFrame implements ActionListener {
     private JPanel pBook = new JPanel ();
     private JLabel lbSearch;
     private JRadioButton rb1,rb2,rb3,rb4;
     private JTextField txtSearch;
     private JButton btnFind, btnCancel;
     private int flag=0;
     private Statement st;
     private String bname,bauthor,bcat,search,bid;
     private int bref,bmid,rows=0;
     private JTable table;
     private JScrollPane jsp;
     private Object data1[][];
     private Container c;
     public SearchBook (Connection con) {
          //super (Title, Resizable, Closable, Maximizable, Iconifiable)
          super ("Search Books", false, true, false, true);
          setSize (510, 300);
          //Setting the Form's Labels.
          lbSearch = new JLabel ("Search Field");
          lbSearch.setForeground (Color.black);
          lbSearch.setBounds (15, 15, 100, 20);
          txtSearch = new JTextField ();
          txtSearch.setBounds (120, 15, 175, 25);
          btnFind = new JButton ("Find Book");
          btnFind.setBounds (25, 175, 125, 25);
          btnFind.addActionListener (this);
          btnCancel = new JButton ("Cancel");
          btnCancel.setBounds (165, 175, 125, 25);
          btnCancel.addActionListener (this);
          rb1=new JRadioButton("By Title");
          rb1.addActionListener(this);
          rb1.setBounds (15, 45, 100, 20);
          rb2=new JRadioButton("By Author");
          rb2.addActionListener(this);
          rb2.setBounds (15, 75, 100, 20);
          rb3=new JRadioButton("By Category");
          rb3.addActionListener(this);
          rb3.setBounds (15, 105, 100, 20);
          rb4=new JRadioButton("By Publisher");
          rb4.addActionListener(this);
          rb4.setBounds(15,135,100,20);
          pBook.setLayout (null);
          pBook.add(lbSearch);
          pBook.add(txtSearch);
          pBook.add(btnFind);
          pBook.add(btnCancel);
          ButtonGroup bg=new ButtonGroup();
          bg.add(rb1);
          bg.add(rb2);
          bg.add(rb3);
          bg.add(rb4);
          pBook.add(rb1);
          pBook.add(rb2);
          pBook.add(rb3);
          pBook.add(rb4);
          rb1.setSelected(true);
          getContentPane().add (pBook, BorderLayout.CENTER);
          c=getContentPane();
          try {
               st = con.createStatement ();     //Creating Statement Object.
          catch (SQLException sqlex) {               //If Problem then Show the User a Message.
               JOptionPane.showMessageDialog (null, "A Problem Occurs While Loading Form.");
               dispose ();                    //Closing the Form.
          setVisible (true);
     public void actionPerformed (ActionEvent ae) {
          Object obj = ae.getSource();
          if (obj == btnFind) {          //If Find Button Pressed.
               if (txtSearch.getText().equals ("")) {
                    JOptionPane.showMessageDialog (this, "Search Field not Provided.");
                    txtSearch.requestFocus ();
               else
                    String bname1,bauthor1,bcat1;
                    int num;
                    boolean found = false;                    //To Confirm the Book's Id Existance.
                    try {     //SELECT Query to Retrieved the Record.
                         String q,bavl,bisr;
                         num=st.executeUpdate("Delete * from BSearch");
                         ResultSet rs = st.executeQuery ("SELECT * FROM Books ");     //Executing the Query.
                         search=txtSearch.getText();
                         search=search.toLowerCase();
                         while(rs.next())
                              bname=rs.getString("BName");
                              bauthor=rs.getString("BAuthor");
                              bcat=rs.getString("BCat");
                              bref=rs.getInt("BRef");
                              if(bref==1) bisr="Yes";
                              else bisr="No";
                              bmid=rs.getInt("Mid");
                              if(bmid==0) bavl="Available";
                              else bavl="Issued:"+ bmid;
                              bid=rs.getString("BId");
                              if(flag==0)
                                   bname1=bname.toLowerCase();
                                   if(bname1.equals(search)||(bname1.indexOf(search)!=-1))
                                        System.out.println("Came Here as Name Vice");
                                       num=st.executeUpdate("insert into BSearch values("+bid+", '"+bname+"' , '"+bcat+"' , '"+bauthor+"' , '"+bavl+"', '"+bisr+"')");
                                        rows++;
                                       found=true;
                              else if(flag==1)
                                   bauthor1=bauthor.toLowerCase();
                                   if(bauthor1.equals(search)||(bauthor1.indexOf(search)!=-1))
                                        System.out.println("Came Here as Author Vice");
                                        num=st.executeUpdate("insert into BSearch values("+bid+", '"+bname+"' , '"+bcat+"' , '"+bauthor+"' , '"+bavl+"', '"+bisr+"')");
                                        rows++;
                                        found=true;
                              else if(flag==2)
                                   bcat1=bcat.toLowerCase();
                                   if(bcat1.equals(search)||(bcat1.indexOf(search)!=-1))
                                        System.out.println("Came Here as Catogery Vice");
                                        num=st.executeUpdate("insert into BSearch values("+bid+", '"+bname+"' , '"+bcat+"' , '"+bauthor+"' , '"+bavl+"', '"+bisr+"')");
                                        rows++;
                                        found=true;
                              else if(flag==3)
                                   bid=bid.toLowerCase();
                                   if(bid.equals(search))
                                        System.out.println("Came Here as Publisher Vice");
                                        num=st.executeUpdate("insert into BSearch values("+bid+", '"+bname+"' , '"+bcat+"' , '"+bauthor+"' , '"+bavl+"', '"+bisr+"')");
                                        rows++;
                                        found=true;
                    /*     data1=new Object[rows][6];
                         System.out.println("hadsfdsfi i came here");
                         Object[] Colheads={"Book Id","Book Name","Category","Author","Availability","Reference"};
                         rs=st.executeQuery("Select * from BSearch");
                         System.out.println("hai i came here");
                         for(int i1=0;i1<rows;i1++)
                                   rs.next();
                                   for(int j1=0;j1<6;j1++)
                                        data1[i1][j1]=rs.getString(j1);
                         table=new JTable(data1,Colheads);
                         int v=ScrollPaneConstants.VERTICAL_SCROLLBAR_AS_NEEDED;
                         int h=ScrollPaneConstants.HORIZONTAL_SCROLLBAR_AS_NEEDED;
                         System.out.println("hai we came here abd Going to clear the TextBox");
                         jsp=new JScrollPane(table,v,h);
                         TableDisp td=new TableDisp(jsp);
                         txtSearch.setText("");
                         txtSearch.requestFocus();*/
                    catch(SQLException sqlex) {
                         if (found == false) {
                              JOptionPane.showMessageDialog (this, "Record not Found.");
                    try{
                    data1=new Object[rows][6];
                    Object[] Colheads={"Book Id","Book Name","Category","Author","Availability","Reference"};
                    ResultSet rs=st.executeQuery("Select * from BSearch");
                    for(int i1=0;i1<rows;i1++)
                              rs.next();
                              for(int j1=0;j1<6;j1++)
                                   data1[i1][j1]=rs.getString(j1+1);
                    table=new JTable(data1,Colheads);
                    int v=ScrollPaneConstants.VERTICAL_SCROLLBAR_AS_NEEDED;
                    int h=ScrollPaneConstants.HORIZONTAL_SCROLLBAR_AS_NEEDED;
                    System.out.println("hai we came here");
                    txtSearch.setText("");
                    txtSearch.requestFocus();
                    jsp=new JScrollPane(table,v,h);
                    TableDisp td=new TableDisp(table);
                    catch(Exception sqlex) {
                         if (found == false) {
                              JOptionPane.showMessageDialog (this, "Some prob Found.");
          if (obj == btnCancel) {          //If Cancel Button Pressed Unload the From.
               setVisible (false);
               dispose();
          if(obj==rb1)
               flag=0;
          if(obj==rb2)
               flag=1;
          if(obj==rb3)
               flag=2;
          if(obj==rb4)
               flag=3;
}Code For TableDisp.java
import java.awt.*;
import javax.swing.*;
public class TableDisp extends JFrame {
     private JPanel pBook = new JPanel ();
     private JScrollPane scroller;
     private JTable table;
     public TableDisp(JTable j)
          super("Table Display");
          setSize(500,300);
          this.setLocation(new Point(10, 10));
          pBook.setLayout (null);
          table=j;
          scroller = new JScrollPane (table);     //Adding Table to ScrollPane.
          scroller.setBounds (20, 50, 460, 200);     //Aligning ScrollPane.
          pBook.add(scroller);
          getContentPane().add (pBook, BorderLayout.CENTER);
          setVisible(true);
}Please check my code and Give a solution
Thank you

hi
Please go through my code. I My code just i am getting all the Values which are Equal to a Sellected Category. and storing it in BSearch Table. and then Only i get the Datas from BSearch table and show it in the Jtable.
Now the Problem is System is not getting all the Value Equal to that Sellected Category.
Please go through my Code and tell give me some idea, Otherwise Just Modify the Code and give me,
Please help me on this issue.
Thank you very much

Similar Messages

  • Does the 10.5.7 update address command+f finder search issues?

    Does the 10.5.7 update address command+f finder search issues?
    Search has been horrible under 10.5 in that it does not reliably find FOLDERS on network drives, only file names.
    Even when I am looking directly at a folder and I search for it will not appear in the command+f window.
    Also the stupidity of not allowing a specific search location.
    Has this been addressed? I have, at any given time, 3-4 mounted servers.
    I do not have a choice now to search a specific hard drive.
    10.4.11 gave me the option under "OTHERS" to select a specific place to search.
    The only choice I have in 10.5.2 is "SHARED". Which searches all drives when I only want to search one. Nor do I have a choice of searching just one of my two internal drives.
    I talked with Chris in apple engineering several months ago, who acknowledged that search problems are a known issue under 10.5 and this was being addressed but have not heard any more. I don't want to download an update unless these broken search issues have been fixed. This is a production machine and I cannot have downtime in the Dept.

    Have you filed a bug report or enhancement request with Apple?
    http://bugreport.apple.com/

  • Problems with Search in Contacts (Public folder favourite)

    Office Version:Office 2010Operating System:Windows 7
    I am running Outlook 2010, connecting to an SBS2003 server by HTTP and running in Cached mode.
    My business contacts are stored in a Public Folder, and my personal contacts in my local Contacts folder.
    The Public Folder is in my Favourites, and is designated an 'Outlook Address Book'
    'Download Public Folder Favourites' is enabled in the Exchange Mail Account settings
    I am having problems with Search (which was never a problem in Outlook 2007).
    If I select the Contacts shortcut, under 'My Contacts I have listed in order:
    Suggested Contacts
    Office Contacts (this is my public folder favourite)
    Contacts
    Search Results
    If I select the Office Contacts link, and attempt to search for a contact whose contact card I can actually see on the screen, the search will fail. The scope is defaulting to 'All Contact Items' (which is fine), but if I change this to 'Current Folder'
    then the contact is immediately found.
    In OL2007 I could search for a contact, even when not in a contact folder, and it would find every instance of it immediately.
    Any ideas here? I have been told to rebuild my index, which I will do over the weekend as it will take some time. But I have doubts it will make much difference. This is a new machine with a fresh installation of Win7 x64 and Office 2010.
    thanks

    Keith, I have this same issue here.  I looked on the Small Business Server pages for an answer as suggested by Xiu but could not find any.  I'm not sure why this would be a SBS issue as we are not running SBS and have this issue.
    For some reason, "All Contact Items" doesn't include the current folder if it is a public folder. 
    Did you ever get an answer/solution?

  • Search Issue ... URGENT

    i have a search issue :-
    1. user logs in to the site and enters 'opadry' in the search field.
    2. the search retrieves the required results.
    3. but the result page shows the 'Administration' and 'Navigator' links on the top right of the page.
    4. through these links the user can go to the forms, reports etc at look at them at design time.
    5. how do i prevent this ? because i do not want the users to see these links.
    has anyone had these problems ?
    any help would be greatly appreciated.
    thanx a lot.
    null

    I remember seeing the reply somewhere. Pls check the archive. I present version it is not possible.

  • Sharepoint Server 2013 Search Issue

    Hi,
    running Sharepoint server 2013. search service application is not working properly. getting the below error message. 
    "Unable to retrieve topology component health states. This may be because the admin component is not up and running"
    we have 2 tier sharepoint 2013 farm architecture. please find the below server details.
    1. WFE & APP server (OS: Windows Server 2008 R2 SP1 and RAM: 8 GB) 
    2. database server (OS: Windows Server 2008 R2 SP1 and RAM: 8 GB) 
    I tried the following:
    - installed the latest sharepoint server 2013 CU.
    - OS is up to date.
    - deleted and recreated Search Service Application
    - The service account does have access to the search databases
    - one account is used, domain\sp2013search, has all necessary permissions
    Please help to fix the search issue.

    Hi Raj0639,
    According to your description, my understanding is that you got an error when you run SharePoint 2013 Search.
    Firstly, please make sure that all servers are online, and connecting to others.
    Please stop all search services on Manage services on server, then restart them. Please try to do as Amit said, compare the result.
    If this issue still exists, please repair SharePoint 2013 under Control Panel, then compare the result.
    Here is a similar post for you to take a look at:
    http://social.technet.microsoft.com/Forums/en-US/a67b0d0f-4f5a-4412-8f83-a57eaff4be45/sharepoint-search-host-controller-does-not-start?forum=sharepoin
    I hope this helps.
    Thanks,
    Wendy
    Wendy Li
    TechNet Community Support

  • When i try to activate iMessage i could see the comment "waiting for activation" for more than 24hrs.Is this because of mobile device problem or someother issue ? My mobile is just 20 days old

    When i try to activate iMessage i could see the comment "waiting for activation" for more than 24hrs.
    Is this because of mobile device problem or someother issue ?
    My mobile is just 20 days old

    The following discusses that error message and may help: iOS: Troubleshooting FaceTime and iMessage activation

  • How to problem solve adf issue in the mx340 model

    how to problem solve adf issue in the mx340 model

    Alex,
    the missing thing in your example is the fact, that if only one value is selected, the parameter has exact this value like BOSTON. If you choose more than one value, the parameter includes the *'*, so that it looks like *'BOSTON','NEW YORK'*. So you need to check in the package, if there's a *,* in the parameter or not. If yes there's more than one value, if not it's only one value or it's null.
    So change your package to (you need to expand your variables)
    create or replace package bip_departments_2_parameters
    as
    p_dep_2_param varchar2(1000);
    p_loc_1_param varchar2(1000);
    p_where_clause varchar2(1000);
    function beforereporttrigger
    return boolean;
    end bip_departments_2_parameters;
    create or replace package body bip_departments_2_parameters
    as
    function beforereporttrigger
    return boolean
    is
    l_return boolean := true;
    begin
    p_where_clause := ' ';
    if p_dep_2_param is not null then
    if instr(p_dep_2_param,',')>0 then
    p_where_clause := 'WHERE DNAME in ('||p_dep_2_param||')';
    else
    p_where_clause := 'WHERE DNAME = '''||p_dep_2_param||'''';
    end if;
    if p_loc_1_param is not null then
    if instr(p_loc_1_param,',')>0 then
    p_where_clause := p_where_clause || ' AND LOC IN ('||p_loc_1_param||')';
    else
    p_where_clause := p_where_clause || ' AND LOC = '''||p_loc_1_param||'''';
    end if;
    end if;
    else
    if p_loc_1_param is not null then
    if instr(p_loc_1_param,',')>0 then
    p_where_clause := p_where_clause || 'WHERE LOC in ('||p_loc_1_param||')';
    else
    p_where_clause := p_where_clause || 'WHERE LOC = '''||p_loc_1_param||'''';
    end if;
    end if;
    end if;
    return (l_return);
    end beforereporttrigger;
    end bip_departments_2_parameters;
    I've written a similar example at http://www.oracle.com/global/de/community/bip/tipps/Dynamische_Queries/index.html ... but it's in german.
    Regards
    Rainer

  • Problem with search method in AM called from JSP

    Hi, im trying to get the real value from an foreign key of a view, and i have been created a custom search method in the AM, but i got a problem, the search only get results the first time that is called, the next times gets null result :
    public String getValorReal(Long identificador, String vista,
    String campoFiltro, String campoValor)
    where identificador is the foreign key, vista is the name of the view that contains the real value of the foreign key, campoFiltro is the field name of the view that will match the foreign key, and campoValor is the field name of the view that the search method will return as the real value.
    I created this class that call the search method :
    public class CuentasContablesOrgLOV {
    private BindingContainer bindings;
    public Map CuentaContable= new HashMap(){
    public Object get(Object key){
    Map parametros;
    BindingContainer bindings = getBindings();
    String result = null;
    OperationBinding operationBinding = bindings.
    getOperationBinding("getValorReal");
    if (operationBinding != null){
    parametros = operationBinding.getParamsMap();
    parametros.put("identificador",new Long(key.toString()));
    parametros.put("vista","CcCuentasContablesView4");
    parametros.put("campoFiltro","identificador");
    parametros.put("campoValor","CuentaContable");
    result = (String)operationBinding.execute();
    return result;
    public Map getCuentaContable() {
    return CuentaContable;
    I invoke this class from the JSP with EL:
    <af:outputText value='#{CuentasContablesOrgLOV.cuentaContable[row.CcCucoIdentificador]}'/>
    In the AM method obtains all the parameters correct, but the search only works the first time!
    Do you have an idea whats been happened?
    thanks a lot for your help

    There is no <%@ method %> tag for a JSP.
    http://java.sun.com/products/jsp/syntax/1.2/syntaxref12.html
    It looks like you are trying to write a JSP that only accepts post requests - not get?
    I'm not sure if you can accomplish that in a JSP directly.
    You can with an HttpServlet (which is where the doGet/doPost methods are defined) but HttpJspPage doesn't extend that class necessarily.
    Best you could probably do is put in a test of request.getMethod() to see if it is get/post.

  • Problem with search plug-in in ver 5.9

    Hello
    I have a problem with search plug-in when you type some key words and press search button it works fine, but if you press enter jou have following error:
    Whoops. Something broke.
    Version      5.9.6.43135
    Message      Invalid postback or callback argument. Event validation is enabled using in configuration or <%@ Page EnableEventValidation="true" %> in a page. For security purposes, this feature verifies that arguments to postback or callback events originate from the server control that originally rendered them. If the data is valid and expected, use the ClientScriptManager.RegisterForEventValidation method in order to register the postback or callback data for validation.
    Source      System.Web
    Stack      at System.Web.UI.ClientScriptManager.ValidateEvent(String uniqueId, String argument)
    at System.Web.UI.Control.ValidateEvent(String uniqueID, String eventArgument)
    at System.Web.UI.WebControls.LinkButton.RaisePostBackEvent(String eventArgument)
    at System.Web.UI.WebControls.LinkButton.System.Web.UI.IPostBackEventHandler.RaisePostBackEvent(String eventArgument)
    at System.Web.UI.Page.RaisePostBackEvent(IPostBackEventHandler sourceControl, String eventArgument)
    at System.Web.UI.Page.RaisePostBackEvent(NameValueCollection postData)
    at System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBefore
    Our technical people have been notified.
    We're sorry for the inconvenience.
    Thanks
    Greg.

    Grzegorz, I'm going to guess this is a problem with the version you're using. We're using 2007.0.620 and whenever we hit enter on the field instead of the search button itself it returns no results. As far as I can tell, it's a bug in the system.
    It looks like updating to the latest version (624) isn't helpful either, although both 620 and 624 remove that nasty explosion that you're getting and instead just return the same page with no search results.
    There may be a way to edit some code-behind to detect when a postback is being made, although given the locked nature of Web Tools I doubt it. If you can find a way to have the button be recognized, let me know - otherwise, I'd say it's a bug that needs to be addressed in the next version.

  • Firefox upon opening an image in a new tab, centers the image from top and bottom and surrounds the image with a grey frame. Just started having the problem today, searched Google to no avail.

    Firefox upon opening an image in a new tab, centers the image from top and bottom and surrounds the image with a grey frame. Just started having the problem today, searched Google to no avail.

    Oh wow, looks like a new feature.
    The "page" links in a stylesheet with the address "resource://gre/res/TopLevelImageDocument.css". If you remove that reference, then the image displays in the old style.
    '''''Edit: Please skip the rest of this post and check out the next one.'''''
    There might be a more elegant solution than that, but you could use a bookmarklet to strip out that link when you want to view the page in its old style. A bookmarklet is a snippet of JavaScript you save on the Bookmarks toolbar for quick access.
    First, copy the following code to the clipboard (it's all one long line):
    <br>javascript:var ssheet=document.querySelector('link[href="resource://gre/res/TopLevelImageDocument.css"]'); if(ssheet)ssheet.parentNode.removeChild(ssheet); void 0;
    Next, if you are not displaying the Bookmarks Toolbar, use View > Toolbars > Bookmarks Toolbar to display it. (If you aren't using the classic Menu bar, press Alt+v to call up the old View menu. Right-clicking the gray area just below the page address also allows you to display the Bookmarks Toolbar.)
    Right-click on the Bookmarks Toolbar (or Mac equivalent of right-click!) and choose New Bookmark.
    Paste the code into the Location box (the second box).
    Then type a useful name in the Name box (e.g., Oldstyle Picture) and click Add.
    Now, when you want to tweak the image display, click the button to run the script.
    Manual clicking is a hassle, so it might make sense to look into other solutions. (Greasemonkey didn't seem to work; I think it might not run on .jpg files.)

  • I don't know exactly when this started, but Winamp became my default search and homepage.. The homepage issue was easy, but the search issue is bigger than I expected. It ALWAYS uses Winamp (Powered by AOL) as my default search. Please help. Thank you.

    I don't know exactly when this started, but Winamp became my default search and homepage.. The homepage issue was easy, but the search issue is bigger than I expected. It ALWAYS uses Winamp (Powered by AOL) as my default search. Please help. Thank you.

    reinstall it but make sure to uncheck the box next to "make winamp my default search engine"
    attached is screenshot from the part of installation proces where that checbox should be unchecked
    hope this helps

  • I have a problem with searching page, whenever i try to open any page a blank paper cums appear only written custom search google in English

    i have a problem with searching page, whenever i try to open any page a blank paper cums appear only written custom search by google this one is not such as my google home page
    == This happened ==
    Not sure how often
    == i use to search any page like movies or etc

    Well, it seems waiting is not my strong suit..! I renamed a javascript file called recovery to sessionstore. This file was in the folder sessionstore-backups I had copied from mozilla 3 days ago, when my tabs were still in place. I replaced the sessionstore in mozilla's default folder with the renamed file and then started mozilla. And the tabs reappeared as they were 3 days ago!
    So there goes the tab problem. But again when I started mozilla the window saying "a script has stopped responding" appeared, this time the script being: chrome//browser/contenttabbrowser.xml2542
    If someone knows how to fix this and make firefox launch normally, please reply! Thank you

  • CSC Customer Search issue in Weblogic

    We have extended the customer search in CSC for searching through "ProfileID" property.
    This functionality is not working when the EAR is deployed in Weblogic.(Please find the error log attached)
    But when the same EAR is deployed in jboss, its working.
    Please help on this issue.
    Error Log
    <Error> <HTTP> <BEA-101017> <[ServletContext@43144004[app:Project-csc module:agent path:/agent spec-version:], request: Workmanager: default, Version: 0, Scheduled=true, Started=true, Started time: 47 ms
    POST /agent/framework.jsp HTTP/1.1
    User-Agent: Mozilla/5.0 (Windows NT 5.1; rv:15.0) Gecko/20100101 Firefox/15.0
    Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
    Accept-Language: en-us,en;q=0.5
    Accept-Encoding: gzip, deflate
    Connection: keep-alive
    Content-Type: application/x-www-form-urlencoded; charset=UTF-8
    Referer: http://localhost:7003/agent/main.jsp?_windowid=2
    Content-Length: 7485
    Cookie: atg.allwindows.lastrequest=1357124645500; JSESSIONID=XjfJQkPS1Jv1plngypdKk1y3bDW2wnyykxp4jty9J9L0TLHdgj7z!1285435330
    Pragma: no-cache
    Cache-Control: no-cache
    ]] Root cause of ServletException.
    java.lang.NullPointerException
    at atg.core.util.StringUtils.makeList(StringUtils.java:1309)
    at atg.core.util.StringUtils.makeList(StringUtils.java:1262)
    at atg.search.routing.command.search.Field.getNamesString(Field.java:175)
    at atg.search.routing.command.search.Field.getAttributeXML(Field.java:246)
    at atg.search.routing.command.SearchXMLObject.getAllAttributeXML(SearchXMLObject.java:382)
    Truncated. see log file for complete stacktrace
    >
    -----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------

    Refer following thread
    ATG10.1 CSC search issue | NullPointerException

  • Facetime problem. am having issues with facetime on iphone 4. Have gone to settings and turned on facetime and it will work (have tested it and my partner can facetime me but no icon comes up on my phone and so doesnt link to any of my contacts

    Facetime problem. am having issues with facetime on iphone 4. Have gone to settings and turned on facetime and it will work (have tested it and my partner can facetime me but no icon comes up on my phone and so doesnt link to any of my contacts

        Oh boy! Acting kind of weird seems to be an understatement, aquaequus!
    What type of troubleshooting were we able to do with you? I want to make sure that we can get some sort of resolution for this problem.
    It is quite possible the battery door may get your phone in working order again. I'm not sure if the store has it in stock, but it is available in our warehouse for $14.99 which can be ordered via customer service.
    Tamara H.
    Follow us on Twitter @VZWSupport

  • Search issue with plurals?

    RH9, webhelp, merged project.
    Just reported to me and I can confirm: There seems to be a content search issue where the singular works, but not the plural, even if the plural is what we use. Specific example: Enhancement vs. Enhancements. We have several topics that are labeled or refer to "Enhancements", but searching with that term finds nothing, while using "Enhancement" finds those terms.
    "Ticket" vs "Tickets" results in a similar issue. The behavior appears to be that the singular form can find either version - singular or plural - but plural search terms result in no matches at all.
    Any ideas what may be causing this?

    Are you testing on the published help or the generated help. The latter is rebuilt every time.
    Try in one of the sample projects. Click Open on the RoboHelp Starter page and then click Samples in the ribbon on the left.
    If that works, try downloading the demo merged help from my site and generate from that. Test that works.
    Post back with the results at that point.
    See www.grainge.org for RoboHelp and Authoring tips
    @petergrainge

Maybe you are looking for

  • My iPod Touch 4th gen is disabled for 22,000,000 minutes. I remember the passcode, and I can't restore.

    My iPod Touch 4th gen is disabled for 22,000,000 minutes. I have looked all around the Apple support communities and I always find the same "solution", which is to put it into DFU or recovery mode and restore from a backup. Here's my problem: My comp

  • How to capture hi8 super8?

    Hi, I have my Imac connect to a Dv converter what has S-video and composite. Now i would like to Be able to capture Super video, Video8 and Hi8. I don't know much about what play i have to get to work. Is there anyone who can tell me, if there is a u

  • Is there any FM to to pick Perner from Position.

    Hi I am new bee in HR. I have a position number using which i need to pick the perner of that position. Please let me know if there is any standard function module to do so. Thanks,

  • Error Activating Plugin for OpenText LiveLink

    SES 10.1.8.3 I am trying to activate the identity plugin for OpenText Livelink. Global-Settings->Activate Identity Plugin      Class Name          oracle.search.plugin.security.identity.llcs.LLCSIdentityPluginManager      Jar file          ../llcs/LL

  • Skipping audio when sent to encore

    when i send my project from premeiere all of the sudden it about 15 mins into the video it skips audio over and over please help!!!!