Form query/search issue F6 , F11 + Ctrl F11

Dear Techies,
I have an issue with form query/search mode in oracle applications. The Issue is i have a custom form which has headers and lines. whenever i open the form cursor is defaulting on a column called "Transaction_year" which is a mandatory column, Because of this whenever i want to search first I have to clear the record (Press F6) then press F11 and CTRl F11.
And my client is irritated to press so many buttons. I cannot make mandatory col to optional since it is "Transaction_year" a primary key. I have to customize the form in such a way that it should allow f11 + ctrl f11 to search.
Can somebody help me how can i achieve this. I am new to forms :(

I have written this code in form level - when new form instance trigger
go_item('XXDOF_PA_PRJCST_HEADERS.FIN_APPRVER_DEPT');
this is a optional field ... and when when i open form it is defaulting to this ... still f11 + ctrl f11 is not working ... i have to clear it (f6) and then press f11 + ctrl f11

Similar Messages

  • How to Automate the Query Search Upon Return to the Calling Form?

    Greetings Ya’ll Gurus,
    Could you please share with me how to make the Query Search executed automatically each time, when database table is updated, upon return to the “Calling Form” (i.e. FormA in this posting) from the “Called Form” (i.e. FormB from here on)?
    I have FormA call_form to FormB. FormB may return to FormA. FormA allows users to enter the Query parameters and perform query Search to the database table with a list of search results afterward; whereas FormB allows users to add or delete the same database table records. Both form images are as follows:
    FormA:
    !http://dot.state.ak.us/nreg/jtomasic/FormA_DWR_SEL.GIF!
    FormA call_form to FormB by clicking PB “Daily Work Report” (see circled PB "Daily Work Report" in the above image.)
    FormB Image (FormB allows users to add and delete database records):
    !http://dot.state.ak.us/nreg/jtomasic/FormB_DWR.GIF!
    FormB EXIT_FORM and returns to FormA (see circled PB "DWR Selection" in above image).
    Currently, our users must press the PB “Search” on FormA each time to refresh the Query “Search” results after returning to FormA, and they request to have the "Search" done automatically/programmatically upon return to FormA each time when the database table is updated.
    If you have programming code on this and are willing to share or if you have any suggestion or thoughts on this, it would be most greatly appreciated.
    Thanks a lot & Happy Holidays!

    Thanks so much Andreas, and yes, your link for calling a form and passing a context is very helpful. I believe, your suggested use of the global variable for the saved database table will work for the automation of the Query Search. I am, however, not sure how to make the code and the trigger to automatically perform Query PB "Search". The code for our current "WHEN-BUTTON-PRESSED" Trigger for the PB-Search of FormA is as following:
    DECLARE
         alert_button     NUMBER;
         alert_id               ALERT;
      MY_WHERE VARCHAR2(2500);
      MY_DIST_ID         DIST.DIST_ID%TYPE     := :BLK_UPDATE.DIST_ID;
      MY_ORG_ID          DWR.ORG_ID%TYPE       := :BLK_UPDATE.ORG_ID;
      MY_ACTY_ID         DWR.ACTY_ID%TYPE      := :BLK_UPDATE.ACTY_ID;
      MY_ACTY_WORK_ID    DWR.ACTY_WORK_ID%TYPE := :BLK_UPDATE.ACTY_WORK_ID;
      MY_CNTY_ID         DWR.CNTY_ID%TYPE      := :BLK_UPDATE.CNTY_ID;
      MY_ASSET_GRP_ID    DWR.ASSET_GRP_ID%TYPE := :BLK_UPDATE.ASSET_GRP_ID;
      MY_ASSET_ID        DWR.ASSET_ID%TYPE     := :BLK_UPDATE.ASSET_ID;
      MY_RTE             DWR.RTE%TYPE          := :BLK_UPDATE.RTE;
      MY_BEG_MP          DWR.BEG_MP%TYPE       := :BLK_UPDATE.BEG_MP;
      MY_END_MP          DWR.END_MP%TYPE       := :BLK_UPDATE.END_MP;
      MY_FROM_DATE       DWR.DWR_DATE%TYPE     := :BLK_CONTROL.FROM_DATE;
      MY_TO_DATE         DWR.DWR_DATE%TYPE     := :BLK_CONTROL.TO_DATE;
      MY_FLAG_OFFSYS     VARCHAR2(11)          := :BLK_UPDATE.FLAG_OFFSYS;
      MY_FLAG_COMMENTS   VARCHAR2(11)          := :BLK_UPDATE.FLAG_COMMENTS;
      MY_SPECIAL_EVENT_SEQ_NO SPECIAL_EVENT.SPECIAL_EVENT_SEQ_NO%TYPE  := :BLK_UPDATE.SPECIAL_EVENT_DESCR;
      MY_FLAG_ACCDT      VARCHAR2(11)          := :BLK_UPDATE.FLAG_ACCDT;
    BEGIN
    :blk_control.dummy_flag := 1 ;
    :BLK_CONTROL.DUMMY_ERR_FLAG := 'N';
    VALIDATION_SELECTION;     -- Program Unit VALIDATES DWR SELECTION PARAMETERS PRIOR TO
                                                    -- PERFORMING THE SEARCH AND POPULATING THE DISPLAY BLOCK
    if :blk_control.dummy_flag = 1 then
      IF :BLK_CONTROL.DUMMY_ERR_FLAG = 'N' THEN
        MY_WHERE := BUILD_WHERE_CLAUSE(MY_DIST_ID,
                                       MY_ORG_ID,
                                       MY_ACTY_ID,
                                       MY_ACTY_WORK_ID,
                                       MY_CNTY_ID,
                                       MY_ASSET_GRP_ID,
                                       MY_ASSET_ID,
                                       MY_RTE,
                                       MY_BEG_MP,
                                       MY_END_MP,
                                       MY_FROM_DATE,
                                       MY_TO_DATE,
                                       MY_FLAG_OFFSYS,
                                       MY_SPECIAL_EVENT_SEQ_NO,
                                       MY_FLAG_ACCDT,
                                       MY_FLAG_COMMENTS);
        SET_BLOCK_PROPERTY('BLK_DISPLAY', DEFAULT_WHERE, MY_WHERE);
        GO_BLOCK('BLK_DISPLAY');
        CLEAR_BLOCK(NO_VALIDATE);
        EXECUTE_QUERY(ALL_RECORDS);
        IF :BLK_DISPLAY.DWR_SEQ_NO IS NOT NULL THEN
                   SET_ITEM_ON_OR_OFF('BLK_CONTROL.PB_PRINT', TRUE);
        ELSE
                   SET_ITEM_ON_OR_OFF('BLK_CONTROL.PB_PRINT', FALSE);
                   alert_id := FIND_ALERT('no_data_query');
                   IF ID_NULL(alert_id) THEN
                        error_msg(1000);
                   ELSE
                        set_alert_message(alert_id, 1040);
                        alert_button := SHOW_ALERT(alert_id);
                   END IF;
              END IF;
              GO_BLOCK('BLK_UPDATE');
              GO_ITEM('BLK_CONTROL.PB_SEARCH');
         END IF;
    end if;
    END;My questions are:
    After initializing, set and/or reset the global variable for the saved database table,
    do I copy the above code (i.e. the "entire" code in the "WHEN-BUTTON-PRESSED" Trigger for the PB-Search) to the WHEN-NEW-FORM-INSTANCE-trigger, or other trigger(s), of FormA to automate the Query Search whenever there is a successful database commit/save? Or
    is there a simple way to activate the code in the "WHEN-BUTTON-PRESSED" Trigger for the PB-Search of FormA? Or
    is there a simple way to activate the EXECUTE_QUERY(ALL_RECORDS) command in the WHEN-NEW-FORM-INSTANCE-trigger or other trigger(s) of FormA ?
    Thanks and always.

  • 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

  • Dreamweaver CS4 Search & Replace / FTP connectivity / ctrl + B, ctrl + c

    Hi all,
    CS4 Search and Replace / FTP connectivity ISSUES:
    I use Search and replace tools for some large replace operations on live websites.. However when searching and replacing.. Dreamweaver is constantly having to establish a connection between the server for each file I search and replace in.
    Programs like Pspad have this down to a T. Any chance we can have an update to make the search and replace is faster. It's utterly useless at the moment.
    Biggest problem is if the connection to the server fails whilst searching and replacing text in a document.. The file gets removed from the server.. I have lost now 3 website pages because of this. I edit files live because they are within a test environment.. I don't like working locally because I know programs like Pspad are capable of being extremely fast at editing live.
    Because of this issue, I have had to stop using dreamweaver CS4 for now..
    ctrl + B, ctrl + C ISSUES
    When pressing ctrl + b to add strong tags to text.. Sometimes it doesn't work and I have to goto the keyboard tag editor.. close it again.. Then it works again. So there's a bug there.
    And sometimes ctrl + c copies as if it does (ctrl + a, ctrl + c) ... And it stops once again when I goto keyboard tags and close it again..
    Explain that hehe!
    All the best and thanks in advance.

    jimmyt1988 wrote:
     Any chance we can have an update to make the search and replace is faster. It's utterly useless at the moment.
    This is a user-to-user forum, so no one here can grant your request. File an enhancement request through the official form at http://www.adobe.com/cfusion/mmform/index.cfm?name=wishform.

  • 40357-invalid string in example record query not issued

    hello experts,
    i am using forms 10g.in query mode i face that error 40357-invalid string in example record query not issued.
    i used these code in key-next-item trigger
    PROCEDURE KN_FOR_QUERY IS
    BEGIN
    IF :global.navigation = 'D' AND :global.mode = 'M'
    THEN
    IF NAME_IN(:SYSTEM.CURSOR_ITEM) IS NOT NULL
    THEN
    :global.temp_div_code:= :po_m.po_div_code;
    :global.temp_po_num := :po_m.po_num;
    :global.temp_po_ex_work := :PUR_DELV_D.DELV_EX_WORK;
    :global.temp_modi_num:= :po_m.po_modi_num;
    IF GET_BLOCK_PROPERTY(:SYSTEM.CURSOR_BLOCK,QUERY_HITS)=0
    THEN     
    -- message('1---'||:SYSTEM.CURSOR_BLOCK);
    -- message('2---'||:SYSTEM.CURSOR_BLOCK);
    GO_BLOCK(:SYSTEM.CURSOR_BLOCK);
    CLEAR_BLOCK(no_validate);
    EXECUTE_QUERY;
    -- ELSE
         -- NEXT_ITEM;
    END IF;
    -- ELSE
    -- mess(GET_ITEM_PROPERTY(:SYSTEM.CURSOR_ITEM,PROMPT_TEXT)||' Must Be Entered For Query...');
    END IF;
    ELSIF :global.navigation = 'D' and :global.mode = 'Q'
    THEN
    IF NAME_IN(:SYSTEM.CURSOR_ITEM) IS NOT NULL
    THEN
    MESS('Press Execute query button');
    go_item('tools.execute_query');
    ELSE
    mess(GET_ITEM_PROPERTY(:SYSTEM.CURSOR_ITEM,PROMPT_TEXT)||' Must Be Entered For Query...');
    END IF;
    ELSIF :global.navigation = 'D' and :global.mode = 'A'
    THEN
    IF NAME_IN(:SYSTEM.CURSOR_ITEM) IS NOT NULL
    THEN
    NEXT_ITEM;
    ELSE
    mess(GET_ITEM_PROPERTY(:SYSTEM.CURSOR_ITEM,PROMPT_TEXT)||' Must Be Entered...');
    END IF;
    END IF;
    END;
    Thanks
    Ravi

    Hi Ravi
    u may need to debug to find out where and when the error exist pls note the following
    Error Message: FRM-40357: Invalid string in example record. Query not issued.Error Cause:In query mode, you entered an invalid ALPHA or CHAR value in the example record.
    Action:Correct the entry and retry the query. Level: >25
    Type: Errorpls verifying that u r entering 1 char for global variable to be assigned so any number between 2single coat is considered a character not s number .
    Amatu Allah

  • ADF Query Search

    What kind of query search is implemented in ADF Query components(ADF Query, ADF Query with Table) ?

    The query component provides the user the ability to perform a query based on a saved search or personalize saved searches. The component displays a search panel with various elements, each of which help the user to accomplish various tasks.
    Elements rendered by the query component
    Search Panel: the panel that encloses all elements rendered by the query component
    Search Header: Spans the entire width of the search panel and used to display a disclosure icon, the label, search mode (toggle button) and saved search (choice list of saved searches). The help (deprecated), info and toolbar facets' content is also displayed in the header.
    Match Type: A radio button group that appears below the search header, it defines whether the search criteria should be treated as an AND search or an OR search. For details on the conjunction operators refer to the QueryDescriptor and ConjunctionCriterion classes.
    Criteria region: A form layout that appears below the Match type, it contains search fields that define the search parameters. For details on search fields refer to the QueryDescriptor model.
    Criterion: A criterion represents a single search field, that comprises of an operator and one or more value fields. For value fields that render LOV components, the autoComplete feature is not enabled unless either of the methods, AttributeCriterion.hasDependentCriterion() or ListOfValuesModel.isAutoCompleteEnabled() return true. This is done to allow the end-user to enter partial values with wild-cards and tab around the search panel without causing the LOV dialog to be launched (everytime they tab-out of the LOV value field).
    Action buttons: The search panel has four action buttons: Search, Reset, Save, and Add Fields. The action buttons appear below the criteria region. They are end-aligned within the search header.
    NOTE: The Add Fields feature is only available in the Advanced mode.

  • 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

  • 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

  • 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.

  • Outer join two tables with query search record attached to both tables

    When I create a query with two tables that have query search records attached with outer join, PS seems to do a natural join (cartesian). We are on PT8.48.
    Is there a workaround for this issue. I do not want to remove query search record on either of the tables.
    I am trying to create an Emergency contact report. I am using two tables PS_EMPLOYEES and PS_EMERGENCY_CNTCT. Here is the sql PeopleSoft query generated when I did Left outer Join.
    Query SQL:
    SELECT A.EMPLID, A.NAME, A.ADDRESS1, A.CITY, B.PRIMARY_CONTACT, B.ADDRESS1, B.CITY, B.STATE, B.POSTAL, B.RELATIONSHIP, A.DEPTID, A.JOBCODE, A.COMPANY, A.EMPL_TYPE
    FROM (PS_EMPLOYEES A LEFT OUTER JOIN PS_EMERGENCY_CNTCT B ON A.EMPLID = B.EMPLID ), PS_EMPLMT_SRCH_QRY A1, PS_PERS_SRCH_QRY B1
    WHERE A.EMPLID = A1.EMPLID
    AND A.EMPL_RCD = A1.EMPL_RCD
    AND A1.OPRID = 'SREESR'
    AND (B.EMPLID = B1.EMPLID OR B.EMPLID IS NULL )
    AND B1.OPRID = 'PS'
    Appreciate any help.

    I think there are fixes for this issue in later tools releases (Report ID 1544345000). I'm not sure about 8.48, but you might try the workaround documented in
    E-QR: Left Outer Joins with Security Records are returning unexpected results [ID 651252.1]
    on Oracle Support.
    Regards,
    Bob

  • 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

  • Custom forms (with Headstart), issues.  Prompted more than once to save/commit.

    We have found that after analyzing the APPS schema (for CBO), we
    have an issue with custom forms. This issue relates to an
    earlier post on this forum where we get prompted several times
    to save/commit our changes and that the changes are never
    submitted. We've narrowed it down to the QMS_TRANSACTIONS
    table, when ever we run...
    analyze table apps.QMS_TRANSACTIONS estimate statistics;
    Table analyzed.
    Our custom forms will stop working. Why is this? So far we've
    found the only work around is to drop all Headstart objects and
    run the scripts to recreate the objects in the APPS schema.

    Michael,
    This might be a similar problem as they have experienced in
    Japan. Their problem description is as follows;
    -At the beginning, the transaction can be committed from the
    screen.
    -After analyzing APPS schema, it becomes impossible to commit the
    transaction.
    This problem is reproduceable in following condition;
    -Use Oracle 8i 8.1.7.x.
    -Set '_push_join_union_view' parameter to true. (Set by Rapid
    Installer of EBS)
    -Analyze the schema that has qms_transactions table.
    This problem seems to be caused by DB bug (Bug no 2058756).
    If this is indeed your problem a workaround has been described to
    set the event 10195 before analyzing the table.
    Hope this helps.
    Regards,
    Sigrid Gylseth.

  • How to use ADF Query search with EJB 3.0

    Hi,
    In ADF guide http://download.oracle.com/docs/cd/E12839_01/web.1111/b31974/web_search_bc.htm#CIHIJABA
    The steps to create query search with ADF Business Components says:
    "+From the Data Controls panel, select the data collection and expand the Named Criteria node to display a list of named view criteria.+"
    But with EJB, I'm not able to find Named Criteria node. Can we use ADF query search component with EJB? If yes, can you please show me some example, tutorial etc.?
    Thanks
    BJ

    For EJBs you'll need to implement the query model on your own.
    An example of how the model should look like is in the ADF Faces components demo.
    http://jdevadf.oracle.com/adf-richclient-demo/faces/components/query.jspx
    Code here:
    http://www.oracle.com/technology/products/adf/adffaces/11/doc/demo/adf_faces_rc_demo.html

  • I'm unable to clear my search history after many attempts with the firefox instructions as I'm unable to check the "Form and Search History" box for some reason

    I've tried several times to clear my search history without any success. I've been able to do so in the past, but this is the first time I've tried in a while and for some reason it will not let me check the box for "Form and Search History." Then sometimes it will let me check that box, but when I click "ok" to apply the clearing of the search history, nothing happens and it still remembers all my sites. At that point I try to clear it again and its back to not letting me check the "Form and Search history" box (I've gone through this cycle a few times). I tried looking through some of suggested articles that Firefox sent me too, but I don't know much about computers and just doing the things they seem talking about isn't working either. Please help, thanks!

    It seems to have worked itself out. Thanks anyway!

  • How to make a form-based search API using HTTPClient

    Hi,
    I am getting trouble to make an API that is related to making a site search by using a form-based search API by help of HTTPClient

    Hi,
    Something seems to get added to the form action because of "http". Hence I am removing it.
    You need to write a procedure with the values in the as parameters. Say for example you want to insert a record into dept
    table then
    Dynamic page code
    <html>
    <body>
    <form action="portalschema.insert_dept">
    <input type="text" name="p_deptno">
    <input type="text" name="p_dname">
    <input type="submit" name="p_action" value="save">
    </form>
    </body>
    </html>
    Procedure code.
    create or replace procedure insert_dept
    (p_deptno in number,
    p_dname in varchar2,
    p_action in varchar2)
    is begin
    if p_action = 'save' then
    insert into scott.dept(deptno,dname) values(p_deptno,p_dname);
    commit;
    end if;
    end;
    grant execute on insert_dept to public;
    Hope this helps.
    Thanks,
    Sharmila

