To search  the records according to certain criteria

Hello,
I am a user of jdeveloper using swing/jclient for bc4j.
How to search the records according to certain specified criteria i.e if user enter c in the textbox then all the names starting with the letter c matches the criteria.
it is somewhat same as (like c%) in oracle .
if there is anyone who can help me then please do send reply back to me.
thank you

you need to use the setWhereClause method on the BC4J view to set it to your search criteria.
Do a search for this methos on OTN or google and you'll find several samples.
Like this one:
http://otn.oracle.com/products/jdev/htdocs/handson/WebServices/HOS903WS.html

Similar Messages

  • Search the Records

    hi All,
    i wrote the below code to search the records based on Batch ID and Customer ID.
    but the below code is worked only either Batch id or Customer ID.
    i want to search on Both Batch ID and Cust ID.what are the other steps i need to be follow.
    public void srchCustidtlsfordrilldwn(String vBtchID,String vcustID)
    System.out.println("I am in execute query mode");
    XxcustdrilldownVOImpl seaDrildtls=getXxcustdrilldownVO1();
    System.out.println("The Batch ID Is:,"+vBtchID);
    String s1="BATCH_ID='"+vBtchID+"'";
    String s2="CUSTOMER_ID='"+vcustID+"'";
    seaDrildtls.setWhereClauseParams(null);
    seaDrildtls.setWhereClauseParams(null);
    seaDrildtls.setWhereClause(s1);
    seaDrildtls.setWhereClause(s2);
    seaDrildtls.executeQuery();
    System.out.println("The executed query is :"+seaDrildtls.getQuery());
    Regards,

    Hi,
    As specified by Hrishikesh, u need to append the whereclause into a stringbuffer
    Use the below code...
    StringBuffer whereClause = new StringBuffer(100);
    //Get ur VO object here
    seaDrildtls.setWhereClauseParams(null); // Always reset
    whereClause.append("BATCH_ID='"vBtchID"' and CUSTOMER_ID='"vcustID"');
    seaDrildtls.setWhereClause(whereClause);
    {code}
    Regards,
    Gyan                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

  • I want to search the table according to these requirement

    1.     Fields on selection screen (input screen) : Plant Code From to , Distributional Channel  from to , Division from to , Customer Code from to , Period From to , Material Code (can be used using *) .
    2.     Field in the output List : Exc. Invoice No, Customer Code , Customer Name , Material Code , Material Description , Invoice Qty, Pack/Forward  , Basic Price

    User's can easily take the Report from this by selecting Different kinds like Customer Specific [And/Or] Sales Organisation Specific [And/Or] duration of date but Here Date is Mandatory Fields user must have to give date as a selection criteria
    In Second level this report will interact with user where they can select date to see the full Details of Sales Order
    Selection
    - Sales Organisation
    - Date
    - Customer this will be usefull when Selecting the Checkbox
    Standard Variants
    - Output
    - Sales Order
    REPORT  zche_sales_order                        .
    ****************************Declarations********************************
    TABLES: vbkd,vepvg.",vbak,vbap,vbpa,vakpa, vapma.
    DATA: BEGIN OF sal OCCURS 0,
          ch TYPE checkbox,
          vbeln LIKE vbak-vbeln, " sales document
          netwr LIKE vbak-netwr, "Net Value of the SalesOrder
          matnr LIKE vbap-matnr, "material no.
          waerk LIKE vbak-waerk, "curr.
          dat   LIKE vbak-erdat, "date.
          END OF sal.
    DATA: newsal LIKE sal OCCURS 0 WITH HEADER LINE.
    DATA: amount LIKE vbak-netwr, date2(15),date3(8),date4(1),
          date5(2),date6(2).
    DATA: lin LIKE sy-curow VALUE 1,"Screens, vertical cursor position at
                                     "PAI available in SYST struc.
          checkbox        TYPE c               ,
          dat LIKE vbak-erdat.
    *******************Selection**Screen**Design****************************
    SELECTION-SCREEN BEGIN OF BLOCK blk1 WITH FRAME TITLE text-001.
    PARAMETERS: vkorg LIKE vepvg-vkorg,
                vtweg LIKE vepvg-vtweg,
                spart LIKE vepvg-spart.
    SELECT-OPTIONS date FOR vbkd-bstdk DEFAULT sy-datum TO sy-datum
                                                OBLIGATORY.
    SELECTION-SCREEN END OF BLOCK blk1.
    SELECTION-SCREEN BEGIN OF BLOCK blk2 WITH FRAME TITLE text-002.
    SELECTION-SCREEN BEGIN OF LINE.
    SELECTION-SCREEN POSITION 10.
    PARAMETERS: chk1 AS CHECKBOX.
    SELECTION-SCREEN POSITION 20.
    PARAMETERS: kunnr1 LIKE vbpa-kunnr.
    SELECTION-SCREEN END OF LINE.
    SELECTION-SCREEN END OF BLOCK blk2.
    ********************First**Level**Operation*****************************
    IF chk1 <> 'X'.
      IF vkorg <> ''.
        PERFORM organisation.
      ELSE.
        PERFORM organisation_else.
      ENDIF.
    ELSE.
      IF vkorg <> ''.
        PERFORM cus_orga.
      ELSE.
        PERFORM cus_orga_else.
      ENDIF.
    ENDIF.
    * Displaying the contents which is selected from table by
    *  -selection conditions
    SORT sal BY dat.
    LOOP AT sal.
      ON CHANGE OF sal-dat.
    *    FORMAT HOTSPOT ON.
        IF sy-tabix = 1.
          WRITE: sy-vline, sal-ch AS CHECKBOX,sal-dat .
          CLEAR amount.
        ELSE.
          WRITE:sy-vline, amount,/ sy-vline, sal-ch AS CHECKBOX,sal-dat.
          CLEAR amount.
        ENDIF.
      ENDON.
      amount = amount + sal-netwr.
      AT LAST.
        WRITE:sy-vline, amount.
        ULINE.
        SUM.
    *    FORMAT HOTSPOT OFF.
        FORMAT COLOR = 3.
        WRITE:/ ' Total Amount:', sal-netwr UNDER amount.
      ENDAT.
    ENDLOOP.
    **********************Interaction with report**************************
    SET PF-STATUS 'BANU'. " To create Application ToolBar for Display
    Button
    *                          To verify Double click on BANU
    AT USER-COMMAND. " This will execute after pressing Display Button
      CASE sy-ucomm.
        WHEN 'DISP'.
        free newsal.
          DO.
            READ LINE lin FIELD VALUE sal-ch INTO checkbox.
            IF sy-subrc NE 0. EXIT. ENDIF.
            IF checkbox = 'X'.
              PERFORM datecon.
              PERFORM process.
            ENDIF.
            lin = lin + 1.
          ENDDO.
          PERFORM selection.
      ENDCASE.
    ************************ SUB ROUTINE Area
    *This Process SubRoutine will assign the values from current
    *   -InternalTable (sal) into other IT(newsal), by date which is
    *         - selected by CheckBox
    FORM process.
      LOOP AT sal WHERE dat = dat.
        newsal-ch    = 'X'.
        newsal-vbeln = sal-vbeln.
        newsal-netwr = sal-netwr.
        newsal-matnr = sal-matnr.
        newsal-waerk = sal-waerk.
        newsal-dat   = sal-dat.
        APPEND newsal.
      ENDLOOP.
    ENDFORM.                    "process
    *&---------This will display the values for selected dates from new --*
    *---------------------internal Table (newsal)-------------------------*
    *&      Form  SELECTION
    FORM selection.
      ULINE.
      FORMAT COLOR = 1.
      WRITE:sy-vline,'Date',AT 14 sy-vline, 'Order NO', AT 27 sy-vline,
    'Order Material', AT 48 sy-vline,'Order Value(AMT) Currency  '.
      FORMAT COLOR OFF.
      ULINE.
      LOOP AT newsal.
        ON CHANGE OF newsal-dat.
          IF sy-tabix <> 1.
            WRITE:/ sy-vline, AT 14 sy-vline,AT 27 sy-vline,AT 48 sy-vline.
        WRITE:/ sy-vline,newsal-dat,sy-vline,AT 27 sy-vline,AT 48 sy-vline.
          ELSE.
         WRITE: sy-vline,newsal-dat,sy-vline,AT 27 sy-vline,AT 48 sy-vline.
          ENDIF.
        ENDON.
        WRITE:/ sy-vline, AT 14 sy-vline,newsal-vbeln,sy-vline,
          newsal-matnr, sy-vline, newsal-netwr, newsal-waerk.
        AT LAST.
          SUM.
          ULINE.  FORMAT COLOR = 3.
          WRITE:/ sy-vline, AT 15 'Total Amount for selected month:',
                        newsal-netwr UNDER newsal-netwr.
          FORMAT COLOR OFF.
          ULINE.
        ENDAT.
      ENDLOOP.
      lin = 1.
      FREE newsal.
    ENDFORM.                    "SELECTION
    * This Date convertion is must for pick the particular Date from the
    *    -displayed line, and here we are reversing the Date like
    YYYY/MM/DD
    *  -because to Check or assign the date we need to give in reverse
    order
    *&      Form  DATECON
    *       text
    FORM datecon.
      date2 = sy-lisel(17).
      SHIFT date2 LEFT BY 4 PLACES.
      WHILE date2 <> ''.
        SHIFT date2 RIGHT.
        date4 = date2+11.
        IF date4 <> '.'.
          CONCATENATE date4 date3 INTO date3.
        ENDIF.
      ENDWHILE.
      date5 = date3(2).
      date6 = date3+2.
      date3 = date3+4.
      CONCATENATE date3 date6 date5 INTO date3.
      dat = date3.
    *  SORT dat BY dat.
    *  DELETE ADJACENT DUPLICATES FROM dat COMPARING dat.
    ENDFORM.                    "DATECON
    * Here we are doing different kinds of selections by the EndUser's
    needs
    *&---------When user selectiong an Sales Organisation-----------------*
    *&      Form  ORGANISATION
    *       text
    FORM organisation.
      SELECT f~vbeln p~matnr c~netwr c~waerk p~audat INTO (sal-vbeln,
    sal-matnr, sal-netwr,sal-waerk, sal-dat) FROM ( vakpa AS f INNER JOIN
          vbak AS c ON f~vbeln = c~vbeln ) INNER JOIN vapma AS p ON
    f~vbeln = p~vbeln WHERE  p~audat IN date AND p~vkorg = vkorg.
        APPEND sal.
      ENDSELECT.
    ENDFORM.                    "ORGANISATION
    *&---------Without Sales Organisation i.e All Organisation------------*
    *&      Form  ORGANISATION_ELSE
    *       text
    FORM organisation_else.
      SELECT f~vbeln p~matnr c~netwr c~waerk p~audat INTO (sal-vbeln,
    sal-matnr, sal-netwr,sal-waerk, sal-dat) FROM ( vakpa AS f INNER JOIN
        vbak AS c ON f~vbeln = c~vbeln ) INNER JOIN vapma AS p ON
        f~vbeln = p~vbeln WHERE  p~audat IN date.
        APPEND sal.
      ENDSELECT.
    ENDFORM.                    "ORGANISATION_ELSE
    *&------------When Selecting Customer by choosing CheckBox------------*
    *&      Form  CUS_ORGA
    *       text
    FORM cus_orga.
      SELECT f~vbeln p~matnr c~netwr c~waerk p~audat INTO (sal-vbeln,
    sal-matnr, sal-netwr,sal-waerk, sal-dat) FROM ( vakpa AS f INNER JOIN
            vbak AS c ON f~vbeln = c~vbeln ) INNER JOIN vapma AS p ON
           f~vbeln = p~vbeln WHERE p~audat IN date AND p~vkorg = vkorg AND
           p~kunnr = kunnr1.
        APPEND sal.
      ENDSELECT.
    ENDFORM.                    "CUS_ORGA
    *&------------Without Customer by without choosing CheckBox-----------*
    *&      Form  CUS_ORGA_ELSE
    *       text
    FORM cus_orga_else.
      SELECT f~vbeln p~matnr c~netwr c~waerk p~audat INTO (sal-vbeln,
    sal-matnr, sal-netwr,sal-waerk, sal-dat) FROM ( vakpa AS f INNER JOIN
        vbak AS c ON f~vbeln = c~vbeln ) INNER JOIN vapma AS p ON
    f~vbeln = p~vbeln WHERE p~audat IN date AND p~kunnr = kunnr1.
        APPEND sal.
      ENDSELECT.
    Reward  points if it is usefull ......
    Girish

  • Tip: searching the forum with user name

    Hello,
    The forum software was recently upgraded. Unfortunately, very important and useful feature – searching the forum according to user name or user ID – was actually downgraded. It was simply removed from the user interface, and by that can seriously impair the daily “work” of all the users.
    The odd angle of this issue is that it seems that the searching capability was not removed from the search engine itself, just from the user interface. The searching URL recognize a parameter called ‘&userID=…’, and that one will filter the search result by the user ID (unfortunately, I couldn’t find a similar parameter for the user handle name). For example, the following URL will give you Joel’s posts with the key word ‘translatable’, in the last 90 days –
    http://forums.oracle.com/forums/search.jspa?threadID=&q=translatable&objID=f137&dateRange=last90days&numResults=30&userID=148363The following will give you all Scott’s posts with the key words ‘page’ and ‘cache’ (without date limit) –
    http://forums.oracle.com/forums/search.jspa?threadID=&q=page+%26%26+cache&objID=f137&dateRange=all&numResults=30&userID=57434As can be seen, this URL is long, complicated, and includes escape codes. In order to make it a bit simpler, I’m using the regular user interface to define all the search criteria available there, make the search and them manually adding, to the end of the search engine created URL, the ‘&userID=…’ parameter.
    As this parameter is using the users ID numbers, I’ve compiled the following liste, which include my “top forum users”. Everyone welcome to add their owns.
    User Name   -  User ID
    Scott Spadafore  -  57434
    Joel Kallman  -  148363
    Carl Backstrom  -  354238
    John Scott (Jes)  -  422290
    Denes Kubicek  -  15826
    Andy (ATD)  -  503936
    Patrick Wolf  -  132282
    Dimitri Gielis  -  570759
    Tyler Muth  -  283901
    Arie Geller  -  229120I would like to thank Scott for giving me the initial tip. I hope this will help us make better use of this great knowledge pool.
    Regards,
    Arie.

    Arie,
    Great! I was really missing this feature...I'd give you 10 points for that if I could ;)
    John.
    http://jes.blogs.shellprompt.net
    http://www.apex-evangelists.com

  • Searching the Music Store

    Hi there
    I am using iTunes version 6.0.4.
    My problem is, when searching for a track in the music store, it does not show all the records that match that criteria. For instance, if I search for "MAW" it will bring up several results with that criteria in it, but it will not show "More Then a Woman (Maw Main Mix) - Aaliyah"
    I have tried regular and power search.
    Is this something where iTunes doesn't search for words in brackets?
    Cheers

    It's rather simple:
    iTunes doesn't seem to carry that song.

  • How to display the data according to the search criteria

    Hi ,
    I want to display the order data in my application.
    I have certain search criteria in my application like
    ordernumber , date etc.
    If I click the submit button without giving any criteria , all the data is getting displayed properly in the table.
    But,If I want to display the data according to the order number, all the orders present are getting displayed , but actually it should display the order only for that particular order number.
    The code is  like : onActionSearch()
    wdThis.wdComponentController().executeGetlist_Input();
    Can any one tell me how to display the orders depending upon the search criteria.
    Ideas & suggestions are truely welcome.
    Thanks & Regards
    Neha Mahanty

    Hi Neha,
    Design ur RFC in such a way that it should display the result according to your search criteria.
    If you are making a search on "Order Number" pass some input(search criteria along with some parameter, if order number is not null then pass "X" as parameter) to RFC so that it will return the result accordingly. And same with date also.
    Thanks n Regards,
    Jhansi Miryala

  • How to update all the record for a particular column in a table based on search criteria.

    Hi All,
    I am new to ADF. I have a requirement, where i have to perform mass update on a table.
    Scenario:
    Ex: I have a dept manual search region. where i search with deptId: 20. I get 20 records in my table. now i have  another region where i have a inputchoice list which contains all the columns names that exists in dept table. Beside that i have a input text box and an update button
    Now user, first searches with dept id:20 and clicks on search button, where it shows 20 record in the table. He then select a column from input choicelist(ex: ManagerId), then enters new value in the input box(ex: abc) then clicks on update button.
    Now i want, all the records in the ManagerId column with dept id:20 to be updated with the new value "abc"
    Can anyone help me with the code.
    Thanks in advance..

    Hi,
    If you go to your VO and generate the ViewObjectImpl, in there you can create a method which will contain two parameters, 1 the attribute name and 2 the value.
    Then you can follow something like explained in this post:
    ADF Tutorial: How to apply bulk actions to a view object rows
    The only difference is that you will need to create a method like this:
    public void updateAttribute(String attribute, Integer value){
            RowSetIterator iter = createRowSetIterator(null);
            while (iter.hasNext()){
                Row row = iter.next();
                row.setAttribute(attribute, value);
    Then you expose that as a client interface and then after you filter your table by your criteria you just need to execute this method passing the right parameters.
    Regards

  • Search for records in the event viewer after the last run (not the entire event log), remove duplicate - Output Logon type for a specific OU users

    Hi,
    The following code works perfectly for me and give me a list of users for a specific OU and their respective logon types :-
    $logFile = 'c:\test\test.txt'
    $_myOU = "OU=ABC,dc=contosso,DC=com"
    # LogonType as per technet
    $_logontype = @{
        2 = "Interactive" 
        3 = "Network"
        4 = "Batch"
        5 = "Service"
        7 = "Unlock"
        8 = "NetworkCleartext"
        9 = "NewCredentials"
        10 = "RemoteInteractive"
        11 = "CachedInteractive"
    Get-WinEvent -FilterXml "<QueryList><Query Id=""0"" Path=""Security""><Select Path=""Security"">*[System[(EventID=4624)]]</Select><Suppress Path=""Security"">*[EventData[Data[@Name=""SubjectLogonId""]=""0x0""
    or Data[@Name=""TargetDomainName""]=""NT AUTHORITY"" or Data[@Name=""TargetDomainName""]=""Window Manager""]]</Suppress></Query></QueryList>" -ComputerName
    "XYZ" | ForEach-Object {
        #TargetUserSid
        $_cur_OU = ([ADSI]"LDAP://<SID=$(($_.Properties[4]).Value.Value)>").distinguishedName
        If ( $_cur_OU -like "*$_myOU" ) {
            $_cur_OU
            #LogonType
            $_logontype[ [int] $_.Properties[8].Value ]
    #Time-created
    $_.TimeCreated
        $_.Properties[18].Value
    } >> $logFile
    I am able to pipe the results to a file however, I would like to convert it to CSV/HTML When i try "convertto-HTML"
    function it converts certain values . Also,
    a) I would like to remove duplicate entries when the script runs only for that execution. 
    b) When the script is run, we may be able to search for records after the last run and not search in the same
    records that we have looked into before.
    PLEASE HELP ! 

    If you just want to look for the new events since the last run, I suggest to record the EventRecordID of the last event you parsed and use it as a reference in your filter. For example:
    <QueryList>
      <Query Id="0" Path="Security">
        <Select Path="Security">*[System[(EventID=4624 and
    EventRecordID>46452302)]]</Select>
        <Suppress Path="Security">*[EventData[Data[@Name="SubjectLogonId"]="0x0" or Data[@Name="TargetDomainName"]="NT AUTHORITY" or Data[@Name="TargetDomainName"]="Window Manager"]]</Suppress>
      </Query>
    </QueryList>
    That's this logic that the Server Manager of Windows Serve 2012 is using to save time, CPU and bandwidth. The problem is how to get that number and provide it to your next run. You can store in a file and read it at the beginning. If not found, you
    can go through the all event list.
    Let's say you store it in a simple text file, ref.txt
    1234
    At the beginning just read it.
    Try {
    $_intMyRef = [int] (Get-Content .\ref.txt)
    Catch {
    Write-Host "The reference EventRecordID cannot be found." -ForegroundColor Red
    $_intMyRef = 0
    This is very lazy check. You can do a proper parsing etc... That's a quick dirty way. If I can read
    it and parse it as an integer, I use it. Else, I just set it to 0 meaning I'll collect all info.
    Then include it in your filter. You Get-WinEvent becomes:
    Get-WinEvent -FilterXml "<QueryList><Query Id=""0"" Path=""Security""><Select Path=""Security"">*[System[(EventID=4624 and EventRecordID&gt;$_intMyRef)]]</Select><Suppress Path=""Security"">*[EventData[Data[@Name=""SubjectLogonId""]=""0x0"" or Data[@Name=""TargetDomainName""]=""NT AUTHORITY"" or Data[@Name=""TargetDomainName""]=""Window Manager""]]</Suppress></Query></QueryList>"
    At the end of your script, store the last value you got into your ref.txt file. So you can for example get that info in the loop. Like:
    $Result += $LogonRecord
    $_intLastId = $Event.RecordId
    And at the end:
    Write-Output $_intLastId | Out-File .\ref.txt
    Then next time you run it, it is just scanning the delta. Note that I prefer this versus the date filter in case of the machine wasn't active for long or in case of time sync issue which can sometimes mess up with the date based filters.
    If you want to go for a date filtering, do it at the Get-WinEvent level, not in the Where-Object. If the query is local, it doesn't change much. But in remote system, it does the filter on the remote side therefore you're saving time and resources on your
    side. So for example for the last 30 days, and if you want to use the XMLFilter parameter, you can use:
    <QueryList>
    <Query Id="0" Path="Security">
    <Select Path="Security">*[System[TimeCreated[timediff(@SystemTime) &lt;= 2592000000]]]</Select>
    </Query>
    </QueryList>
    Then you can combine it, etc...
    PS, I used the confusing underscores because I like it ;)
    Note: Posts are provided “AS IS” without warranty of any kind, either expressed or implied, including but not limited to the implied warranties of merchantability and/or fitness for a particular purpose.

  • Search for records in a table on the basis of a function

    Hi,
    How is it possible to use a function as search criteria in a sql query ?
    For example, I have the following query :
    select a.job_name JOB_NAME, substr(a.job_name,instr(a.job_name,'.',-1)+1) as AUTNAME
    FROM autosys.job a
    where a.job_name like %PRD%' and a.command like '%dsjob%'
    and a.command not like 'substr(a.job_name,instr(a.job_name,'.',-1)+1)';
    This is now working because of the use of function "substr" on the right side of the query.
    How can I write the query so as to find the same result as using this function ?
    Can someone help me out on this ?
    Thanks

    Among other things, you have the quotes in the wrong place in the NOT LIKE predicate. As posted, you are searching for records where command does not contain the literal string substr(a.job_name,instr(a.job_name,'.',-1)+1). I don't think that is really what you are after. You need to concatenate the operators to the results of the SUBSTR function. Something more like:
    SELECT a.job_name job_name,
           SUBSTR(a.job_name, INSTR(a.job_name, '.', -1)+1) as autname
    FROM autosys.job a
    WHERE a.job_name LIKE 'HP.TM.%PRD.%' and
          a.command LIKE '%dsjob.sh%' and
          a.command NOT LIKE '%'||SUBSTR(a.job_name, INSTR(a.job_name, '.', -1)+1)||'%'; John

  • Oracle 10g - To find the corresponding record for a certain row

    Hi all,
    The scenario is like this - Suppose I've got a table with 100+ columns. For a certain row inside, I need to find its corresponding record which is in the same table. The way how I define "corresponding" here is - these two rows should be identical in all attributes but only different in one column, say "id" (primary key).
    So how could I achieve this? What I can think of is to fetch all columns of the first row into some pre-defined variables, then use a cursor to loop the table and match the values of the columns of each row to those variables. But given that we've got 100+ rows in the table, this solution doesn't look practical?
    Any advises are greatly appreciated. Thanks.

    something to play with as Solomon suggested (use some other string aggregation technique if you're not 11g yet)
    you'll have to adjust the column_list accordingly
    select 'select ' || column_list ||
           ' from ' || :table_name ||
           ' group by ' || column_list ||
           ' having count(*) > 1' the_sql
      from (select listagg(column_name,',') within group (order by column_id) column_list
              from user_tab_cols
             where table_name = :table_name
           )Regards
    Etbin
    Edited by: Etbin on 25.12.2011 16:53
    Sorry, I'd better leave the forum: the title says you're 10g :(
    Providing a link for replacing listagg: http://www.sqlsnippets.com/en/topic-11787.html

  • Searching attibutes in the record mode in Data Manager

    Hi,
    If i create a new attribute in taxonomy mode,i cannot view it in the corresponding search in the record mode in Data Manager.The particular attribute which i have added is not getting displayed in the attributes in the search pane.If i have to search for that attribute in the record mode what should i do.
    Thanks and Regards,
    Preethi

    hi Preethi,
    there are a few differencies between fields and attributres
    have a look at table:
    Tab. 1 Comparison Fields vs. Attributes
    from this document
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/5d4211fa-0301-0010-9fb1-ef1fd91719b6
    for search options based on attributes have a look at the bottom
    of the table I mention
    hope this will clarify a little bit
    Regards,
    michal

  • Firefox, google chrome, IE8 lose the ability to search and find text on certain archived books. IE7 can search and find. Is there a way to fix this?

    Firefox, google chrome, and IE8 all have the same error. The search and find functions for certain on-line archive books does not work on these browsers. They claim that text does not exist. In IE7 the text is found. I can be typing in a word I see on the page and all three still bottom out with this error. Try this with the Scots Dialect Dictionary:http://www.archive.org/stream/cu31924026538813#page/n5/mode/2up
    or
    A Glossary of Tudor and Stewart Words ( a google book even) http://books.google.com/books?id=hPhLAAAAMAAJ&pg=PA198&lpg=PA198&dq=tudor+exclamations&source=bl&ots=8DFgw_eH8t&sig=-Mxf2gwq3nZDVLOCn_y06ZBRIfA&hl=en&ei=O-dNTey0H8PdgQf_2cgf&sa=X&oi=book_result&ct=result&resnum=9&ved=0CDIQ6AEwCA#v=onepage&q&f=false
    Again the search and find function works with IE7 but not these new browsers. And I would love to upgrade from IE7 but cannot.
    Any way to fix this on Firefox?

    Works for me on Linux with Firefox 10.0.1
    Start Firefox in <u>[[Safe Mode]]</u> to check if one of the extensions or if hardware acceleration is causing the problem (switch to the DEFAULT theme: Firefox/Tools > Add-ons > Appearance/Themes).
    *Don't make any changes on the Safe mode start window.
    *https://support.mozilla.org/kb/Safe+Mode

  • To search a record from the table by providing a search button in JSP page

    Hi,
    My problem statement is:
    I have a jsp page which displays a table containing records. I have to provide a button called search and a condition in a textfield so that the record which matches the condition gets highlighted.
    Can anyone solve my problem statement. Its urgent.
    Suraj.

    Example:
    on the jsp page, read the matched value the server provides and use it to put the statement in bold using the <b> tag (I dont know the syntax for highlighting).
    <%String matchedString=(String) request.getAttribute("matchingString");%>
    Then in your list:
    <%if(matchedString.compareTo(thisRecordString)==0){%>
    <b>
    <%}%>
    //your text goes here
    <%if(matchedString.compareTo(thisRecordString)==0){%>
    </b>
    <%}%>

  • Variable selection criteria in the record selection

    Variable selection criteria in the record selection with Crystal Report with SQL 2005 Server tables.
    In the record selection I would like to use the value of the field u201CsSQL1u201D as part of the selection criteria instead the field name {tblReportAccessAutority.sSQL1}
    The value of the field {tblReportAccessAutority.sSQL1} is {tblSalesReporting.sJEDivisionCode} = 'I'
    I tried with formulas, SQL expressions, but nothing works.
    Record selection of the report:
    {tblReportAccessAutority.sUserID} = CurrentCEUserName
    and {tblSalesReporting.sLegalEntity} = {?Legal Entity}
    and {tblSalesReporting.sJEPeriod} = {?PARAM_PERIOD}
    and {tblSalesReporting.sIG3rd} =  {?PARAM_IG3RD}
    and {tblReportAccessAutority.sSQL1}                           <---this is the problem line
    The field {tblReportAccessAutority.sSQL1} is not converted in the value:
    {tblSalesReporting.sJEDivisionCode} = 'I'     
    The tables tblSalesReporting and tblReportAccessAutority are joined in this report.
    Many thanks for your help.
    Roger

    How is the syntax for the selection criteria in the record selection?
    {tblReportAccessAutority.sUserID} = 'ch1scro2'
    and {tblSalesReporting.sLegalEntity} = {?Legal Entity}
    and {tblSalesReporting.sJEPeriod} = {?PARAM_PERIOD}
    and {tblSalesReporting.sIG3rd} = {?PARAM_IG3RD}
    and SELECT {@sSQL_Condition} ???????? or
    and  {@sSQL_Condition} ??????? or how?
    The expression fir the formula {@sSQL_Condition} is:
    TOTEXT({tblReportAccessAutority.sSQL1})
    The field definition for {tblReportAccessAutority.sSQL1} is nvarchar(50).
    Thanks Roger

  • Searching for the Recording Security Manager utility

    The WLS v6.1 docs on managing security (http://edocs.beasys.com/wls/docs61/adminguide/cnfgsec.html#1074675)
    mentions a Recording Security Manager utility for detecting and resolving permission
    problems. Can someone point me to it?

    Hi Dan,
    Its available on the BEA developer center
    http://developer.bea.com/do_login.jsp
    You will need to have a login and password to access this site .
    Just search for Recording Security Manager and you will get the tool
    yeshwant
    Dan McHarness wrote:
    The WLS v6.1 docs on managing security (http://edocs.beasys.com/wls/docs61/adminguide/cnfgsec.html#1074675)
    mentions a Recording Security Manager utility for detecting and resolving permission
    problems. Can someone point me to it?

Maybe you are looking for

  • User permission on Sales Order button

    We have a user in our Shipping area who can get into the data on the sales order with no problem by going through Sales Orders and drilling into the Customer Number and then Orders. BUT, he needs to get to the Sales Order information a different way.

  • One interface for vpnc?

    Haven't been able to find a solution to just this question I have, but maybe I don't know how to phrase the question. In my laptop, I have a wireless and an ethernet interface. In one work location, I have to be connected to the wired network for mos

  • Hrms  Report

    Hi All, I have a requirement which needs to show the employee joining count in a daywise.we need to display the data in 365 days the format should be like this.      Turn Over Report on "Year"                                                          

  • Help with "No bootable Device -- Insert boot disk and press any key" problem

    Alright, I am on an Early 2011 17inch macbook pro.  I have removed the superdrive to install a secondary disk drive for mass storage, then replaced the original one with an SSD blah blah blah.  I do everything from the books, run bootcamp, make my US

  • Creating Iweb seperate domains for multiple sites DIDNT WORK

    Hi! Any help would be much appreicaited! I am creating mutiple websites in iWeb 09'. All 3 of my websites have been stored under 1 domain file on my mac. I have read numerous discussion boards stating the steps of how to seperate each of the created