Increase the resultset count in SSXA application

Hi,
I'm using UCM 11g + Site Studio, I'm coding in JSTL for my web application. I am calling many services like GET_SEARCH_RESULT etc. All these services are returning a resultset of 20 values.
I have changed the setting by clicking the weblogic user in UCM product to 50, then it was showing 50 results in UCM for only 'weblogic' user but it doesn't work for all users. Also, it doesn't work for my SSXA site.
Is there any pointer to set the resultset with more than 20 values?
Yes, we can set a parameter in each of the service call but I am looking for permanent solution for my existing application.
Thanks in advance,
MAK

thanks buddy,
I got a definition of MaxResult in bex huff's book, which states:
MaxResults: Maximum number of results that are returned for a Verity search. The search results page will never show more than this number. The default is 200, and you should use caution when increasing this number.....
But I was getting 20 results in the result count for GET_SEARCH_RESULT, which was my concern. Now I have set a service parameter "ResultCount" as "50". This is giving 50 results at a time.
One more thing, custom service is not bounded with restriction of 20 results.
Thanks,
MAK

Similar Messages

  • How to increase the thread count for JDBC adapter

    Hi ALL,
                Could someone advice me on how to increase the thread count for JDBC Adapter in Visual Admin:
    JDBC_http://sap.com/xi/XI/System.Call.maxConsumers 5
    JDBC_http://sap.com/xi/XI/System.Recv.maxConsumers 5
    JDBC_http://sap.com/xi/XI/System.Rqst.maxConsumers 5
    JDBC_http://sap.com/xi/XI/System.Send.maxConsumers 5
    I need to increase them to 10.
    Regards,
    Xier

    hi check the below links:
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/806e75a0-0e01-0010-2587-fc518de8ac1a
    admin manual:
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/fdb09490-0201-0010-e09e-a76388646ad0
    note:reward points if solution found helpfull.....
    regards
    chandrakanth.k

  • How can I increase the pixel count (tolerance) that will invoke sizing handles to make them easier to select and use?

    When working with Word tables, re sizing a column's width requires placing the mouse exactly on the line, waiting for the mouse pointer to change to the sizing control, and then you click and drag.  The problem is that the tolerance is so unforgiving
    (a few pixels one way or the other) that is rather difficult to get and keep the mouse in exactly the right spot to invoke the sizing handle.  Because the tolerance is so narrow, by the time you click to drag, the handle control often reverts to a regular
    mouse pointer because you moved the mouse a pixel, and instead you find yourself highlighting cell content instead of dragging the column width.  And you have to keep repeating this process over and over trial-and-error fashion until you finally get the
    sizing handle to display long enough to actually invoke it when clicking.   It is rather frustrating.  My question is this:  Is there a way to increase the tolerance to invoke a sizing handle?  In other words, increase the pixel count slightly,
    either side of the line, that will invoke the control for the sizing handle?   Instead of a few pixels, to something much more realistic/functional, like maybe 5 to 7 pixels either side of the line.  This is also a problem when dealing with columns
    in Windows Explorer - you find yourself dragging a column instead of re-sizing it because by the time you click the mouse, the sizing control has reverted to a regular mouse pointer - this has long been a source of wasted time and frustration to me.  I'm
    hoping there might be a way to change this in the Windows registry.  Thank you.   

    Cool article, but not relevant.
    I did not import from iPhoto nor Aperture.
    I have my photos as JPEG files in a folder on my hard drive.
    Photos, the app, did not make any duplicates. Rather, it made a giant Resources folder, almost as big as my folder of Image files.
    FInder Info confirms the size increase and lost capacity on my hard drive.
    But I appreciate the link.  That could certainly give someone the same impression.

  • How to increase the thread count in jive forum RSS feed

    Dear All,
    We are using Enterprise portal and we have installed jive forums sp14, we have a requirement of reading forums rss feeds and integrating in to a web page, currently we are doing that but the problem is rss feed in forums has maximum feed of 10, and we don't have the option of giving the user to read entire RSS feed of a particular forum.
    i want increase the RSS feed count how can i do this.
    Please help
    Regards
    Aflal

    Hi Aflal,
    Try this link & see whether it has a solutionr to our issue
    http://docs.jivesoftware.com/latest/documentation/rss.html
    Cheers
    Sukitha

  • Exception Aggregation is not working while Expanding hierarchy increases the total count

    Hi All ,
    I am working on Headcount report. I need to count the Employee based on the National Insurance no of a Employee so that the Employee will be count only once.
    On query execution query gives a correct result. After expanding the Org. Unit Hierarchy it will show a different result and more than that before expanding in the count column. Attachment is there for reference.
    Regards
    Arvind

    You need to close your resultSets, Statements and Connections before exiting the jsp. That is probably why you are experiencing this problem.

  • Row_number() issue - exponentially increases the record count

    Hello all -
    I'm trying to use the row_number to split the amount by the number of months between the dates and create one new row for the each month.
    The use of row_number() is causing the data to be exponentially increase based -i.e currently there are 3 distinct records and each record should only return 2 rows but the this returns 12 rows and so on if the data increases which is causing a performance issue . I could put the entire query below again as a derived table and add a where condition as where rn < = tot_months but I just want to know if there is any way to limit the rows to the number of months reason being - for 48 distinct rows it is creating apprx 12000 rows and the performance has become a killer. You can try by adding more rows and see what I mean especially when the span between months is more -
    Any help is greatly appreciated -
    WITH testdata AS
    (SELECT 1 id, 1001 acct_no, 2001 cnt_id, to_date('01/17/2007','mm/dd/yyyy') start_date, to_date('03/16/2007', 'mm/dd/yyyy') end_date, 8000 amount
    FROM dual
    UNION ALL
    SELECT 2 id, 1002 acct_no, 2002 cnt_id, to_date('01/18/2007','mm/dd/yyyy') start_date, to_date('03/19/2007', 'mm/dd/yyyy') end_date, 90000 amount
    FROM dual
    UNION ALL
    SELECT 3 id, 1003 acct_no, 2003 cnt_id ,to_date('02/08/2007','mm/dd/yyyy') start_date, to_date('04/11/2007', 'mm/dd/yyyy') end_date, 125000 amount
    FROM dual)
    SELECT DISTINCT id,
    acct_no,
    cnt_id,
    start_date,
    end_date,
    amount,
    row_number() over(PARTITION BY id , start_date ORDER BY cnt_id) rn,
    ROUND(months_between(end_date, start_date)) tot_months
    FROM
    (SELECT id,
    acct_no,
    cnt_id,
    start_date,
    end_date,
    amount
    FROM testdata t
    where ROUND(months_between(end_date, start_date)) > 1 )
    t CONNECT BY LEVEL <= ROUND(months_between(end_date, start_date))
    order by acct_no,cnt_id, start_date
    Thanks.

    Then why is the query returning multiple rows instead
    of 2 per account. Because you have in no way specified that the query must return 2 rows per account. You need to fully understand the implications of what you are doing.
    CONNECT BY <= SOME_INTEGER is not just a generic method of "multiplying" rows by an integer value. True, it works in certain circumstances when used in a certain way, but there is still debate about whether it is even a valid SQL construct. See Multi-Rows from DUAL (and many others) for different approaches to generating rows.
    But let's understand exactly what your query is doing. In essence, you are doing something similar to the following,where the ID signifies the number of months between start_date and end_date in your example:
      1  with testdata as (
      2     select 1 id from dual union all
      3     select 2 id from dual
      4  )
      5  select lpad(t.id, 2*level, ' ') as id
      6  , level
      7  from testdata t
      8* connect by level <= t.id
    [email protected](162)> /
    ID              LEVEL
    1                  1
       2                2
    2                  1
       2                2I've included the LEVEL pseudocolumn in the output and formatted by the depth of the tree so we can better see what's going on. The hierarchical query is processed in the following order:
    1. Select the root rows of the hierarchy. In our case this includes all rows in the test table. So, for the both ID = 1 and ID = 2, we descend to LEVEL = 1, i.e. the root level, and we return both rows with LEVEL = 1.
    2. Increment the LEVEL pseudocolumn and select the child rows of each root row, i.e. those rows which satisfy the CONNECT BY condition.
    So we increment LEVEL to 2. For the both the rows, we descend to the CONNECT BY condition LEVEL = 2. Only ID = 2 satisfies the LEVEL <= ID condition, so this row is returned as a child of both ID = 1 and ID = 2.
    So we see, the row with ID = 2 is both the parent AND the child for one of the returned rows. Note that this is, strictly speaking, a LOOP in the data and should raise the ORA-01436: CONNECT BY loop in user data error, but it does not. In my opinion this is a BUG, hence the "debate" mentioned above..
    3. We return the rows with parents followed directly by their children.
    So, in your general case of:
    with t as (
       select N mnths -- average no of months
       from T -- T is a table with R rows
    select *
    from t
    connect by level <= t.mnths, you'll return:
    - R rows for level = 1
    - R*R rows for level = 2
    - R*R*R rows for level = 3
    So your general number of rows is Rtot = R + R^2 + R^3 + ... + R^N
    For 48 rows with 2 months per row, this gives 48 + 48^2 = 2352 rows.
    For 48 rows with 3 months per row, this gives 48 + 48^2 + 48^3 = 112944 rows.
      1  with testdata as (
      2     select 3 id from dual union all
    48     select 3 id from dual union all
    49     select 3 id from dual
    50  )
    51  select lpad(t.id, 2*level, ' ') as id
    52  , level
    53  from testdata t
    54* connect by level <= t.id
    [email protected](162)> /
    112944 rows selected.So you can see, your number of rows returned will grow extemely quickly if you have 3 or more months between start date and end date.
    cheers,
    Anthony

  • How to increase the row count for display in OBIEE Answers-Dashboard page?

    Hi All,
    I have problem in exporting my reports. I need to export my report to either PDF or EXCEL format. My report contains more than 1200 rows. But when i am exporting the report to PDF it contains only 500 rows, for rest of the rows i have to scroll down and again i have to export to get the contents from 501 to 1000.
    Is it possible by changing any property, can i export the entire 1200+ rows in a single EXCEL or PDF? Pls anybody shed light on this issue.
    Thanks in Advance
    Thenmozhi.

    Hi,
    D:\Oracle\Middleware\instances\instance1\config\OracleBIPresentationServicesComponent\coreapplication_obips1\instanceconfig.xml
    before take it u r back up and then update the below code ..
    <Views>
    <Pivot>
    <MaxCells>6500000</MaxCells>
    <MaxVisibleColumns>100</MaxVisibleColumns>
    <MaxVisiblePages>1000</MaxVisiblePages>
    <MaxVisibleRows>65000</MaxVisibleRows>
    <MaxVisibleSections>25</MaxVisibleSections>
    <DefaultRowsDisplayed>500</DefaultRowsDisplayed>
    <!--This Configuration setting is managed by Oracle Business Intelligence Enterprise Manager--><DefaultRowsDisplayedInDelivery>75</DefaultRowsDisplayedInDelivery>
    <!--This Configuration setting is managed by Oracle Business Intelligence Enterprise Manager--><DefaultRowsDisplayedInDownload>65000</DefaultRowsDisplayedInDownload>
    <!--This Configuration setting is managed by Oracle Business Intelligence Enterprise Manager--><DisableAutoPreview>false</DisableAutoPreview>
    </Pivot>
    <Table>
    <MaxCells>6500000</MaxCells>
    <MaxVisiblePages>1000</MaxVisiblePages>
    <MaxVisibleRows>65000</MaxVisibleRows>
    <MaxVisibleSections>25</MaxVisibleSections>
    <DefaultRowsDisplayed>500</DefaultRowsDisplayed>
    <!--This Configuration setting is managed by Oracle Business Intelligence Enterprise Manager--><DefaultRowsDisplayedInDelivery>75</DefaultRowsDisplayedInDelivery>
    <!--This Configuration setting is managed by Oracle Business Intelligence Enterprise Manager--><DefaultRowsDisplayedInDownload>65000</DefaultRowsDisplayedInDownload>
    </Table>
    </Views>
    finally re start all services then try it again... here its working fine...
    Thanks
    Deva

  • Varying the line count in every page

    Hi All..
    I want to vary the line count in a page in my report.
    I have mentioned the line size n line count at the starting of the report, n it prints the same no of lines in every page but in the subsequent pages , I want to increase the line count .
    How can I do that ? 
    Thanks.

    Hi Naimesh..
    thanks for the reply .
    well,the code u suggested does not work..NEW-PAGE is jus a standalone command with which the line count cannot be associated.
    I actually have some header details that shud only appear on 1st page , n basing on the line count all works fine on 1st page ..but on the 2nd page the header details ned not appear , so only the itab details are getting printed , so the sy-tabix value remains the same but the line count is less than the 1st page leaving some space at the bottom of the page .
    And in the subsequent pages the printing takes place but from the begining of the page n also leaving more space at the bottom of the page.
    I want that equal no of lines get printed each page , also leaving equal no of lines at the bottom of each page.
    Hope I'm  sounding clear.
    Any answers ?
    Thanks.
    Sangeet.

  • How to Increase the memory size of a File in the Application Server

    Hello Abaper's
    I have generated a XML file for the data of  internal table (with 10 Records). When i download , i can see the XML file for the Entire 10 Records.
    But , while transferring the XML file to Applicationserver , it's  transferring only upto max 4 Records.I     assume that the memory is insufficient to  allocate 10  Records. Can we Increase the Memory size of the File on Application server. OR,  is there any error in My Source Code.
    Code i used to Transfer the XML File to Application server.
    OPEN DATASET FNAME FOR OUTPUT IN BINARY MODE.
    IF sy-subrc EQ 0.
       LOOP AT it_xmltab INTO wa_xmltab.
           TRANSFER wa_xmltab TO FNAME.
       ENDLOOP.
    ELSE.
      MESSAGE e004(zmsg5) WITH 'File FNAME not opened'.
    ENDIF.
    CLOSE DATASET FNAME.
    Regards
    Jv

    Hi,
    DATA : filename TYPE rlgrap-filename.
    DATA : doc_name TYPE char30.
    DATA : bin_size TYPE i.
    SELECT matnr matkl meins
           FROM mara INTO TABLE it_mara
           UP TO 10 ROWS.
    CALL FUNCTION 'SAP_CONVERT_TO_XML_FORMAT'
      EXPORTING
        i_filename           = filename
        i_xml_doc_name       = doc_name
      IMPORTING
        pe_bin_filesize      = bin_size
      TABLES
        i_tab_sap_data       = it_mara         "  contains  10 Records
      CHANGING
        i_tab_converted_data = it_xmltab.
    placing XML File in Appl. Server
    DATA : FNAME(60) VALUE 'xyz_File'.
    DATA : num TYPE i.
    DATA : xmldata(256) TYPE x.
      For Writing The data in Application Server
    OPEN DATASET FNAME FOR OUTPUT IN BINARY MODE. " ENCODING DEFAULT.
    IF sy-subrc EQ 0.
      LOOP AT it_xmltab INTO wa_xmltab.
        TRANSFER wa_xmltab TO FNAME.
      ENDLOOP.
    ELSE.
      MESSAGE e004(zmsg5) WITH 'File FNAME not opened'.
    ENDIF.
    CLOSE DATASET FNAME.
      For Reading The data in Application Server
    OPEN DATASET FNAME FOR INPUT IN BINARY MODE. " ENCODING DEFAULT.
    DO.
      IF sy-subrc EQ 0.
        READ DATASET fname INTO xmldata.
        WRITE :/ xmldata.
        Clear xmldata.
      ELSE.
        EXIT.
      ENDIF.
    ENDDO.
    CLOSE DATASET FNAME.
    at runtime i can see   
    it_mara  --> contain 10 records
    it_xmltab --> contain 7 lines (Each line size is 255 char). This table have XML format data,  (unknow format , with all numeric 
                        digits)
    it_xmltab is trasferred to application server , but the xml format is generated upto 4 records, and for the remaining records
    the XML format is not generated.
    the XML data in application server file is
    <?xml version="1.0"?><TY_MARA><TY_MARA><MATNR Datatype="C" Length="36">0-BUY1</MATNR><MATKL Datatype="C" Length="18">012</MATKL><MEINS Datatype="C" Length="6">PC
    </MEINS>
    </TY_MARA><TY_MARA><MATNR Datatype="C" Length="36">0-BUY2</MATNR><MATKL Datatype="C" Length="18">012</MATKL><MEINS Datatype="C" Length="6">
    PC </MEINS>
    </TY_MARA><TY_MARA><MATNR Datatype="C" Length="36">000000000000000001</MATNR><MEINS Datatype="C" Length="6">EA</MEINS>
    </TY_MARA><TY_MARA><MATNR Datatype="C" Length="36">000000000000000002</MATNR
    Regards
    JV

  • How to increase the field lenght of file uplaod in BSP application

    Hi All,
       I am facing a problem with u201Cuploadu201D filed length in BSP application.
    When we upload the file in BSP page, the path displayed should be the full path (i.e. from where the file is being upload the file)
    Now this field is appearing 20 char length
    Now I want to increase the length of the upload field (Input field) to be 100 char so that the path is visible.
    In the current application the file upload is being done through a structure (attributes)
    In this structure the fields are like this
    PAGE_NAME
    ID
    FOR
    TAGS
    ROW_INDEX
    COLUMN_INDEX
    OTR_NAME
    REQUIRED_NAME
    MAXLENGTH
    SIZE
    TABLE_NAME
    ON_SELECT
    VALUE
    DISABLED
    ONCLICK
    TEXT
    TYPE
    Using this method:
    CALL METHOD cl_htmlb_fileupload=>factory
              EXPORTING
                Id      = ls_form_save-id
              RECEIVING
                Element = lv_fileup.
            bee_table->add ( level = 2 element = lv_fileup ).
    This cl_htmlb_fileupload is named as class interface.
    Which has the CLG_HTMLB_FILEUPLOAD (it is a class) it is defined in attributes.
    In this class it has the attribute u201CSIZEu201D by default string 20.
    Now I need to change this attribute length from 20 to 100
    For this I copied the standard class CL_HTMLB_FILEUPLOAD into ZCL_HTMLB_FILEUPLOAD.
    This ZCL_HTMLB_FILEUPLOAD contains all attributes of the standard class CL_HTMLB_FILEUPLOAD
    Including the one class (CLG_HTMLB_FILEUPLOAD), this is defined as an attribute (ABOVE MENTIONED?)
    This class is appearing in non editable mode, so   I have copied this class into zclass (ZCLG_HTMLB_FILEUPLOAD).but still I am not able to edit the attribute called u201Csizeu201D
    And also I am not bale to add the zclass in place of the ZCLG_HTMLB_FILEUPLOAD
    Kindly tell me how to modify the length of the field u201Csize u201Cand also how to add the zclass in the attributes of one class (syntax)
    Thanks in advance
    Rambabu.A

    Hi,
    Class CLG_HTMLB_FILEUPLOAD is a class automatically generated when a BSP Element is created. You should not change/create such a class, unless by creating your own BSP Element.
    As per your requirement, you can use the SIZE parameter of method factory:
    ls_form_save-size = '100'.
    CALL METHOD cl_htmlb_fileupload=>factory
    EXPORTING
    Id = ls_form_save-id
    Size = ls_form_save-size
    RECEIVING
    Element = lv_fileup.
    Regards,
    Tanguy

  • How to increase the space of a page in Application Designer ?

    Folks,
    Hello. I am developing a page in Application Designer.
    I need to place multiple records with many fields in the page. But the entire space of the page is not enough to place the fields. We need to use a vertical scroll to increase the space of the page to hold all of the fields. But I don't understand how to do this feature.
    Can any folks tell me how to increase the space of a page in Application Designer in order to hold many fields ?

    Folks,
    Hello. Thanks a lot for replying. It's correct !

  • Can I increase the amount of memory allocation to my terminal or any other application to make it run faster ?

    Hi,
    I have a file that must be run using Terminal only. Its a pretty large file and i do remember that in WIndows we had an option where we could maximum run-time memory to speed up the process of a particular task. Is there any, such chance in Mac ?
    Thank you
    Teja

    Dear Kappy,
    Thank you so much for the reply. Basically this is what i am trying to figure out. I acknowledge that Mac and Apple are well built in every aspect. But i am just curious. Kindly bear.
    In Windows, when i go to Task Manager > Processes > I can right click on any of them, and i can increase the Memory that is allocated from Normal > Above Normal > High > Very High > Real Time. So i am trying to work and do the same on Mac too. Because there is an application (Terminal), which i want to be executed at a higher rate. 
    Yes i did try Renice as you mentioned. But there was "no immediate significant change". Then i also used a GUI version for renice, called "Process Wizard". Which also did the same.
    However thank you for the reply.
    God bless

  • Application cannot be accessed if we increase the OC4J memory

    Hi friends,
    we have made about 4 application and deployed each on oc4j server, all running at same time. The problem is that after some time OC4J shows error message java.lang.outofmemory. We tried to increase the memory usage by using
    java -Xms512m -Xmx512m -jar oc4j.jar
    but now the applications are not accessible
    Plz help

    Hi Kenton
    Thanks for the reply. as earlier i was using oc4j server. Now i have downloaded oracle application server 10.1.2., but now i am not able to make connection to application server. I have installed only the j2ee container and oc4j server in application server.
    can you tell me how to do that?
    do we need to configer AS before we make connection
    what is rmi url and username password? Is it necessary for making connection
    This is the error message
    HTTP connection failure: unknown port number or missing HTTP listener

  • How to increase the performance of an Application

    Hi,
    I am using jdeveloper11.1.1.2.0 and weblogic server10.3.2.I have lot of txn in the database.when click the txn menu then page landing is very slow.My Txn data is 24thousands records.
    My RAM is 8GB and 64bit machine .So how to fast my application?Is any idea then Please help me.
    Thanks
    Anup

    Hi Frank,
    I have follow the below link but there is no performance effect of my application.
    http://www.gebs.ro/blog/oracle/adf-view-object-performance-tuning-analysis/
    On VO level ,In Tuning
    I have modified In batch Of 26 ,As needed ,and Query Optimizer hints FIRST_ROWS_26
    AND ON the page level ,Table Column Property,Fetch size i have modified 26 and page definition level ExchangeTradedPlacementHeadVOIterator default range size is 25.
    So i have above change but there is no effect on the performance of my application.
    Please give me the Solution what will i do to increase the performance of an application.
    Thanks
    Anup

  • How to increase the execution of an application ??

    Hi,
    i want to increase the time of execution of my Java Application, because it's VERY VERY long ! Just for display a window it tooks 2 minutes !! I have create an executable of my java application with InstallAnyWhere.
    Please Help, or my boss will kill me !!
    Thanks in advance
    Steve

    What happens when you write a simple little test frame application like the one below. Does that take 2 minutes to display iteself. If not, then you must be doing some other initialization that is taking so much time.
    import javax.swing.*;
    public class test extends JFrame
    public test()
    super( "Test" );
    setSize( 200, 200 );
    setVisible( true );
    public static void main( String args[] )
    new test();

Maybe you are looking for

  • How to get the iPhone 4 super fast!!

    I was going to get mine launch day but i failed to pre-order so i just waited until June 29th ( When at&t started to sell it ) I ordered mine about 5 am on Tuesday and it said ships in 7-10 days. The next day I took my dog outside and long behold the

  • Build Plug-Ins with CS4 SDK under OS X 10.5 SDK with Xcode 3.1.2?

    I have existing Photoshop Universal Binary Plug-ins built under OS X 10.4 and the OS X 10.4 SDK, with Xcode 2.1.x & Photoshop CS3 SDK.  They are mature and stable. I am attempting to build these Plug-Ins with the new CS4 SDK under OS X 10.5.6 & 10.5

  • Connect to projector, Connect to projector

    After receiving an Apple TV for Christmas I want to add it to my existing setup which is as follows: Sky HD box connected to a HDMI converter to component video Component video input into Sony VPL HS20 projector Works great at either 720p or 1080i re

  • How do I play a sound when a popup window opens.

    I don't want to block the popup. It's just a notice of a timeout for a site I frequent. I want to enable a sound to play when the popup appears so I know the site is about to time out. I'm using Firefox 35.0.1 on a MacBook. Thanks in advance for any

  • Module Failure on Different Computer

    I currently have a set up with the FP-1601, (2) FP-TC-120, and a FP-AIO-610 modules.  We are upgrading to a new computer so I copied the vi and the iak files from the current computer.  For some reason when the vi is run on the new computer I get rea