Max number of Hits Account Identification

Hi all,
we are currently having the problem in IC that when somebody try to identify an account of an BP with more that 100 related sold to parties, that no account is displayed because of the standard max number of hits 100.
I have found the path to customize this in the SPRO but this sentence in the SAP help is making me some headache:
The higher the number you enter here, the more results the system will search for, and in turn, the more performance is affected. The maximum number of hits that the system allows is 100, which is also the default value.
I understand the point of the performance, but does this mean that the performance is also affected the account identification of the other BP with less than 100 related sold to parties?
Can anybody help in this issue?
We are working on CRM 5.0.
Regards
Abosi
Edited by: Abosi_3li2 on Feb 8, 2012 11:08 AM

Hello
The bug of nothing displayed if over 100 accounts are found is solved with [SAP note 1467929|https://service.sap.com/sap/support/notes/1467929.]
The code you are referring to is:
IF bpident_profile-max_hits IS INITIAL.
max_hits = 100.
ELSE.
max_hits = bpident_profile-max_hits.
ENDIF.
It means that, if blank, 100 hits is considered. You can modify the customizing up to 255 results since that is the limit of accounts to be found.
Regards
Joaquin

Similar Messages

  • SE16 restricted to a pre-defined max number of hits

    Hello,
    our consultants use sometime Tcode SE16 for end-users support purposes.
    I would like to restrict the output of SE16 on any tables to a predefined maximum number of hits (5000 or 10000 for examples) to avoid huge selections with bad performance on the server.
    Do you know any way to restrict it with a standard or custom tool ?
    Thank's

    Hello Vincent
    The global setting of this property can be found at: menu Help -> Settings -> choose tabstrip "F4 Help"
    There you can define the max. number of hits to be displayed. This setting is valid for all DB selections. The users have to set this property on their own.
    NOTE: The menu Help is found on any screen.
    Regards
      Uwe

  • When i try to sign in icloud with different id it says max number of free accounts reached for this device what shall i do

    PLease help me.....i wanna sign in icloud with different account but it says max number of free acconts reached

    Somehow your Apple ID/iCloud account has been used on multiple iOS devices and exceeded the maximum. We have no way of knowing which devices. We are users like you on this forum.

  • How to set Max. no. of hits when i display data

    Dear Experts,
    when i display data in ODS/Infocube, i hope display data of  the default value is 1000,how to set Maximum number of returned records.
    in SE11, i have goto utilities>settings>repository infosystem-->maximum No. of Hits  1000
    but still no any effect, how should i do it?
    Many Thanks
    Best Regards
    Stevezhuang

    Steve,
    If I'm not wrong you are talking about the number of hits while displaying the table content right, if yes that's what i was discussing.
    goto se11 -->enter the table name --> click on display --> click on contents -->it will take you to table selection screen there in that screen you will find the below options,
    in the menu bar -->settings --> user parameters --> change the max no of hits :1000 and click OK.
    You can set the desired max number of hits- that's wht i was talking about.
    Regards
    prashanth

  • Max, count of hits in search help

    Hi all,
    per default the maximum count of hits in a search help is 500. I know one can change that directly in the WD4A application, on the search help popup at settings. But is it possible to set this count to another value directly in SAP, system wide, for every user?
    Kind regards, Matthias

    You are correct that it appears that you can't change all of the system-wide defaults.  You can change the  Maximum Width and the Display type but not the max. number of hits to be displayed. 
    I did some digging and this value appears to be controlled by a constant c_maxrecords in the class CL_F4CUSTOM.  I tried changing this value after it is set in the CLASS_CONSTRUCTOR using the debugger.  It actually is possible, but only up to a value of 999.  If you go larger, you get a field overflow on the screen display field - so I assume the designer of this functionality never really intended for customers to change the value of this constant.

  • ICloud - maximum number of free accounts on device

    Hi,
    I've just purchased a 2nd hand iPod touch but when I try and create an iCloud account I get "Max number of free accounts has been activated on this iPod".
    Is there anything I can do so that I can get onto iCloud?
    Thanks,
    Kevin

    See this previous discussion:
    https://discussions.apple.com/message/17387243#17387243

  • Maximum number of hits in Document overview (ME21N/ME22N/ME23N)

    This number is defaulted to 5000. The help text states that it is the maximum number of hits that are to be displayed.
    In my opinion this relates to the result.
    In reality I notice that it relates to the first selection in the database.
    For example.
    All purchase order for a given vendor (+9000 PO-items in the database, 110 without history).
    Selection of PO's without goods receipts.
    Using the the default value of 5000, the program gives the message "No suitable documents found"
    After clearing the max. number of hits, the correct selection is made.
    Suppose I would like to see the 10 oldest open PO's, this would not be possible.
    Is my assumption correct ?

    Hi,
    I think there´s something not working correctly in your search, as the 5000 refers to the maximum number of hits that will be shown. I would recommend to open a ticket at SAP.
    Best Regards,
    Arminda Jack

  • How to get Account identification number in a ZVIEW ( Empty View )

    Hi  ,
    I created a  ZVIEW in  component ICCMP_BT_IRHIST from an existing standard view in this component im navigating to ZVIEW. In the Zview i want to get the account identification number.In the ZVIEW
    I am writing this part of code
    <%
    data: lv_account_name type string,
            lr_entity       type ref to cl_crm_bol_entity,
            lr_cuco         type ref to  CL_CRMCMP_B_CUCOBUPA_IMPL,
            lv_account_id   type string,
            lv_account_type type string.
      TRY .
            lr_cuco  ?= controller->get_custom_controller( 'CRMCMP_BPIDENT/CuCoBuPa' ).
        CATCH cx_sy_move_cast_error.
          RETURN.
      ENDTRY.
      check lr_cuco is bound.
      lr_entity ?= lr_cuco->typed_context->SEARCHCUSTOMER->collection_wrapper->get_current( ).
      check lr_entity is bound.
      lv_account_name = lr_entity->get_property_as_string( iv_attr_name = 'BP_NUMBER' ).
    %>
    eventhough lr_cuco is bound lr_entity is not getting populated.
    as a result im not able to get the account identification number in the ZVIEW.
    Any suggestions on this ...................
    Regards,
    Sijo.......
    Edited by: sijokjohn85 on May 7, 2009 3:12 PM

    HI,
    I have a similar kind of Issue and would like to k now How you resolved the issue.
    I have two standard components, I am trying to read the custom controller of Component-1 in component-2.
    The Object is bound but the value is empty, Similar to what you experienced.
    Any tips will be really helpful.
    Cheers..

  • Account Hierarchy / Max number of levels

    Hello to the community,
    I would like to know what is the max number of levels in an account hierachy ?
    Thanks for your help.

    Hello,
    you can use up to 30 levels in the hierarchy.
    That's really enough, your accountants have already lost the overview after 10 levels:-)
    Ciao,
    David

  • Max number of account

    Hi,
    I'm working with Oracle BI Administration Tool 11.1.1.6.1, where I have imported metadata of an Essbase cube with more than 8.000 account (measures).
    Is there a max number of account I can load from an Essbase cube?
    Is there a way to count the account in the Physical Layer (after I have imported metadata) smarter than counting manually?
    Thank for your help,
    MAB (Italy)

    Hi,
    I do not think there is any restriction on the number of measures and YES, counting them manually is a huge task.How about generating a .xml of that .rpd and counting the number of physical object tags in that .xml using some editor like notepad++ ;) .
    Hope this helps
    Thank you,
    Dhar

  • How to get Account Identification Number  from a different component

    Hi,
    My requirement is
    I have created a  zview in component  ICCMP_BT_IRHIST.
    I am navigating from one view in ICCMP_BT_IRHIST to this zview.
    I want to get the account identification number in this zview.
    The account identification (attribute is present in this component CRMCMP_BPIDENT.
    For getting the account identfication number
    i m writing this code in the layout of the zview
    TRY .
            lr_cuco  ?= controller->get_custom_controller( 'CRMCMP_BPIDENT/CuCoBuPa' ).
        CATCH cx_sy_move_cast_error.
          RETURN.
      ENDTRY.
      check lr_cuco is bound.
      lr_entity ?= lr_cuco->typed_context->SEARCHCUSTOMER->collection_wrapper->get_current( ).
      check lr_entity is bound.
      lv_account_name = lr_entity->get_property_as_string( iv_attr_name = 'BP_NUMBER' ).
    But im not able to get the account identification number  the problems are
    lr_entity is initial ...where as   lr_cuco is bound only....to this view....
    waiting for suggestions....
    Regards,
    Sijo....

    Hi ,
    In the IC Agent Role there is predefined Global Context Node, You can use the Following
      DATA: lr_gdc       TYPE REF TO if_crm_ui_data_context.
      lr_gdc     = cl_crm_ui_data_context_srv=>get_instance( me ).
      lr_entity = lr_gdc->get_entity( name = if_iccmp_global_data_cont_con=>gdc_currentcustomer ).
    Based upon ur Rrequirement you can use
    GDC_CURRENTBT
    GDC_CURRENTCASE
    GDC_CURRENTCONTACT
    GDC_CURRENTCUSTOMER
    GDC_CURRENTINBOXITEM
    GDC_CURRENTIREC
    GDC_CURRENTCONTEXT
    GDC_CURRENTIBASE
    GDC_CURRENTIOBJECT
    GDC_CURRENTSERVICETICKET
    Parameters in the  if_iccmp_global_data_cont_con
    Regards
    Vikranth

  • HT204053 Max number of devices on one iTunes account?

    Max number of Devices on a single iTunes account

    Devices or Computers? The former there is no limit. For the latter there is a limit of 5.

  • HT204053 Hello l bought second hand iphone 4 and l cant Log in lclood because System says that l reach max number of free Apple accounts so how can l erase old accounts that l dont know ???

    Where l have to write msg or do to solve my ıd problem l want to use l cloud but there are multiple accounts on my ıphone from old user l need to erase old accounts to use mine pls help me

    You can't erase or delete iCloud accounts, you can only stop using them.  If the previous owner already created the maximum number of iCloud accounts on your phone, all you can do is either re-use one of the accounts previously created, or create a new account to use on another iOS device or Mac (running OS X 10.7.2 or later), if you have one.

  • HT5622 "The maximum number of free accounts have been activated on this iphone" message is received when I try to set up iCloud.  How can I overcome this problem please?

    I tried to set up icloud on my iphone 4 and I get this message that "the maximum number of free accounts have  been activated on this iphone".  My iphone was used by someone else before I got it.  How do I deactivate these accounts or overcome this problem?

    You were trying to create a new Apple ID for icloud.  But once the device reaches is max allowed to create IDs then you can't create more.  That's your situation now.  To create a new account you must use another device or computer.
    You can't deactivate or turn back the clock.

  • Max number of items exceeded?

    I am trying to develop a questionaire like application. Most of the logic is stored inside pl/sql functions (that is retrieving the previous or next question with possible answers and answer-types, like, eg. radiogroup, select-list, textarea, ...) while all of the questions and respective possible answers are kept inside a collection. In processing the answers after submit I store given answers inside the same collection, basically by nullifying all possibly previously given answers for the current question and then looping through eg, g_f01.count to refill. The entire application remains on the same page, showing eg., in one 'frame', one or two questions with say 7 checkboxes and two textareas.
    Everything seems to work fine, I can go forward and backward and will find new questions or ones that already have been answerd, but!!...
    after the 50st item (answer), that is after I reached the 50st radiogroup, checkbox or textarea, new checkboxes or radiogroups even though shown the resulting values will not be stored inside the collection anymore.
    generating the page i use:
    htp.prn(apex_item.radiogroup(p_idx => 1, p_value => c2.a_id, p_selected_value => c2.qa_id, p_attributes => 'id="P2_QUEST_' || i || '"'));
    and in processing correspondingly ...
    FOR i IN 1 .. apex_application.g_f01.COUNT
    LOOP
    FOR c2 IN
    (SELECT seq_id,
    c001 q_id,
    c002 a_id,
    c012 qa_id
    FROM apex_collections
    WHERE c001 = to_char(p_q_id)
    AND collection_name = 'ANSWERS'
    AND c002 = apex_application.g_f01(i))
    LOOP
    apex_collection.update_member_attribute(p_collection_name =>
    'ANSWERS', p_seq => c2.seq_id, p_attr_number => '12',
    p_attr_value => c2.a_id);
    END LOOP;
    END LOOP;
    to me I only use f01 ... f04 say, ... Is it possible that I still hit the max of 50 page-items?
    Regards
    j.

    max number of items exceeded?

Maybe you are looking for

  • Find the page name with page sid?

    Because my top_page is dislpaying the page id instead of the name of the page and the output of the id is something like this page_id = 2,11,6_23 Had any idea on where to find the page name? Thank you very much for the help

  • How do you add video effects-slow motion

    Not real happy with 08 over previous versions but I would like to gain back some of the functionality that I regularly used. How do I add special effects, such as slow motion to a video clip or a portion of a video clip.

  • Apache - Weblogic plug-in - Segmentation fault. Please Help me!

    Hi all, Im trying to set up Apache weblogic plug-in, and im having problems with that. Im running Solaris 9 with Apache/1.3.26 (Unix) and Weblogic 7 with sp2. Here is what i did: I copied mod_wl_ssl.so from /bea/weblogic700/server/lib/solaris/mod_wl_

  • Latex-suite: disable smart key mappings (e.g. ... - \ldots)

    I've recently started using LaTeX. Since vim/Gvim is my absolutely favorite text editor, it's plugin latex-suite comes in handy with features such as text folding. Latex-suite also has some auto-completion/conversion features; unfortunately I don't l

  • Can I watch Dish Network using Touchsmart 3.0 and an external USB TV tuner?

    I just bought a Touchsmart 300-1003 (got a great deal), and it hasn't arrived yet.  It has no internal TV tuner, and I would like to use it as "TV #2" for my Dish Network (analog signal via coax from Dish receiver located in other room). I'm wonderin