Change maximum no of hit in report

Hi Guys,
Can any one help me to solve the following:
In KSB1 reprot the maximum number of hit by default is 5000.
It appear in KSB1 --> More Setting ---> Maximum Number of Hit
where can we set the default maximum number of hit so that every time I don't need to change it.
Thanks in advance.
Regards,
sp sahu

this table    RSEUMO stores that value
fieldname is TBMAXSEL , if there is maintenance for that table u can set it

Similar Messages

  • Change of maximum number of hit  in a report

    Hi Guys,
    Can any one help me to solve the following:
    In KSB1 reprot the maximum number of hit by default is 5000.
    It appear in KSB1 --> More Setting ---> Maximum Number of Hit
    where can we set the default maximum number of hit so that every time I don't need to change it.
    Thanks in advance.
    Regards,
    sp sahu

    Hi ,
    go to SE16 , enter table name RSEUMOD, enter ,
    select "TBMAXSEL" and execute, u will get a list of all users , against a username , there will be a field TBMAXSEL, click on the pencil icon on top of table, inside the table against the field TBMAXSEL , enter the desired number of hits and save
    Regards
    Mangesh
    Reward points if it helps

  • F4IF_INT_TABLE_VALUE_REQUEST with Maximum Number of Hits.

    Hi, all,
    Currently i'm doing a customized F4 help for a selection-option filed on a report by using the function module 'F4IF_INT_TABLE_VALUE_REQUEST'. When i execute my report and go to the selection-option filed just now i created and press F4, i can see a list of data in my search help. However when i go to the tab 'Restrictions', i can't see the 'Maximum No. of Hits' option.
    So anyone have any idea about this? or how to make the 'Maximum No. of Hits' box come out in my F4 help?
    Thanks in advance.

    My full code :-
    TABLES : BSIK , DDSHF4CTRL .
    DATA: BEGIN OF T_ZUONR OCCURS 0,
           ZUONR TYPE BSIK-ZUONR,
          END OF T_ZUONR.
    SELECTION-SCREEN : BEGIN OF BLOCK B1 WITH FRAME  TITLE TEXT-001.
    SELECT-OPTIONS   : ASGN_CK FOR BSIK-ZUONR.
    SELECTION-SCREEN : END OF BLOCK B1.
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR ASGN_CK-LOW.
      SELECT ZUONR FROM BSIK INTO TABLE T_ZUONR.
      SORT T_ZUONR BY ZUONR.
      DELETE ADJACENT DUPLICATES FROM T_ZUONR.
      CALL FUNCTION 'F4IF_INT_TABLE_VALUE_REQUEST'
        EXPORTING
          RETFIELD         = 'DYNR'
          DYNPPROG         = SY-REPID
          DYNPNR           = SY-DYNNR
          VALUE_ORG        = 'S'
          CALLBACK_PROGRAM = SY-REPID
          CALLBACK_FORM    = 'F4CALLBACK'
        TABLES
          VALUE_TAB        = T_ZUONR.
         RETURN_TAB       = T_ZUONR.
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR ASGN_CK-HIGH.
      SELECT ZUONR FROM BSIK INTO TABLE T_ZUONR.
      SORT T_ZUONR BY ZUONR.
      DELETE ADJACENT DUPLICATES FROM T_ZUONR.
      CALL FUNCTION 'F4IF_INT_TABLE_VALUE_REQUEST'
        EXPORTING
          RETFIELD         = 'DYNR'
          DYNPPROG         = SY-REPID
          DYNPNR           = SY-DYNNR
          VALUE_ORG        = 'S'
          CALLBACK_PROGRAM = SY-REPID
          CALLBACK_FORM    = 'F4CALLBACK'
        TABLES
          VALUE_TAB        = T_ZUONR.
         RETURN_TAB       = T_ZUONR.
      PERFORM F4CALLBACK.
    *&      Form  F4CALLBACK
          text
    -->  p1        text
    <--  p2        text
    FORM F4CALLBACK.
    *TABLES   RECORD_TAB  STRUCTURE SEAHLPRES
    *CHANGING SHLP        TYPE SHLP_DESCR
            CALLCONTROL LIKE DDSHF4CTRL.
      DATA :  SHLP        TYPE SHLP_DESCR,
              CALLCONTROL LIKE DDSHF4CTRL.
      SHLP-INTDESCR-DIALOGTYPE = 'C'.             " Dialog type ( Dialog with value restriction )
      CALLCONTROL-NO_MAXDISP   = '500'.           " For getting Maximum no of hits tab
    ENDFORM.                    " F4CALLBACK
    *But it is not working, Please help. There is some problem with the Perform F4CALLBACK Module. Please help.

  • Change Max no. of hits in search help

    Dear all,
    I want to change the max no hits to more then 1000 .
    please help to resolve this problem.
    Regards,
    Chintan

    Hi Chintan,
    Please refer the below threads,
    Search help: default value for 'Maximum no of hits'
    /message/3786486#3786486 [original link is broken]
    Best Regards.

  • Search help: default value for 'Maximum no of hits'

    Hello,
    I have a request from a user to change the default value for maximum number of hits in the search help.
    Any quick hint?
    Regards,
    Michal

    Not sure if this is possible and don't have a SAP system available at the moment ...
    But check this out...
    Is there anything in user profile ..
    or check if the number of hits field has a PARAMETER ID associated with it...
    Then in that case you might default a value other than 500 in your user profile.
    Cheers,
    Ram

  • How to increase maximum no. of hits in F4

    Hi Experts,
    I have a client requirement as to increase the maximum no. of hits in F4 search.
    Client wants it to become 5000 as default instead of 500.
    Would you please let me know if this is possible?
    And how to do this change in the system?
    Thank you.
    Chetan Barokar.

    Dear Friend,
    THERE IS NO ABAP DEVELOPMENT REQUIRED HERE.
    Your requirement can be fullfilled thru changing standard settings.
    Login to SAP. Click on Help (From Menu bar).
    Here go to the Settings option.
    Here select F4 Help Tab.
    Here you have option to set Max. number of Hits. The default SAP is 500 you can change it to 5000 or 9999.
    Hope this helps...
    Thanks,
    Jignesh Mehta

  • Maximum no.of Hits

    Hi,
    I have one parameter on my report as 'Maximum no.of Hits'.Can anyone help me to how to code for this logic.
    Thanks in advance,
    Sheetal

    Hi Sheetal,
    Please find the code for the same:
    Say after filling an internal table it_sales , say the max. no of hits enter by user is in pr_max.
    Sort Internal Table
      SORT it_sales.
      Restricting Values as per the Maximum Hits of Selection Screen.
      IF pr_max IS INITIAL .
        LOOP AT it_sales INTO wa_sales.
          APPEND wa_sales TO it_detail.
        ENDLOOP.
      ELSE.
        LOOP AT it_sales INTO wa_sales FROM 1 TO pr_max.
          APPEND wa_sales TO it_detail.
        ENDLOOP.
      ENDIF.
    and then dispay that internal table into the report.
    Let me know if u still have any problem in putting this logic.
    Cheers
    Sunny
    Rewrd points, if found helpful
    Message was edited by: Sunny

  • Maximum number of hits when searching in PA20

    Hi,
    when in PA20, I perform a search based on (for example) last name and I only enter a * as search criteria (in other words I perform a search on all employees), in our development system the maximum number of hits displayed is 5000.
    In our testsystem the maximum number of hits is not maximized.
    Does anyone know whether this is a general setting? If yes, which setting is this?
    If this is not a general settings, how is determined whether the hit list is maximied to a certain number of hits or not.....
    Wilfred.

    Hi
    You can change the Maximum No.Of Hits in the below manner.
    Go to your desired transaction .Here PA20 there select the menu Help where u can see in the screen top.
    From Help,select the last sub menu i.e Settings.
    You will get Tabstrips with 3 tabs.select the tab F4 Help.
    There u can find the option to change the "Maximum Number of Hits to be displayed"
    Regards,
    Sree

  • Can we change [maximum number of records per page] property at run time

    can we change [maximum number of records per page] property at run time in report 6i

    Ravi,
    I hope you are already done with this. In the invoice there is a nice example you can use on the xml blogs.
    You limit the number of lines per page when you use the xsl commands like this in your template:
    <xsl:variable name="lpp" select="number(13)"/>
    <?for-each@section:LIST_G_INVOICE?>
    <xsl:variable xdofo:ctx="incontext" name="invLines" select=".//G_LINES[LINE_TYPE='LINE']"/>
    <?for-each:$invLines?> <?if:(position()-1) mod $lpp=0?> <xsl:variable name="start" xdofo:ctx="incontext" select="position()"/>
    and then you have the table where you have the data
    <?for-each:$invLines?><?if:position()>=$start and position()<$start+$lpp?>
    and all your lines
    and then
    <?end if?><?end for-each?>

  • F4IF_INT_TABLE_VALUE_REQUEST- how to add Maximum No. of hits

    Hi Experts,
    I am using F4IF_INT_TABLE_VALUE_REQUEST. Can someone please help me. I am getting 2,100 hits I need to limit it to 500 hits. There is no Maximum number of hits when you click the Downward pointing arrow above the toolbar. How can I add the field for maximum number of hits just like in the standard F4 help function.
    Thanks!

    Dispay the source code of this function module in Se37.. you will notice that the following is commented out..
    CALLCONTROL-MAXRECORDS = 500.
    deleteing lines in your program is probably the only option..
    ie
    data w_lines type i.
    w_lines  = lines( itab ).
    delete itab from 201 to w_lines.
    ~Suresh

  • Changing the datasource of a Crystal Report to a Oracle DB using TNS

    I have a problem trying to change the datasource of a crystal report. In the new connection I want to connect to a Oracle DB using TNS.
    Without TNS it's finally working flawlessly with the following code:
         private static void switch_tables(DatabaseController databaseController) throws ReportSDKException {
              // Declare the new connection properties that report's datasource will be switched to.
              final String DBUSERNAME = "user";
              final String DBPASSWORD = "secret";
              final String SERVERNAME = "jdbc:oracle:thin:@1.1.1.1:mysid";
              final String URI = "!oracle.jdbc.OracleDriver!jdbc:oracle:thin:{userid}/{password}@1.1.1.1:mysid";
              final String DATABASE_NAME = "mysid";
              final String DATABASE_DLL = "crdb_jdbc.dll";
              final String SCHEMA_NAME = "SCHEMA.";
              // Obtain collection of tables from this database controller.
              Tables tables = databaseController.getDatabase().getTables();
              // Set the datasource for all main report tables.
              for (int i = 0; i < tables.size(); i++) {
                   ITable table = tables.getTable(i);
                   // Keep existing name and alias.
                   table.setName(table.getName());
                   table.setAlias(table.getAlias());
                   // Change properties that are different from the original datasource.
                   table.setQualifiedName(SCHEMA_NAME + table.getName());
                   // Change connection information properties.
                   IConnectionInfo connectionInfo = table.getConnectionInfo();
                   // Set new table connection property attributes.
                   PropertyBag propertyBag = new PropertyBag();
                   propertyBag.put("Trusted_Connection", "false");
                   propertyBag.put("Server Name", SERVERNAME); //Optional property.
                   propertyBag.put("Connection String", URI);
                   propertyBag.put("Database Name", DATABASE_NAME);
                   propertyBag.put("Server Type", "JDBC (JNDI)");
                   propertyBag.put("URI", URI);
                   propertyBag.put("Use JDBC", "true");
                   propertyBag.put("Database DLL", DATABASE_DLL);
                   connectionInfo.setAttributes(propertyBag);
                   // Set database username and password.
                   // NOTE: Even if these the username and password properties don't change when switching databases, the
                   // database password is not saved in the report and must be set at runtime if the database is secured.
                   connectionInfo.setUserName(DBUSERNAME);
                   connectionInfo.setPassword(DBPASSWORD);
                   connectionInfo.setKind(ConnectionInfoKind.SQL);
                   table.setConnectionInfo(connectionInfo);
                   // Update old table in the report with the new table.
                   databaseController.setTableLocation(table, tables.getTable(i));
    I just call this method with the DatabaseController from a ReportClientDocument instance.
    How do I need to change the connectionInfo to do the connection using TNS?

    Please re-post if this is still an issue but first update to CR4E 2 and retest

  • How to change drill filter values of all reports at the same time

    Hi,
    The Webintelligence users in our environment usuallly use drill filters in their document's reports. We'd like to find a way to change the drill filters' values of all reports when one value is selected. I mean, we need a work around to change the drill filters of all reports at the same time.
    We are using Business Objects XI 3.1 (a lot of webintelligence documents available, over than 2500).
    Does someone know a way to do that? I've already looked for that a lot, but I couldn't find anything.
    Thanks in advance,
    Gustavo Borges

    Hello Gustavo,
    as you refer to a Webi problem I recommend to post this query to the [BusinessObjects Web Intelligence|SAP BusinessObjects Web Intelligence; forum.
    This forum is dedicated to topics related to the creation and design of Web Intelligence documents using the Web Intelligence Report Panels. This includes areas such as universe connectivity, prompts, charting, formatting, filters, and formulas.
    It is monitored by qualified technicians and you will get a faster response there.
    Also, all Webi queries remain in one place and thus can be easily searched in one place.
    Best regards,
    Falk

  • How to change the connection for a recurring report

    I have a group of reports running in production on recurring schedules.  I need to update the database connection for these as we are changing our server environment.
    I open the report in Crystal Reports 11 and changed the database connection saved the report back to the Enterprise Server location (I also have a backup of the original).  When I preview the report using the Central Management Console, the report uses the updated database connection info.  When I test the recurring report I get a logon failure.  When I go to the instance to look at the database logon for the recurring instance it shows the old database connection.
    How can this database connection get updated for the current group of instances for these recurring reports?
    Thanks
    BOBJCMC

    Hi Stratos,
    I tried to use .NET SDK to update the Logon_Info properties as below. But it does not seem to be working. Is this the correct way to update logon info for recurring instances?
    infoObject.ProcessingInfo.Properties["SI_LOGON_INFO"].Properties["SI_LOGON1"].Properties["SI_USER"].Value  = <userid>
    infoObject.ProcessingInfo.Properties["SI_LOGON_INFO"].Properties["SI_LOGON1"].Properties["SI_PASSWORD"].Value  = "pwd"
    Thanks
    Ajith

  • How to add a "Maximum no. of hits" - field in SQ01 query?

    Hi all,
    Is it generally possible to add the field "maximum no. of hits" to a query / quickview in transaction SQ01? And if yes, how?
    I have created a test query but I cannot find any solution. I don't mean the popup asking for database accesses which occurs when trying to test this query. I really want to have it as selection criteria.
    My system is a R/3 Enterprise 4.7 Ext. Set 2.00.
    Thanks in advance!
    Michael

    Well,
    You're talking about COLLECTIVE search help. You won't definie Max No of hit at this level.
    Define an elementary search help and assign to this one a dialog mode (retriction or set of values).
    Regards,
    Bertrand
    PS : Don't forget reward points

  • Changed reconciliation account in vendor master - Report FAGLF101

    Hi
    When a Recon account is changed in the Vendor Master, a report has to be run to post the adjustment entries using T-Code FAGLF101.
    The query is that, the report posts the adjustment entries through an adjustment account but at the same time also reverses the effect on the first day of the next month.
    Is there a way to stop this reversal. Though I do not select the reversal posting date, system is reversing the entry.
    Further, why is the Recon account not posted to rectify the entries?
    Regards
    Abhishek Kumar

    Hi
    For changing the reconciliation account in Vendor Master and customer master, please follow the following steps.
    1. First change the reconaccount in the customer / vendor master
    2. run the program SAPF101 for adjusting balances of old recon account to the new recon account.
    Problem will be solved.
    I hope it will  clarify your doubts.
    Regards
    Madhav

Maybe you are looking for

  • Oracle 11g takes way too long to start

    I find that Oracle 11g 11.1 takes much longer to start than Oracle 10g or 9g. I am on HP UNIX 11i server, Have others observed similar issue. Are they any init.ora parameters to speed up startup. Thanks.

  • Making Custom Idoc Script function

    Hi all, I am making a custom Idoc Script function. I have merged the resource table into the core IdocScriptExtensions table. But i am not able to call the custom function in SiteStudio. Find below the steps that i have taken step1) I have added a re

  • What dimensions should I use for flash playback?

    I have an AVI file that I converted to a SWF file using a converter by IMTOO software. I thought the control bar was black, but I think now its just missing completely. I looked at forums, and they suggested making the dimensions larger when I embed

  • Separate 2 Channels in SoundInputRead.vi

    Hi , I would like to distinguish between 2 Channels that I am reading out from the SoundInputReadvi. I can see that both are read but when I draw them using a graph, it seems that they are interpolated between each other. The index in the picture sho

  • HT5312 How can. Reset my apple security questions when trying to answer them

    W does it not give me a option to reset my security questions in the iTunes Store before purchasing a app