Restriction on search criteria for BP

Hey Everyone,
I am new to CRM and trying to find some things. When I search for BP's in eth system, sometimes, the search is restricted to 100 hits. Can anyone tell me how to change this criteria?
Thanks,
Swapna

Hi,
I'm afraid the 100 value is hardcoded at lest version CRM4.0. Take a look at LBUS_LOCATORF13 include, at variable lv_maximum_rows:
    DATA lv_text_plural   TYPE bu_locator_text_plural.
    DATA ls_last_line     TYPE bus_locator-search_result_line.
*   Rows counters.
    DATA lv_maximum_rows TYPE i VALUE 100.
    DATA lv_one_more_row TYPE i.
    DATA lv_last_line    TYPE i.
Kind regards,
Bruno

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

  • Restrict F4 search results for specific plants / sales org / purchasing org

    Hello All,
    We have a project where a particular plant / sales org / purchasing org needs to be restricted because of the top secret data for that business.  We would like to be able to restrict the search results that are displayed based on sales org / plant / purchasing org in the F4 help.  If a user does not have access to the data / documents related a plant / sales org / purchasing org, we do not want the user to be able to see doc numbers, ship-to's, material numbers etc... My question is where do we restrict F4 results for the Sales and Distribution, Finance, Materials Management, Production Planning, Logistics, etc... modules?  Thanks in advance for the help.
    Jordan

    We can set authorization for specific plants and other organization levels,contact the basis team and discuss about the authorization

  • 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

Maybe you are looking for

  • How to upload data from  flat to ztables with in the same client by idocs

    Hi Experts,                I have a requirement in IDOCS, I need to create a custom IDOC .I  am working on IDES 4.6c. The reqirement is , there  are ztables with header and item data. say for example Authors and Books. I need to upload data from flat

  • HP LaserJet 1018 no longer prints after security update

    After installing the following updates on my HP Pavilion dv71023cl running Windows Vista: Cumulative Security Update for Internet Explorer 9 for Windows Vista for x64-based Systems (KB2817183) Installation date: ‎4/‎12/‎2013 4:06 PM Installation stat

  • Doubt in cloning

    Dear all, Our production database is in archive log mode and we will take RMAN backup daily and cold backup weekly. After taking cold backup and creating a new instance with cold backup using rapid clone, the new instance doesnot have archive log mod

  • Exporting from Entourage to Address Book and iCal

    Dear All, I have a corrupt Entourage database which is making syncing to my iPhone through the Apple apps impossible. as such and with a huge leap of faith to mobileme I'm ditching Entourage. Anybody got any easy ways to export the contacts from Ento

  • Convert pages to pdf - Contents Page

    Hi Everyone, I have just been using the discussion threads to add a contents page to my pages document (Thanks! These were very helpful). When I am in pages, the contents page has page numbers that become links to those pages and I am able to quickly