Maybe you are looking for

  • WM - chenge in block structure (increase in SUTs)

    Hi gurus,   i want to increase the Storage unit (stacks ,stacks hight). This customisation allows me to chenge the block structure. But gives an error while creating TO. 'block structure coincide with SUTS' Now i gone through diff documents & come to

  • How to include pictures in xtable?

    Hello, There is a nice example for use of an xtable provided with Diadem: "User Dialog Box with Extended Table" which includes icons and text in some of the cells.  Can someone please explain how adding the images was accomplished?  I reviewed the co

  • Stock transport order deliveries

    Hi, The system seems to create duplicate deliveries when a job that run VL10i creates these deliveries. Does anyone have any idea why the system is creating duplicates deliveries when running this batch job? These are STO deliveries and they get crea

  • Lenovo Z580 battery & charging

    Hi I am looking to save a bit by not charging my battery cuz I am using my laptop constantly plugged. Is there some option that would allow me to not charge the battery till it drops below 10%. Is removing the battery the only solution? if I remove m

  • Insert Data Into Infotypes

    Hello! I am developing an inbound IDoc, during which i am suppose to insert respective segment structure into infotypes PA0000, PA0001, PA0002, PA0006 & PA0008 through Function Module RH_INSERT_INFTY, its throwing error sy-subrc 1, i can give sample