Reduce max. results in SRM F4-search

Dear SRM gurus,
in SRM 5.0 in tab "Cost assignment". Is there a possibility to set a value for the max. results in F4 help "Find Account Assignment Data" and in "G/L Account"
By standard it is set to 500. Because we're facing performance issues is there a possibility to reduce it to a maximum of 200 results?
Thanks for your help in advance.
Kind regards,
Henning

Hi Hennig,
I feel for this case you need to make template change as value of 500 is populated into Web template.
Just right click on SRM webtemplete and do a view source and this will open code in notepad and make changes where you are getting this search help and look for "Maximum No. of Hits" . You will get this value over there...
Ask someone technical in team to make changes in template and again publish the files..
It will solve your issue.
Regards,Nishant

Similar Messages

  • Max results returned by a search

    Hi there,
    I have been struggling in the Content DB Api to find out about the max results returned when performing a search.
    Let's say for instance, I am doing a search on attribute NAME = * on a library that potentially contains more than 100 000 documents. I don't mind if the operation is time consuming or not, my main concern is the actual limit. I suppose this is certainly related
    to the SOAP message limit. Does anyone know about this ?
    I forgot to mention that the search won't request any attribute but only the defaults (id, name, type and so forth ...).
    Cheers,

    Hi
    i came across the below reply for a thread with the similar query as above.
    <<
    Justin Cave
    Posts: 10,696
    From: Michigan, USA
    Registered: 10/11/99
    Re: sort data in ref cursor
    Posted: Feb 3, 2005 10:30 AM in response to: [email protected] Reply
    No. You could sort the data in the SQL statement from which the REF CURSOR was created, but once you have a REF CURSOR, you cannot do anything but fetch from it.
    Justin
    Distributed Database Consulting, Inc.
    http://www.ddbcinc.com/askDDBC
    >>
    So, the results from a ref cursor cant be sorted?? There is no way out?
    Kindly advise.

  • RoboHelp HTML 9 Search Pane Max results controls

    RoboHelp HTML 9 with WebHelp as output...
    I have a two part question. By default when our users do a search in compile dhelp, they see 10 search results per page. Is there a place in my RoboHelp interface where I can change that to larger number? I have found a line of code in a *.js file where it looks like I could manually change it, but would prefer not to have to do it that route in case that causes unintended hiccups elsewhere.
    var nMaxResult = 10 ; 
    Second part of my question is related to statement in release notes/new features notes for RoboHelp 9 that state users can control the max search results per page on-the-fly as they use the Search pane. This feature only applies to WebHelp or WebHelp Pro and my output is WebHelp. I can see a line of code for that feature in the whfform.htm file but nothing shows up like that in the Search pane within compiled help. Is this a bug or is there a control somewhere in RoboHelp project settings that allows me to enable that option for users? The last 2 lines below would seem to control this area. The Search pane items referenced in first 4 lines do show up ok in my Search pane.
    gsTitle = "Type in the word(s) to search for:";
    gsTitle = "Type in the word(s) to search for:";
    gsHiliteSearchTitle = "Highlight search results";
    gsHiliteSearchTitle = "Highlight search results";
    gsMaxSearchTitle = "Search results per page" ;
    gsMaxSearchTitle = "Search results per page";
    Thanks for any insight you can provide,
    KF

    I know this is an old topic, but I was trying to figure this out myself today and finally found it. In case others have been looking for this, it's in in this file:
    whform.js
    find this variable:
    var gnMaxRslt = 10;
    and then change the 10 to the number you want.
    If you do that in the generated help, the number will change in the Search pane, but it will still display only 10 results. To get it to actually display more than 10 results, I had to edit the RoboHelp file, not the generated help. I made a copy of C:\Program Files (x86)\Adobe\Adobe RoboHelp 10\RoboHTML\WebHelp5Ext\template_stock\whform.js before I edited it. (Right-click the file, click Copy, then right-click in the folder and click Paste. Edit the one that doesn't say Copy in the filename. Then if you want to back it out, delete the one you edited and remove Copy from the original.) If you have your project open in RoboHelp, close it, then reopen it so it can "grab" the new info.
    This ought to be in the WebHelp Setting dialog box on the Search pane.
    --Karla--

  • How to reduce max buffer/cache size?

    Hi,
    every time I copy a file which is bigger or similiar in size to my total RAM (4gb) I notice very low responsibility from firefox (which is totally unresponsive, can't switch tabs or scroll for 30-60s). Of course my free memory is very low (something like 50-100mb) and I notice some swap usage. AFAIK linux caches everthing that is being copied, but in case of such big files it seems unnecessary.
    Is there a way to reduce max buffer size?
    I know that buffering is good in general, but I get a feeling that firefox is giving up ram and he has to read everything again from disk which slows him down. I always have many tabs open, so often it has around 30% of memory.
    I searched many times on how to reduce buffer sizes, but I've always found only articles with "buffering is always good and never an issue" attitude.
    I would be very happy to hear any suggestrions,
    cheers,
    kajman

    This seems a popular problem, going back years. The default Linux setup is bad for responsiveness, it seems.
    Here's the summary of what I do:
    Firstly, install a BFS-patched kernel, for a better kernel scheduler, and also so that the ionice and schedtool commands will work. Bonus points for switching to BFQ while you're at it - or stick with CFQ, which also supports ionice.
    In /etc/fstab, use commit=60 rather than default of 5 seconds, and also noatime, e.g.:
    UUID=73d55f23-fb9d-4a36-bb25-blahblah / ext4 defaults,noatime,nobarrier,commit=60 1 1
    In /etc/sysctl.conf
    # From http://rudd-o.com/en/linux-and-free-software/tales-from-responsivenessland-why-linux-feels-slow-and-how-to-fix-that
    vm.swappiness=0
    # https://lwn.net/Articles/572921/
    vm.dirty_background_bytes=16777216
    vm.dirty_bytes=50331648
    In ~/.bashrc - see post, e.g.:
    alias verynice="ionice -c3 nice -n 15"
    In /etc/security/limits.d/ - see post. Read CK's excellent blog article, for info.
    In your cp command, add the word verynice to the start, to stop the large batch copy from having the same priority as your UI.
    Compile sqlite without fsync, to make e.g. firefox smoother.
    Potentially use threadirqs to prioritize the interrupt-handling.
    Edit: Updated vm.swappiness from 0 to 10, from CK's blog.
    Edit2: Also see patch and e.g. nr_requests in thread.
    Edit3: Using nice instead of schedtool - not sure whether schedtool can hog the CPU.
    Edit4: Added threadirqs.
    Edit5: Tweaked sysctl.conf settings.
    Edit6: Added nobarrier option to mount, and sqlite's fsync.
    Edit7: Removed swap comment - I do use a swapfile, these days, mainly because firefox needs so much virtual RAM to compile.
    Last edited by brebs (2014-03-10 09:51:34)

  • How to get the full result of a google search?

    How to get the full results of a google search?
    Nov 23, 2006 2:28 AM
    Hi, Friends,
    I want to build a URL collector as a seamless and integrated part of my desktop application in java language which can access the full search results of google, but i am not sure the right way? what is the best way to do that in java?
    Where to find the relevant materials for the problem?
    thanks a lot

    Cross post - http://forum.java.sun.com/thread.jspa?threadID=788627&messageID=4481369#4481369

  • Is there a way to have the calender results in a global search on an iPhone to appear in reverse cronological order?

    Is there a way to have the calender results in a global search on an iPhone to appear in reverse cronological order?

    I guess not... (at least not on 5.x!!). I would just like the calendar search to return results in chronological order of any sort. With iCloud calendars and OS 5.1.1 it lists all the results (by date order) for one calendar, and then does all the results for the other one, which is a bit tiresome. Strangely it all works fine with Google calendars... But maybe I will just use spotlight search to get round this problem for now.

  • Returning Different Results for the  Same Search Value

    I'm creating a word list and I'm using Lookup to find text entries in column D and return values from column A. I can manage one result based on the search criteria however I'm wondering if it's possible to return multiple entries from column A if multiple matches are found in column D:
    As you can see I'm trying to use the formula =LOOKUP("Aggression",D,A) to find all the instances of "Aggression" in column D and return all the corresponding results from column A (audacious, barefaced, and depredation). Lookup however only returns the last match (depredation).

    I wish you'd shown where your LOOKUP function is located and what you're trying to do with it. Are you going to be using these results in another function? Or are you simply wanting to display the results of your search?
    If the latter, there's an elegant way to make this happen. Let's create a single-cell table on the same page, holding the word you're searching for. (Ideally, this could be a drop-down list -- and that can be made to dynamicly hold all the discrete values in column D -- but that's another discussion.) Let's call this table "Search".
    Add a column (which can be hidden) to your original table. Let's insert this next to your column D, making it column E. Cell E2 contains =IF($D2=Search :: $A$1,TRUE,FALSE). Drag/copy that down the column. You'll now have a value of TRUE in this column for all the words you're looking for. Now click on the top of this column E and click "Show More Options".... and click on "Show rows that match the following". Set it to show where Column E is true. You now show only the words in which the "category" matches the search word.
    Change the word in your Search table, and the display of your original table automatically adjusts.
    The nice part is that the entire line is displayed so you can see definitions and contexts as well.
    Vince

  • Limiting the search results in MSA/BP-Search

    Hello;
    We are trying to limit the search results in MSA/BP-Search. We want to limit the number of BP's listed but do not know what code to write in MAS. May you please help us?
    Best Regards,
    Erkan Kaya
    SAP CRM Consultant

    Hi,
    What is your ATG version?
    Regards,
    Jai

  • Is it possible to have multiple search results page using one Search Enterprise Center site?

    Hi,
    We're using SharePoint 2013 and I'm trying to modify the search results page for one site collection. By default, it uses the search results page from the parent site which is the search center being used by default for the web application. I need to make
    sure that the site collection will only retrieve search results within the site collection (search everything has to be disabled). I found a way but I had to create another search center site to accomplish this, otherwise, it will affect the search center
    site of all other site collections on the web app.
    Now is it possible to have multiple search results page using one Search Enterprise Center site?

    Hi,
    According to your description, you want to retrieve the search results within the site collection.
    As a workaround, you can create a custom result source for the site collection and you will retrieve the search result within the site collection.
    More information about how to create result source in SharePoint 2013, please refer to :
    http://technet.microsoft.com/en-us/library/jj683115(v=office.15).aspx
    http://techmikael.blogspot.com/2013/04/limiting-search-results-in-sharepoint.html
    Best regards

  • When at the "results" page of a search, clicking on "blue" link does not display webpage. Copying "green" urldoes.

    When at the "results" page of a search, clicking on "blue" link does not display webpage although url is shown in address bar. Copying "green" url, shown at bottom of a result, into address bar and hitting "enter" goes to the address and displays the page. Have tried different selections at tools/options with no change. Is there some other setting that needs to be changed?

    Sorry, this is bad reply. I wanted to write this reply to another question.

  • Avoid duplicate results after a Catalog search

    Hello,
    I tried implementing note  Note 811194 - Avoid duplicate results after a Catalog search - but unfortunately, the code in my version of WebCatItemList is quite different. Is there another note for newer versions of eCommerce? Or is code modification necessary at all?
    Many thanks!

    Hi
    When a product is listed in multiple catalog categories, the product appears multiple times in the search results.
    This is standard
    Please be aware that the note mentioned is a consulting note, as this behavior is standard.
    The suggested changes in the note for ISA 5.0
    Alternatively the relevant .jsp could be modified to also display the product's area information next to the product, so that the customer can see that the product originates from different catalog areas.
    Kind regards.
    Peter

  • IGroup.getMembers max Result = 1500?

    Hello,
    I have a group from LDAP, with 1700 users in it. When using the Code
    IGroupFactory gf2 = UMFactory.getGroupFactory();
    IGroup grp2 = gf2.getGroup(GroupName);
    Iterator gi2 = null;
    gi2 = grp2.getMembers(false);
    the Iterator contains only 1500 Members. The users are all in this Group, so "getMembers(true)" doesn't make any difference. I know, I can set the maximum result, when using a search filter, but I couldn't find anything about a limitation for getMembers.
    Has anyone an idea?
    Best regards,
    Christian Schebesta

    Hi,
    I just lost a few hours on that same problem and found two places where this limit can be coming from:
    1) UME Configuration:
    In this [help file |http://help.sap.com/saphelp_nw04s/helpdata/en/91/646d498fd94142a37e90a3b848e45e/content.htm]check the UME property ume.admin.search_maxhits.
    This property can be edited from the J2EE Visual Administrator, or from the Portal, in
    System Admin --> System Config --> UME Config --> select User admin UI tab, then
    under Search results and display tables, change the maximum number of search results and restart the server
    2) AD Configuration:
    In this AD [help file |http://support.microsoft.com/kb/315071]we can read the following:
    MaxPageSize - This value controls the maximum number of objects that are returned in a single search result, independent of how large each returned object is. To perform a search where the result might exceed this number of objects, the client must specify the paged search control. This is to group the returned results in groups that are no larger than the MaxPageSize value. To summarize, MaxPageSize controls the number of objects that are returned in a single search result.
    Hope this helps.
    Martin

  • RoboHelp HTML Version 10, Why has my CHM search stopped working? I get "no results found" for all searches.

    RoboHelp HTML Version 10,
    Why has my CHM search stopped working? I get "no results found" for all searches...........rob

    Likely you need to re-register some DLLs and recompile.
    Click the link below and follow the information you find there.
    Click here
    Cheers... Rick

  • Max results for facility search 500. Is there a setting

    Is there a setting to increase the result set size of Facilities in a result set? We have users searching for Facilities and it gives a message saying the 500 record maximum has been hit with no option to open another page or see all the results.
    i didn't see any config for this in the E17153_01 document.
    Thanks,
    David

    ah, I understand now. I thought you were saying no records were returned and you ONLY got a message saying '500 search results has been exceeded.'
    Returning a maximum of 500 records is as designed and not configurable for performance reasons. Typically, we recommend adding criteria to limit your result set. If there is a valid business use case for displaying > 500 records, then I suggest submitting an enhancement request.
    thanks,
    -M

  • Adding Standard field in SC POWL result in SRM 7.0

    Hello Experts,
    We have Upgraded the system from SRM 4.0 to 7.0. Here, we have a requirement  to add a standard field(BE_OBJECT_ID = PO Number) to the SC POWL result list. I know to procedure to do for Custom fields.
    Could any one of you help me in this.
    Thanks in Advance,
    Vishnu Reddy

    Hi! To add columns to POWL result, you can accesthe path below in SPRO:
    SAP SRM
    -> SRM server
      -> Cross-Application Basic Settings
       -> POWL and Advanced Search
        -> Adjust POWL Layout, Search Criteria and Pushbuttons
    After this, select the POWL (Feeder Type). For SC, you can use SAPSRM_FEEDER_SC, for example.
    Then click on Field Catalog (right menu). Set a value in the Position column for the field you need to add.
    I hope this helps.
    Best regards,
    Christian Zeuch

Maybe you are looking for

  • Portal runtime error while accessing BI Report as URL iView

    Hi All, I created an URL Iview with the URL of BI report, when i am trying to access it then getting portal runtime error. I had check the log it is showing the following details about the error, could you please help me out what is the root cause ba

  • I would like to change my  iPhoto resoluttion on Mac. The pictures are too big for emailing and chaning my Facebook profile picture.

    I would like to change my iPhoto to a smaller resolution on my Mac desktop. The  pictures need to be smaller to email. As is, I can only get 5 pictures per page on AOL. Also, I'm not able to change my Facebook profile picture for the same reason. I d

  • RSTT with Webi query is not working

    Hi, Guru; I want to use RSTT to trace MDX by running Webi query. My Webi is built on universe and connect to BI7.0 query with user 'BOXIUSER'. Now my issue is I activated 'BOXIUSER' in RSTT and whenever I ran the Webi, there is no trace id created in

  • F4 help error in the upgraded version

    hi all, we have upgraded from 5 ECC to 6 ECC. testing phase is on. we have encountered a typical error while testing T-Code RECOPLCST02. here the cost element field is behaving strange. when i press F4 on this field then the pop up appears and the va

  • SOLMAN_SETUP - managed system configuration

    I am attempting to use the SOLMAN_SETUP transaction to establish the managed system connections to my ABAP ECC systems.  I enter the required user/password info and execute it.  I get one error message in the log that says "Cannot get fully qualified