Max number of rows in a BEX structure

Hi gurus,
we need to create a structure with 164 key figures, and before starting doing it, does anybody knows which is the max number of rows that can be created on a BEX structure?
I'm not asking about max number of rows on a query, i'm asking about the number of entries that you can manually create on a structure. Is there a maximum?
Thanks in advance,
regards,
Miguel

Hi Migual,
You can add as per your requirement. Please refer the following link
http://help.sap.com/saphelp_nw04/helpdata/en/4d/e2bebb41da1d42917100471b364efa/content.htm
Assign Points if helpful.
Regards,
Amit

Similar Messages

  • "Numbers" when creating a sheet the max number of rows is only 255, is this correct because i thorght is was something like 65,000

    "Numbers" when creating a sheet the max number of rows is only 255, is this correct because i thorght is was something like 65,000

    max columns is 255
    max rows should be 65535

  • Max number of rows?

    Hi,
    We have a new implementation of Enterprise X1 3.1 and are trying to determine what determines the maximum number of rows that can successfully be generated using Webi.  Is there a hard limit that Webi has (assuming the Universe max rows is deactivated)?
    Also, is there a limit for Live Office extractions into Excel?  What are the main drivers for this limit?
    Finally, all other factors being equal, are there different limits for the number of rows a query can return successfully in Webi vs Deski vs BEx?  How does the performance of these three tools compare to each other in terms of speed?
    Thanks!
    Darryl

    Thanks for your reply!  I also got a response back from SAP / BObj that I'll share:
    Q) We have a new implementation of Enterprise X1 3.1 and are trying to determine what determines the maximum number of rows that can successfully be generated using Webi. Is there a hard limit that Webi has (assuming the Universe max rows are deactivated)?
    => There is a limit to the number of pages Web Intelligence reports can have. This is because there are a maximum number of pages (per report) the server can process. This number depends on the paper size chosen. Generally, it is approximately 590000 inches vertically by 590000 inches horizontally. Therefore, if you choose a smaller paper size, you get more pages but may not see all the pages of the report.
    Resolution:
    To work around this behavior, you can either make each line smaller to get more records, or split your report into more than one report to see all your data.
    Q) Is there a limit for Live Office extractions into Excel? What are the main drivers for this limit?
    => By default its set to 512 rows and columns....however you can change this by modifying the Liveoffice_config.properties file...you can locate this file in /dswsbobje/lib/dsws_liveoffice_provider.jar.
    Q) Are there different limits for the number of rows a query can return successfully in Webi vs. Deski?
    => Although there is no official limit on the number of rows that can be handled by DeskI, it is really not meant to be used like a database, i.e. for returning millions of rows. The purpose of BusinessObjects reporting tools is to get useful information, which is not possible with millions of rows.
    => It has been observed that when the number of rows increases beyond 1.5 million approximately, it starts affecting the Desktop Intelligence performance. This behavior may vary from machine to machine depending upon the available resources and programs (processes) running in the background.
    => The limit is related to the number of rows those can actually be displayed in the report and not how many can be loaded into the data cube. All the rows get loaded in the cube however when it comes to rendering them in the report the problem may arise.
    Example: Report A returns 2 million rows into the cube however due to the report design there are only 200 rows in the actual report page and can be run successfully. Report B tries to render all 2 million rows into the actual report page and can fail.
    Workaround:
    Use filters in the report so that it will retrieve less number of rows and will also help to display useful data.

  • How to set max. number of rows in a table?

    Hi,
    I'm working on a SCADA interface. In this application there are different tables with vertical scroll bar.
    I prefer to make visible only the initialized rows (I've initialized 40 blank rows of a table with a string array). Since the window not contain all 40 rows but only 20 rows, I set the rows number of "table properties window" to 20; so I added a vertical scroll bar.
    Now, when a user scroll the scroll-bar, he can view not only the 40 rows initializated, but an undefined number of rows.
    There's a way to visualize only a limited number of rows?
    Thanks in advance!

    duplicate
    LabVIEW Champion . Do more with less code and in less time .

  • Max number of rows to display in a pivot table

    I have a pivot table with two row levels and I need to fix the max amount of rows to display at the second level to five. Can I do that on excel 2013?
    Example
    Row Levels
    Machine A
    Part 1 (to be displayed)
    Part 2 (to be displayed)
    Part 3 (to be displayed)
    Part 4 (to be displayed)
    Part 5 (to be displayed)
    Part 6 (not displayed)
    Machine B
    Part 1 (to be displayed)
    Part 2 (to be displayed)
    Part 3 (to be displayed)
    Part 4 (to be displayed)
    Part 5 (to be displayed)
    Part 6 (not displayed)
     and so go on. 

    Hello, 
    you can use a filter to display only the top 5 items of the second level, based on their value. To do that, right-click on a label in the second level, then select Filter > Top 10.  Change the 10 to a 5 in the next dialog.
    You can also create a label filter, but it only takes one filter condition.
    Another way is to select the rows you don't want to be shown, then use right-click > Filter > Hide Selected Items
    cheers, teylyn

  • Table's max number of rows

    Hi,
    I am a newbie to Oracle and I would like to get you comment of the following questions:
    1. What it the maximun number of rows that a table should have in order to be adequately handled in the sense of Create, Read, Update and Delete?
    2. To be more specific , let say I have the following table:
    file_id (INT)
    senetence_id (INT)
    sentence (CLOB)
    Primary key (file_id, senetence_id)
    The queries I would like to do are:
    select - select all sentences for a certain file_id
    insert - insert a new sentence (for a specific file_id)
    delete - delete a sentence for a specific file_id.
    search - get all sentences that contain a specifc string
    The table's size is going to growth and could get to millions and even more.
    Could i get into a point where I couldn't "work" with the table.
    Thank you in advance for your assitance
    Edited by: user9341163 on Mar 15, 2010 12:46 AM

    Hi,
    Welcome to forums.oracle.com
    I am not sure of what you are looking for, DB itself used for storing information irrespective of Size of data (as its going to increased day by day).
    The queries I would like to do are:
    select - select all sentences for a certain file_id
    select *
    from <table_name>
    where file_id = <specific_fileid>
    insert - insert a new sentence (for a specific file_id)
    insert into <table_name>
    select <specific file_id>, <sentence>,EMPTY_CLOB()
    from dual
    or
    insert into <table_name> values (<specific file_id>, <sentence>,EMPTY_CLOB())
    delete - delete a sentence for a specific file_id.
    delete from <table_name> where file_id = <specific file_id>
    search - get all sentences that contain a specifc string
    select from <table_name> where file_id = <specific file_id>
    I could not able to understand further, are you looking specific to CLOB in your table. ??
    - Pavan Kumar N
    - ORACLE 9i/10g - OCP
    - oracleinternals.blogspot.com

  • BEx 7.X + MS Excel 2007 - Max number of Rows

    Hi,
    I've been looking for some way to show more than 65k rows in Excel 2007 using BEx Analyzer 7.X.
    I have a customer that has this issue. I know that use more than 65k rows is not a property of a BI report and reports with more than 65k rows would have problems with performance, but my customer has this issue.
    Do you know some way to solve this problem? Can Excel 2007 + BEx Analyzer 7.X show more than 65k rows?
    Thanks,
    Best Regards,
    Marco Muniz

    Hi Marco,
    as far as I know in Excel 2007 it is possible to show
    1,048,576 rows by 16,384 columns
    Please check this thread:
    WAD 7.0 MENU_ITEM with html Frame

  • Number of rows returned for a report

    I want to create reports on serveral tables, the number of rows in these tables varies a lot (5, 5000, and the other one can have 10000+ rows).
    In the Reports Attributes page, is there a way to set the max number of rows return to the number of rows of the table? For example, for a table that has 10000 rows now, may grow to 20000 rows in the near future. If I specify the "Max Row Count" to 20000, the number may be outgrown yet again soon. If I can specify "Max Row Count" to "Current number of rows in the table" then this problem will not happen. Can it be done?

    that "Max Row Count" attribute is used to limit the number of rows returned by a htmldb report region. in your case it sounds as if you want to show all available rows all the time. in that case you'd be fine to just put a very large number into that field like 4million. that way you'd always show all your rows.
    hope this helps,
    raj

  • How to calculate number of rows for perticular characterstic in SAP BI Bex

    Hi experts,
    Please let me know how to calculate  ' number of rows  ' for perticular characterstic in Bex query. 
    Thanks & Regards,
    Babu..

    Hello,
    You can try this
    Create a CKF and assign the vale 1 to it. Open the query and select Character where you want to display ' number of rows ', go to properties windows, select 'display', in the results row drop down box, select  'always display'.
    Thanks.
    With regards,
    Anand Kumar

  • How to increase the number of rows to be displayed in BEx Web Analyzer

    hi,
    I am viewing reports using BEx Web analyzer option. It is displaying only 24 rows  of data at a time. How to increase the number of rows? do i need to any kind of settings?
    pls reply.

    Hi,
    I think the standard template in 2004s is named 0ANALYSIS_PATTERN. You can find it in Web Application Designer, open, and search for the technical name. If you want to change the number of rows or columns, you can find this setting near the bottom of the XHTML view of the template:
    <bi:BLOCK_COLUMNS_SIZE value="4" />
    <bi:BLOCK_ROWS_SIZE value="17" />
    Then just save, and ignore the error messages.
    Message was edited by:
            vind Reinsberg

  • BEX analyzer -Maximum number of rows (65535) exceeded. Result is incomplete

    Hello Experts,
    I am trying to Run a report on BEx Analyzer.There are around 200,000 records to be displayed in the result.
    I am getting the below error.
    Maximum number of rows (65535) exceeded. Result is incomplete.
    Message no. BRAIN675
    We are on SAP GUI 7.X and Excel 2007
    Is there any setting that I have to change inorder for BEX analyzer to display all the 200,000 records.
    Also any memory setting for the result set to be changed ?
    Please let me know your thoughts
    Thanks
    Doodle

    Hi Doodle,
    The rows limit for Excel 2007 is 1 million so this is not the problem with row limitation. It seems like you have opened the pre-excel 2007 workbook in excel 2007, check your title bar if it says "Compatible Mode". This will limit you to old standard of 65K.
    May be what you can do is , save your file using save as option and try running the workbook.
    Your new file extension will be .xlsx
    Regards,
    Durgesh.
    Edited by: Durgesh Gandewar on Jul 14, 2011 10:03 AM

  • Webi: unwanted zero rows suppression on BEx selection structure

    Hello,
    I have a Webi report/universe based on a BEx query having 2 structures: keyfigures in columns, characteristics selection structure in rows. We are still using BO XI 3.1 SP1.
    Now: the webi report suppresses the zero rows of the char structure, but we do not want that. in the bex query, there is no active zero rows suppression.
    I read in a similar thread about the opposite and that it will be fixed with XI 3.1 SP3:
    Re: Zero Rows suppression is not working in Webi report.
    Question: does anyone know, if "my" case is also solved by SP3? or anyone knows a workaround?
    Unfortunately the PDFs XI31_SP3_Fixed_Issues_1of2.pdf and XI31_SP3_Fixed_Issues_2of2.pdf of SAP note 1457545 contain no information about this point.
    Thanks and regards,
    Phil

    Hi Ingo,
    thanks for the workaround tip!
    In BEx query I tried with a calculated keyfigure set to "1" and alternatively with a restricted keyfigure set to "constant selection". Unfortunately, both did not work, the webi report was clocking long after the bex process was finished in BW.
    Then I got error WIS 30284 ( universe connection corrupt) and 30285 (no free memory). But maybe we just have an issue with webi server performance.
    anyway, thanks!
    Best regards,
    Phil
    Edited by: Phil on Jun 23, 2010 10:42 AM

  • Max number of entries in the variable input list (F4) of Bex Analyzer Query

    Dear BW experts,
    When I run the Bex Analyzer query, it pops up the variable input screen.
    If I don't know the specific value of the variable, then I can click on the input help (F4) to get a list of available values.  There is a max number of entries coming back to the list.  For my BW system, it is currently returning 500 values.  For other people and SAP Help document, it could be 1000.
    My question is: Do you know where we can configure/set this max value? Is it a global setting?
    Thanks in advance for your help in this matter.
    Kevin-

    Murali & Pra,
    Thanks for both of your answers.  I think the answers that you provided are for BW 7.X version.
    It is flexible and exactly the way it should be for each user to customize a specific variable.
    I am running BW 3.5 query, and don't see the "Settings" option/button after I got the list of single values back.
    Is there a way to set this up for BW 3.5 query Analyzer?  My max value is always 500 for all variables.  Is there a place for setting this value and save for the next time.
    Any help from any BW experts is appreciated.

  • BEx Variable Input Help (F4) Maximum Number of Rows

    Hi Experts,
    We using Bex 3.x version. Now, the user is asking to change the maximum number of rows (by default 500, for my case) to 1000. (While executing the workbook, on the variable pop-up screen where we can search for input help (F4) values). For surely, there is some global setting needs to be corrected but not sure. I have checked in T-code: SPRO and some of the threads but not get the apt solution.
    Could you please share us your inputs/experiences as how can we increase maximum number of rows in the input help.
    Many thanks in advance!!!
    Best Regards
    Venkat...

    Hello Venkat,
    Is there is a way to setup that, you will find into this KBA Article (SAP Note):
    > 1565809 - Settings for BW query F4 help   
    This is a really good documentation about how F4 works and how to setup the configurations and where you have to do that.
    Kind Regards,
    Edward John

  • Getting the max number and show the row

    hi
    i have this table:
    MyTbl
    ====
    id | Name  |  Num
    ===========
    1  | AAA    |   0
    1  | BBB    |   1
    1  | CCC    |   2
    2  | DD     |   0
    2  | EEE    |   1
    3  | FFF    |   0
    i need to show the max Num in row order by id
    i need to see this:
    MyTbl
    ====
    id | Name  |  Num
    ===========
    1  | CCC    |   2
    2  | EEE    |   1
    3  | FFF     |   0
     i need it on sqlight (or sql-server i think is same)
    thanks

    Here is an AdventureWorks example to get the maximum list price products for each color:
    WITH CTE AS
    (SELECT RNK=DENSE_RANK() OVER (PARTITION BY Color ORDER BY ListPrice DESC),
    Color, ListPrice, ProductName=Name
    FROM Production.Product WHERE ProductSubcategoryID > 0 AND Color is not null)
    SELECT Color, ListPrice, ProductName FROM CTE
    WHERE RNK = 1 ORDER BY Color, ProductName;
    Black 3374.99 Mountain-100 Black, 38
    Black 3374.99 Mountain-100 Black, 42
    Black 3374.99 Mountain-100 Black, 44
    Black 3374.99 Mountain-100 Black, 48
    Blue 2384.07 Touring-1000 Blue, 46
    Blue 2384.07 Touring-1000 Blue, 50
    Blue 2384.07 Touring-1000 Blue, 54
    Blue 2384.07 Touring-1000 Blue, 60
    Grey 125.00 Touring-Panniers, Large
    Multi 89.99 Men's Bib-Shorts, L
    Multi 89.99 Men's Bib-Shorts, M
    Multi 89.99 Men's Bib-Shorts, S
    Red 3578.27 Road-150 Red, 44
    Red 3578.27 Road-150 Red, 48
    Red 3578.27 Road-150 Red, 52
    Red 3578.27 Road-150 Red, 56
    Red 3578.27 Road-150 Red, 62
    Silver 3399.99 Mountain-100 Silver, 38
    Silver 3399.99 Mountain-100 Silver, 42
    Silver 3399.99 Mountain-100 Silver, 44
    Silver 3399.99 Mountain-100 Silver, 48
    Silver/Black 80.99 HL Mountain Pedal
    Silver/Black 80.99 HL Road Pedal
    Silver/Black 80.99 Touring Pedal
    White 9.50 Mountain Bike Socks, L
    White 9.50 Mountain Bike Socks, M
    Yellow 2384.07 Touring-1000 Yellow, 46
    Yellow 2384.07 Touring-1000 Yellow, 50
    Yellow 2384.07 Touring-1000 Yellow, 54
    Yellow 2384.07 Touring-1000 Yellow, 60
    Kalman Toth Database & OLAP Architect
    SQL Server 2014 Database Design
    New Book / Kindle: Beginner Database Design & SQL Programming Using Microsoft SQL Server 2014

Maybe you are looking for

  • Steps involved in creating an online SHOPPING BASKET / CART

    I am trying to learn how to create a website for selling products online, and I have no idea where to start with the details of adding a shopping cart to a site etc. All I know (I think) is that SSL Certificates are required for the secure page where

  • How to get the connection string at runtime

    Hi, I'm using Forms6i. I'm using EXEC_SQL to execute a dynamic sql in my form. I need connection string for that . But i cannot give it hardcodingly. Is there any form's properties to get the database connection string, to which the form is connected

  • Shifting from EAS to Outlook Sync - will I lose my contacts?

    The contacts currently on my iPhone were synced there using Exchange Active Sync from my work e-mail account. If I disable/delete the work account, is there any way to ensure the contacts are preserved? I will be changing to sync with a local Outlook

  • Getting to know the Valet Connector (AM10)

    Getting to know the Valet Connector (AM10)

  • Impact of Events

    Hello everyone, I've a doubt regarding events. In our 11gr2 PSU2 env we faced ORA-1031 errors. Contacting support, we came to know that was a bug which wasn't yet filed. Later, we were asked to set 1031 event. Whenever we set the events we received m