Search Criteria for OR Condition

Hello,
I have searched to no avail to find a solution that will allow me to search within SAP CRM (web gui) on a description field such for multiple criteria.  Specifically I am looking for all values in the description field that satisfy the following:
0*
OR
6*
OR
169*
I attempted to use 0* | 6* | 169* thinking the | equates to OR in SAP CRM with no luck.
The syntax to accomplish this would be greatly appreciated.
Thank you

Thank you very much for the prompt reply.
Unfortunately I do not see a '+' sign next to the attribute that is being searched.  The description field on the webpage dialogue screen is only able to allow text input.  I should mention that when I enter 0*, all the records with description beginning with 0 are returned successfully.
I wish there was a method of attaching a file so you may be able to see a screen shot.
I appreciate any further guidance you may be able to provide.
Thank you

Similar Messages

  • Search criteria for insert/update bdoc

    Hi All,
    In our set up we have ecc to crm replication of BP. If one goes and checks the extension data of a stuck bdoc it has an Object Task- Insert or Update.
    Can someone help me with search criteria so that i can pull out bdocs which have an Insert as the Object task ??
    We have search criteria for errored/intermediate state bdocs; for inbound vs outbound; bdoc type etc etc..
    Need one based on Insert/Update Task so that any new data replication if stuck with its very first bdoc( Insert type) can be immediately queried.
    Regards
    Abhinav

    Hello Abhinav,
    I do not think that we have such a search criteria to search for BDocs based on the Task Type, which comes under the
    data part of the BDoc.
    One alternative way is to find out in which table these data gets stored and write a program to fetch the revelent Bdocs.
    Hope thisl helps!
    Best Regards,
    Shanthala Kudva

  • Setting Default Values in Search Criteria for COSTCENTER

    Hi ALL,
    I need Help for setting default values in search criteria for COST CENTER.
    Basically the issue is when creating a Shopping Cart, i need to assign a COST CENTER at Item level under COST ASSIGNMENT Tab.
    While searching the cost center i need to default the following fields in my search criteria based on the Login User :
    1. Controlling Area,
    2. Language Key.
    Please suggest some solution.
    Thanks & Best Regards,
    Surya

    Hi Vani,
    Sorry for the delay reply and Thanks a Lot for your timely support......I would like confirm once again is the name of the BADI is <b>bbp_f4_read_on_exit</b> or <b>bbp_f4_read_on_entry</b>. In this BADI i've not found a method to default Controlling Area. Can you please suggest me which method i can use.
    Thanks & Regards,
    Surya

  • New search criteria for old (standard) node?

    Is it possible to create script, which adds new search criteria for old (standard) node?
    CustomSearchExtensionHandler.jsx gives example of custom search criteria for custom node. But it is not clear for me, how to add new search criteria over standard XMP fields.

    Hi,
    First you create your own table (with fields like Vendor No and Name), in which you wants to store your Value range for that Vendor and fill this table with all the values for that vendor(your own set of values).
    Using this table create an Elementary search Help from SE11 and you can use that search help for the Vendor field where ever you use.
    This works fine.
    Regards,
    Anji

  • Additional search criterias for opportunities: SYS_PROBABILITY, MilestoneDt

    Dear experts,
    we need additional search criterias for opportunities
    1.) we need to be able to search for the standard field of SYS_PROBABILITY
    2.) we need to be able to search for milestone dates we defined
    Do you have any idea how to handle these?
    Thanks in advance,
    BR Matthias

    Dear Shiromani,
    thanks for your input.
    I know about the possibilities of using AET, but the field I need: SYS_PROBABILITY does not show up in the available fields to be added.
    Furthermore we dont want to make our self generated fields searchable, but we want to search for specific Milestone Dates we customized.
    Any ideas?
    Thanks, BR Matthias

  • How can we find search criteria for Mask and Namedsearch

    Hi Gurus,
      I got a doubt while working with the concept of mask and namedsearch. I defined a search criteria and stored the result under a mask or namedsearch. After some time if i call the mask/namedsearch where can we see the search criteria. Can anybody make me clear about this.
    Thanks
    Ravi

    Hi Ravi,
    You can see the search criteria for Named Search. Suppose you search for a field in free form search and then include all these records in your Named Search. Now in order to see the search criteria and enhance it. You need to go to>Menu bar>Search>Restore Named Search>Press Named Search(Name Given By you). Now you will able to see in free form search or any other search criteria which you included in for your Named Search.
    Regards,
    Mandeep Saini

  • Search criteria for standard field

    Hi All,
    we have a requirement in loyalty management employee search screen we couldn't find a custom field called occupation, But in create employee screen it's come. please suggest solution for add this standard field in search criteria.
    Regards
    Praveen.

    Hi praveen,
    I am providing some screen shots
    click on new entries after that will get below screen some times check box checked so only i told to check if it is unchecked is not an issue so  u need to check in structure level.

  • How can I change the search criteria for Smart Folders?

    I have a saved search Smart Folder that I wish I to modify. How do I do that? (It currently searched for all .HDR files, but I need to to find only HDR images that are more than 1 month old)

    select the existing smart folder, click on the "gears" button in finder's toolbar and click on 'show search criteria". modify them and save.

  • How to search in a table according to search criteria for many fields ??

    Hello all,
    I required any suggestion regarding easy method for searching a table according to search criteria.
    I have 7 dropdown list in the userinterface and user can select 1 dropdown or many according to his choice. After selecting 1 or many dropdown list when he clicks SEARCH button the related records for filled dropdown list should be displayed if present in table. But the problem is that its getting complecated as I have to code for 7 dropdown list. many combinations comes in the way.
    So can anybody  tell me that how to getrid of this complicated process and is there any easy method for this...??
    thanks,
    Simadri

    Hi.,
    It wont get complicated.,  try this.,
    Let us say you have 3 drop down lists., for ID, Name , Priority., now in OnActionSearch.,
    DATA:RT_RANGES_ID TYPE RANGE OF ZDE_ID,  " Data Element for ID
              RS_RANGES_ID LIKE LINE OF RT_RANGES_ID,
              RT_RANGES_NAME TYPE RANGE OF ZDE_NAME, " Data Element for Name
              RS_RANGES_NAME LIKE LINE OF RT_RANGES_NAME,
              RT_RANGES_PRI TYPE RANGE OF ZDE_PRIORITY, " Data Element for Priority
              RS_RANGES_PRI LIKE LINE OF RT_RANGES_PRI.
    *Read the Values in Drop down List using get_attribute( ).
    now.,
    *Appending ID to Range Table
    if  lv_id is not initial.                              " here lv_id is the drop down value in Drop Down List for ID
       RS_RANGES_ID-OPTION = 'EQ'.
        RS_RANGES_ID-LOW    =  lv_id.    " appending ID
        RS_RANGES_ID-SIGN   = 'I'.
        APPEND RS_RANGES_ID TO RT_RANGES_ID.
    endif.
    if  lv_name is not initial.
       RS_RANGES_Name-OPTION = 'EQ'.
        RS_RANGES_NAME-LOW    =  lv_name.    " appending Name
        RS_RANGES_NAME-SIGN   = 'I'.
        APPEND RS_RANGES_NAME TO RT_RANGES_NAME.
    endif.
    if  lv_priority is not initial.
      RS_RANGES_PRI-OPTION = 'EQ'.
        RS_RANGES_PRI-LOW    =  lv_priority.   " appending Priority
        RS_RANGES_PRI-SIGN   = 'I'.
        APPEND RS_RANGES_PRI TO RT_RANGES_PRI.
    endif.
    * Fetching Values for Selction Criteria
    Select  * from <TABLE> into lt_int_tab where ID IN RT_RANGES_ID
                                                                     AND NAME IN RT_RANGES_NAME
                                                                     AND PRIORITY IN RT_RANGES_PRI.
    similarly You do for your 7 Drop Downs..
    hope this helps u.,
    Thanks & Regards,
    Kiran

  • New custom search criteria for opportunities

    Hi to all,
    I want to expand the web gui view for search opportunities.
    I have a new custom filed in the heder of the
    opportunities named ZZORDERADM_H010, type BOOL, created with transaction EEWB.
    The header is correctly update, the table CRMD_ORDERADM_H now contain my custom filed and it works fine
    if i set it from web GUI (i've also extend the hedere view with the custom field).
    Now want be able to use it as search criteria.
    I follow the note nr  1336833.
    I have extended the structure CRMST_QUERY_OPP_BTIL (and the struct CRMST_QUERY_OPP_AC_BTIL also )
    with my new custom filed (i've made an append).
    Then I mantain the table CRMVC_DQ form sm34.
    I've made a new insertion under component BTopp like this:
    BT     BTQOpp     ZZORDERADM_H0101     X Indica opzioni che sono disponibili  ........................
    The custom filed for search is now available, and i've extend the search view of WEB GUI with the new custom filed.
    BUT the search DON'T WORK. Is like the the new custom field not influence the search!!!
    With all the other search criteria blank, and mine valorized, the search returns all the opportunity entries;
    instead it should return 2 records (i've made 2 test case with this custom fileld set at 'X'.)
    The same result trying execute the query from transaction GENIL_BOL_BROWSER.
    Please Help!
    Davide

    Hello Davide,
    If you want to use your new field in search, a BADI should be implemented. This is usually done for you by EEWB provided that you checked "PCUI extended search" at some point in the wizard. SAP should have changed this label because it is somehow confusing if your are using CRM5.2 onward versions... as PCUI has nothing to do with it!
    So did you mark this checkbox?
    If no, you can run the wizard again and everything will be fine.
    Kind regards,
    Nicolas Busson.
    PS: badi name is CRM_RF_SEARCH_EEW

  • How to add standard "reason" field as search criteria for service orders?

    Hi,
    I would like to add the criteria "reason" in search tool for service orders.
    Would it be standard or woudl it need development?
    Many thanks,
    Eli

    Hi Eli,
    Please go to the web ui configuration and search reason feild is available for the config view. If it is available please move from hidden to visible. If it is not available you can add using development or AET to add that feild in the view.
    Regards,
    karthik J

  • Modifying the search criteria for my tabular form...!!!!

    Hey guyz i m back again with a query related to my tabular form that i have developed through your help...
    I presented my application to the management 2day...eveything went fine but they want me to modify the search criteria according to thr needs.
    1. They want me to include a drop box which has all the fields dispalyed in the table like .. EMPNO,STC,NAME,NATIONALITY,POSITION,
    & beside this drop box they want me to include a empty field such that if select NATIONALITY from the drop down box and enter the concerned nationality in the search box and press Search button i should get all the emp with particular nationality
    FOR EX: In the drop down box i select NATIONALITY and in the search box i type GERMAN ,... now when i click i should be getting all germans available in the company
    2.We have got evaluations for all emp in percentages
    Now from the drop down i select POSITION in the box beside i enter( HP:80-90) then i should be able to retrieve all the EMP working with position HP and evaluations between 80%-90%
    FOR EX : DROP BOX: Position
    TEXT ITEM: HP:80-90
    Click Search I get all the EMP with evaluation between 80-90 and so on
    How should i modify this ......creating a separate search box for each column would have been easy but how should i implement this what the management wants from me..????

    hi
    try something like this.
    key-exequery trigger(item level).
    begin
    if
      :code.pno is not null OR
      :code.chasis is not null OR
      :code.certi is not null
    then  --> SEARCH IN  TABLE
      go_block ( 'block' );
      :system.message_level := '10';
      execute_query;
      :system.message_level := '0';
      if
           :block.id is null
      then
        go_block ( 'code' );
        message ( 'Nothing found with the given criterias.' );
        message ( ' ' );
      end if;
    /*if
         :code.code is not null OR
      :code.branch || :code.class || :code.year || :code.serial || :code.cno || :code.edno is not null OR
      :code.issue is not null OR
      :code.inscode is not null OR
      :code.ID is not null
    else  --> SEARCH IN block2 TABLES
      go_block ( 'block2' );
      :system.message_level := '10';
      execute_query;
      :system.message_level := '0';
      if
           :block2.IDis null
      then
        go_block ( 'code' );
        message ( 'Nothing found with the given criterias.' );
        message ( ' ' );
      end if;
    end if;
    end;
    when-new-form-instance trigger.
    begin
    for l_rec in ( select distinct year from ins1 where year is not null order by year desc ) loop
         add_list_element ( 'code.year', get_list_element_count ( 'code.year' ), l_rec.year, l_rec.year );
    end loop;
    exception when others then null;
    end;
    key-exit trigger.
    begin
    if
         get_item_property ( name_in ( 'system.cursor_item' ), item_canvas ) in ( 'Block_Name1', 'Block_Name2' )
    then
      go_block ( 'code' );
    else
         exit_form( no_validate );
    end if;
    end;
    when-button-pressed trigger.
    begin
    do_key ( 'EXECUTE_QUERY' );
    end;
    pre-query trigger.(block level).
    begin
    :ins1.serial := :code.code;  --> ?? still needed ?
    :ins1.branch := :code.branch;
    :ins1.class := :code.class;
    :ins1.year := :code.year;
    :ins1.serial := :code.serial;
    :ins1.cno := :code.cno;
    :ins1.edno := :code.edno;
    :ins1.inscode := :code.inscode;
    :ins1.producer := :code.producer;
    :ins1.broker := :code.broker;
    :ins1.beneficiary := :code.benecode;
    if
         :code.issue is not null AND :code.todate is null
    then
      set_block_property ( 'block', onetime_where, ' trunc ( issue ) >= trunc ( :code.issue )' );
    elsif
         :code.issue is null AND :code.todate is NOT null
    then
      set_block_property ( 'block', onetime_where, ' trunc ( issue ) <= trunc ( :code.todate )' );
    elsif
         :code.issue is NOT null AND :code.todate is NOT null
    then
      set_block_property ( 'block', onetime_where, ' ( trunc ( issue ) >= trunc ( :code.todate ) AND trunc ( issue ) <= trunc ( :code.todate ) )' );
    end if;
    end;
    key-next-item trigger(block level).
    begin
    if
         :block.ID is not null
    then
      :global.ref := :block.ID;
      exit_form ( no_validate );
    else
         go_block ( 'code' );
    end if;
    end;Sarah

  • Additional Search Criteria for I-Objects in IC Web Client

    Hi,
    I need to add addtional search criteria  like City, Region and Zipcode for I-Objects in the IC Web Client. Can anyone suggest me how to include these new fields?
    Thanks,
    Vijay

    Hi Igor,
    Thanks for your reply. Could you please let me know how did you proceed on this problem. Did u contact SAP for this? If so, what is the procedure to contact them? Please let me know so that I will be able to take up this issue with my client.
    Thanks,
    Vijay

  • How to add new fields to picklist of search criteria for opportunities

    Hi Friends,
    Could you please tell me how to add new fields to the picklist of search criteria of Opportunities in WEBCLIENT(CRM 2007).
    Regards,
    Vijay

    Dear Vijay,
    We are facing the same problem over here.
    Have you managed to find a solution? Please share
    BR,
    Rohit

  • Add new dropdown value in search criteria for Invoices

    Hello,
    I want to add one more value in Drop-Down box of the search criteria of invoices.
    As on now there are 2 DropDown boxes
    in Your Referance No
    in Transaction No
    (New)
    in Order No (This will have search value as "Sales Order No")
    Can anyone tell how to add this inw value?
    I have created YDocumentListSelectorForm.java extending DocumentListSelectorForm.
    public static final String INORDERNO = "inorderno";
    if("inorderno".equals(attribute))
              documentListFilter.setId(attributeValue);
    YBillingStatusCRM.java is created which extends BillingStatusCRM.class
    com.sap.mw.jco.JCO.Function billingListJCO = connection.getJCoFunction("YCRM_ISA_INVOICE_LIST_GET");
    if(billingList.getFilter().getExternalRefNo() != null && !billingList.getFilter().getExternalRefNo().equals(""))
              importParams.setValue(billingList.getFilter().getExternalRefNo(), "ORDERNO_FROM");
    Accessing it in JSP organizer-content-doc-search.jsp
    YDocumentListSelectorForm yform =
        (YDocumentListSelectorForm)pageContext.findAttribute("YDocumentListSelectorForm");
    <option value="<%=YDocumentListSelectorForm.INORDERNO%>" <%=form.isAttribute(form.INORDERNO) ? "selected" : ""%>> New Value</option>
    Regards,
    Shaun
    Edited by: Shaun07 on Aug 5, 2010 7:29 AM

    Hello,
    I want to add one more value in Drop-Down box of the search criteria of invoices.
    As on now there are 2 DropDown boxes
    in Your Referance No
    in Transaction No
    (New)
    in Order No (This will have search value as "Sales Order No")
    Can anyone tell how to add this inw value?
    I have created YDocumentListSelectorForm.java extending DocumentListSelectorForm.
    public static final String INORDERNO = "inorderno";
    if("inorderno".equals(attribute))
              documentListFilter.setId(attributeValue);
    YBillingStatusCRM.java is created which extends BillingStatusCRM.class
    com.sap.mw.jco.JCO.Function billingListJCO = connection.getJCoFunction("YCRM_ISA_INVOICE_LIST_GET");
    if(billingList.getFilter().getExternalRefNo() != null && !billingList.getFilter().getExternalRefNo().equals(""))
              importParams.setValue(billingList.getFilter().getExternalRefNo(), "ORDERNO_FROM");
    Accessing it in JSP organizer-content-doc-search.jsp
    YDocumentListSelectorForm yform =
        (YDocumentListSelectorForm)pageContext.findAttribute("YDocumentListSelectorForm");
    <option value="<%=YDocumentListSelectorForm.INORDERNO%>" <%=form.isAttribute(form.INORDERNO) ? "selected" : ""%>> New Value</option>
    Regards,
    Shaun
    Edited by: Shaun07 on Aug 5, 2010 7:29 AM

Maybe you are looking for

  • How to get the total pages in ALV report?

    Hi guys, Since I used page breaks can somebody please help me on how to get the total pages in ALV report?sincerely please...thanks guys.

  • CAF case insensitve search using QueryFilter

    Is it possible to do case insensitive search in CAF using QueryFilter? By default it does case sensitive searches in data elements of Entity Services. I am using 7.0. Also according to http://help.sap.com/saphelp_nw70/helpdata/en/44/6359a603b13674e10

  • Tried to download the free trial but it came up 'update failed' and i cant download it. Please help.

    I tried to download adobe Photoshop free trial but when it got to about 70%,It came up 'update failed' and it wont download. I've retried downloading it three times but still says the same thing. please help,Thanks

  • 'Resume' function (buttons over video / white rabbit)

    The resume function takes me back to the last chapter marker passed in the track I was viewing previously. Is it supposed to work like that? I thought it would take me bak to the last moment viewed (give or take several frames). I've got a video trac

  • Java re-compilation error!!!!

    Hi All, I had got a set of .class files from a software provider. When i tried to run a command it used to give an error. I tried to contact that vendor but in vain..... So i decided to decompile the class files to get the reason for error. I took 1