Fixed Rows/Columns in Web Interfaces

Hello,
Does anybody has the How to paper about Fixed Rows/Columns in Web interfaces?
I found one link (By Olaf Fischer) that was expired.
Thanks a lot!
Bueno

and here is a copy of the download link:
<a href="For download follow the link https://sapmats-de.sap-ag.de/download/download.cgi?id=WEJDT0MZ18U0W5NXAQJU92HI46IH82UZYO7X84BH8RZ7T1V00M">For download follow the link https://sapmats-de.sap-ag.de/download/download.cgi?id=WEJDT0MZ18U0W5NXAQJU92HI46IH82UZYO7X84BH8RZ7T1V00M</a>
Regards, Olaf

Similar Messages

  • Can I make auto layout of Matrix Chart after setting fixed rows/columns ?

    Can I make auto layout of Matrix Chart after setting fixed rows/columns ?
    I want to make Matrix Chart to auto layout to zooming out a chart of filter.
    Matrix Chart's layout is AUTO layout at creating.
    Matrix Chart layout can fix specfic rows / columns from layout toolbar.
    BUT fixed layout's Matrix Chart does not zoom a chart of filter.
    Regards,
    Yoshihiro Kawabata
     

    Hi Yoshihiro - at the moment if a specific number of row/columns has been set for small multiples the chart will maintain these proportions even after filtering.
    If the chart hasn't had a set row/column dimensions set it will automatically be re-laid out when filtered however.

  • Adding row/column in Web Analysis document

    Dears,
    I'm a beginner in Web Analysis. Is it possible to add a formula/text row/column in a document?
    I'm using version 11.1.2.3
    Regards,
    Ahmad.

    Hi,
    To insert a row or column in a freeform grid, right-click the freeform grid and select Insert Row or Insert Column
    HTH
    Regards,
    Nowshad.

  • Can't Freeze Row/column in Web layout in Integrated planning

    Hi Guys
    we have 50 columns in planning query. Web layout screen can't present all these column in one screen . While scrolling for viewing rest of the columns the initial column(Description) disappears i.e scrolled out and hence it is very difficult to corelate which Key Figutre value (Value) represent which Object(InfoObject).
    We need a way around of freezing of columns functionality which is available in BPS but not in  BI IP.
    Thanks for any helpful input
    Thanks
    Tripple k

    Hi Tripple,
    As you had pointed "We need a way around of freezing of columns functionality which is available in BPS" can you help me to understand where this setting can be achieved in BPS.
    Thanking you in advance.
    Regards
    Jerry

  • Help for fixed columns in web layout

    Hi all,
         I'm facing the problem of Fixing the column of web layout,I know there's a post of solving this,
      Fixed Rows/Columns in Web Interfaces
    but all the download links in this post are expired,could any one send me the file or the how to documents to [email protected]? thank you very much!
       thank you all.

    Denny,
    The easiest way is to use the Microsoft OWC (office Web component) and you can have Excel on the web where you have to publish the layouts for the web. 
    If not, and you use pure web, Olaf Fisher's paper might be published as a how to guide by now.  I would suggest a search on SDN.  I have downloaded the file a long time ago but I think it is on the server in the office.

  • JTable fixed Row and Column in the same window

    Hi
    Could anyone tip me how to make fixed row and column in the same table(s).
    I know how to make column fixed and row, tried to combine them but it didnt look pretty.
    Can anyone give me a tip?
    Thanks! :)

    Got it to work!
    heres the kod.. nothing beautiful, didnt clean it up.
    * NewClass.java
    * Created on den 29 november 2007, 12:51
    * To change this template, choose Tools | Template Manager
    * and open the template in the editor.
    package tablevectortest;
    * @author Sockan
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    import javax.swing.table.*;
    import javax.swing.event.*;
    public class FixedRowCol extends JFrame {
      Object[][] data;
      Object[] column;
      JTable fixedTable,table,fixedColTable,fixedTopmodelTable;
      private int FIXED_NUM = 16;
      public FixedRowCol() {
        super( "Fixed Row Example" );
        data =  new Object[][]{
            {      "","A","A","A","",""},
            {      "a","b","","","",""},
            {      "a","","c","","",""},
            {      "","","","d","",""},
            {      "","","","","e",""},
            {      "","","","","","f"},
            {      "","b","","","",""},
            {      "","","c","","",""},
            {      "","","","d","",""},
            {      "","","","","e",""},
            {      "","b","","","",""},
            {      "","","c","","",""},
            {      "","","","d","",""},
            {      "","","","","e",""},
            {      "","","","","","f"},
            {      "I","","W","G","A",""}};
        column = new Object[]{"A","B","C","D","E","F"};
        AbstractTableModel fixedColModel = new AbstractTableModel() {
          public int getColumnCount() {
            return 1;
          public int getRowCount() {
            return data.length;
          public String getColumnName(int col) {
            return (String) column[col];
          public Object getValueAt(int row, int col) {
            return data[row][col];
          public boolean CellEditable(int row, int col) {
            return true;
        AbstractTableModel    model = new AbstractTableModel() {
          public int getColumnCount() { return column.length-2; }
          public int getRowCount() { return data.length - FIXED_NUM; }
          public String getColumnName(int col) {
           return (String)column[col+1];
          public Object getValueAt(int row, int col) {
            return data[row][col+1];
          public void setValueAt(Object obj, int row, int col) {
            data[row][col+1] = obj;
          public boolean CellEditable(int row, int col) {
            return true;
        AbstractTableModel fixedTopModel = new AbstractTableModel() {
          public int getColumnCount() { return 1; }
          public int getRowCount() { return data.length - FIXED_NUM; }
          public String getColumnName(int col) {
           return (String)column[col];
          public Object getValueAt(int row, int col) {
            return data[row][col];
          public void setValueAt(Object obj, int row, int col) {
            data[row][col] = obj;
          public boolean CellEditable(int row, int col) {
            return true;
        AbstractTableModel fixedModel = new AbstractTableModel() {     
          public int getColumnCount() { return column.length-2; }
          public int getRowCount() { return FIXED_NUM; }
          public Object getValueAt(int row, int col) {
            return data[row + (data.length - FIXED_NUM)][col+1];
        table = new JTable( model );
        table.setAutoResizeMode(JTable.AUTO_RESIZE_OFF);
        table.setSelectionMode(ListSelectionModel.SINGLE_SELECTION);
        fixedTable = new JTable( fixedModel );
        fixedTable.setAutoResizeMode(JTable.AUTO_RESIZE_OFF);
        fixedTable.setSelectionMode(ListSelectionModel.SINGLE_SELECTION);
        fixedColTable= new JTable(fixedColModel);
        fixedColTable.setAutoResizeMode(JTable.AUTO_RESIZE_OFF);
        fixedColTable.setSelectionMode(ListSelectionModel.SINGLE_SELECTION);
        fixedTopmodelTable = new JTable(fixedTopModel);
        fixedTopmodelTable.setAutoResizeMode(JTable.AUTO_RESIZE_OFF);
        fixedTopmodelTable.setSelectionMode(ListSelectionModel.SINGLE_SELECTION);   
        JScrollPane scroll      = new JScrollPane( table );
         scroll.setHorizontalScrollBarPolicy(JScrollPane.HORIZONTAL_SCROLLBAR_NEVER);
         scroll.setVerticalScrollBarPolicy(JScrollPane.VERTICAL_SCROLLBAR_ALWAYS);
        JScrollPane fixedScroll = new JScrollPane( fixedTable ) {
          public void setColumnHeaderView(Component view) {}
        fixedScroll.setVerticalScrollBarPolicy(JScrollPane.VERTICAL_SCROLLBAR_ALWAYS);
        fixedScroll.setHorizontalScrollBarPolicy(JScrollPane.HORIZONTAL_SCROLLBAR_ALWAYS);
        JScrollBar bar = scroll.getVerticalScrollBar();
        JScrollBar dummyBar = new JScrollBar() {
          public void paint(Graphics g) {}
        dummyBar.setPreferredSize(bar.getPreferredSize());
        scroll.setVerticalScrollBar(dummyBar);
        final JScrollBar bar1 = scroll.getHorizontalScrollBar();
        JScrollBar bar2 = fixedScroll.getHorizontalScrollBar();
        bar2.addAdjustmentListener(new AdjustmentListener() {
          public void adjustmentValueChanged(AdjustmentEvent e) {
            bar1.setValue(e.getValue());
        JViewport viewport = new JViewport();
        viewport.setView(fixedColTable);
        viewport.setPreferredSize(fixedColTable.getPreferredSize());
        fixedScroll.setRowHeaderView(viewport);
        fixedScroll.setCorner(JScrollPane.UPPER_LEFT_CORNER, fixedColTable
            .getTableHeader());   
        JViewport viewport2 = new JViewport();
        viewport2.setView(fixedTopmodelTable);
        viewport2.setPreferredSize(fixedTopmodelTable.getPreferredSize());
        scroll.setRowHeaderView(viewport2);
        scroll.setCorner(JScrollPane.UPPER_LEFT_CORNER, fixedTopmodelTable
            .getTableHeader()); 
        scroll.setPreferredSize(new Dimension(600, 19));
        fixedScroll.setPreferredSize(new Dimension(600, 100)); 
        getContentPane().add(     scroll, BorderLayout.NORTH);
        getContentPane().add(fixedScroll, BorderLayout.CENTER);   
      public static void main(String[] args) {
        FixedRowCol frame = new FixedRowCol();
        frame.addWindowListener( new WindowAdapter() {
          public void windowClosing( WindowEvent e ) {
            System.exit(0);
        frame.pack();
        frame.setVisible(true);
    }

  • RE: Hide a column in web report using table interface class

    Hi,
    I want to hide first column in web template using table interface class. Following is the code i used in CAPTION_CELL and CHARACTERISTIC_CELL. Is this correct?
    method CAPTION_CELL.
    *First column
    if i_x = 1.
    add comment tag
    move '<!-- ' to C_CELL_CONTENT.
    endif.
    endmethod.
    method CHARACTERISTIC_CELL
    First column
    if i_x = 1.
    save start-time column
    move I_CHAVL_EXT to L_STARTTIME.
    add comment tag
    move '<!-- ' to C_CELL_CONTENT.
    endif.
    endmethod.
    When i execute the web template it is still displaying the first column. Do i have to code in any other method?
    Thank you,
    Mala Venkatesh

    Hi , the implementation should look like...
    method CAPTION_CELL .
    *CALL METHOD SUPER->CAPTION_CELL
    EXPORTING
    I_X =
    I_Y =
    I_IS_EMPTY =
    I_IOBJNM_ROW =
    I_ATTRINM_ROW =
    I_TEXT_ROW =
    I_IOBJNM_COLUMN =
    I_ATTRINM_COLUMN =
    I_TEXT_COLUMN =
    I_IS_REPETITION =
    I_COLSPAN =
    I_ROWSPAN =
    CHANGING
    C_CELL_ID =
    C_CELL_CONTENT =
    C_CELL_STYLE =
    C_CELL_TD_EXTEND =
    First column
    if i_x = 1.
    add comment tag
    move '<!-- ' to C_CELL_CONTENT.
    endif.
    Second column
    if i_x = 2.
    close comment tag
    concatenate '--> '
    C_CELL_CONTENT
    into C_CELL_CONTENT.
    endif.
    endmethod.
    method CHARACTERISTIC_CELL .
    *CALL METHOD SUPER->CHARACTERISTIC_CELL
    EXPORTING
    I_X =
    I_Y =
    I_IOBJNM =
    I_AXIS =
    I_CHAVL_EXT =
    I_CHAVL =
    I_NODE_IOBJNM =
    I_TEXT =
    I_HRY_ACTIVE =
    I_DRILLSTATE =
    I_DISPLAY_LEVEL =
    I_USE_TEXT =
    I_IS_SUM =
    I_IS_REPETITION =
    I_FIRST_CELL = RS_C_FALSE
    I_LAST_CELL = RS_C_FALSE
    I_CELLSPAN =
    I_CELLSPAN_ORT =
    CHANGING
    C_CELL_ID =
    C_CELL_CONTENT =
    C_CELL_STYLE =
    C_CELL_TD_EXTEND =
    First column
    if i_x = 1.
    save document-item number
    move I_CHAVL_EXT to l_docitem.
    add comment tag
    move '<!-- ' to C_CELL_CONTENT.
    endif.
    Second column
    if i_x = 2.
    close comment tag
    concatenate '--> '
    C_CELL_CONTENT
    l_docitem
    into C_CELL_CONTENT
    separated by space.
    endif.
    endmethod.
    Activate the methods/class and add this in the Web Template!
    for example:
    <param name="MODIFY_CLASS" value="ZHCOLAPP">
    ZHCOLAPP is the table interface class in this case.
    Best,
    Michael

  • When is Linksys going to fix the WPS54g web interface that's crashing?

    Since the last update 6049 in September 2005 which fixed problems but also introduced a new problem. If you used Firefox or Internet Explorer 7 both will completely crash the print server. Now with Internet Explorer 6 it works fine. The problem is you can't get Internet Explorer 6 with Vista, and also Microsoft is updating all Windows XP boxes to Internet Explorer 7 though the auto update. I love the web interface and the Admin tool is not as powerful as the web interface. There has not been an update since September 2005.Personally I use Ubuntu Linux and Firefox started crashing the server immediately with the update , but I needed. It was ok because I had a Windows VM with IE 6, and I figured Linksys wasn't going to give me the time of day. Any workarounds maybe?
    (Edited for guideline compliance. Thanks!)Message Edited by JOHNDOE_06 on 02-21-200709:59 PM
    Message Edited by jerone on 02-22-200701:08 PM
    I ask Johndoe_06 that you not edit this into a question that is not relavent. The problem is a problem that Linksys needs to fix.Message Edited by jerone on 02-22-200701:09 PM
    Message Edited by jerone on 02-22-200701:10 PM

    This is not a security setting problem. Firefox first exposed this problem and now IE 7 is exposing it. The print server should not crash if a web browser is viewing it. No matter if you are under Windows or Linux . I first saw this problem using Firefox under Linux. But IE 6 worked fine under Windows. But now IE 6 is now gone to the way side and both Firefox & IE 7 send commands to access web pages is exposing a serious problem in the WPS54g firmware.Message Edited by jerone on 02-22-200701:10 PM

  • Fix a column a row when scrolling

    I want to fix a column or row in number so that they stay where they are whilst I scroll through the sheet. Is that possible? How?

    See Freeze Headers.
    p. 64 in the Numbers User Guide.
    Jerry

  • Fix rows and column in WAD

    Hi,
    Somebody now if I can fix the columns and rows with any function or Item in WAD version 7.0 ?
    Is there any how to ?
    Thanks.

    Hi dear Kams,
       I'm speaking about a report in which I have a lot of columns and rows, and I don´t want to move the first column or the first row. I need to immobilize them. Is like a function "freeze pane" in Microsoft Excel.  With this functionality I could see the ended column without lost the first column.
       I trying to do it in WAD version 7.0 but I don´t find this function in the Items. I would like to know is there any "how to" or item for this action ?.
       For example I have a report with the characteristic ACCOUNT and many Key Figures, I would like to move my scroll until Key Figure 4 and don´t lost the Account Column.
      I
    Account            Key Figure 1     Key Figure 2     Key Figure 3     Key Figure 4    
    10513422
    32546812
    54879632
    21548777
    21547855
    84579615
    54687951
    Thanks for your help !!

  • To create a fixed row in the bottom of table and to merge three columns

    Hi,
    I have a table displaying some values but is there any way to get a fixed row at the bottom which will sum the values above.
    ie
    service   business  jan       feb       mar      april
    table       cut          900       100      100      200
    chair       blade       100        200      300     400
    sum                       1000      300      400    600
    so the final row i need it to be constant even if i scroll down the table, this row should be always fixed and visible. and the table data are filled dynamically.. so i dont know the no of rows available as well.
    How can I do it. Any insight on it will be helpful.
    Thanks and Regards
    Tenzin

    Hi,
    CL_WD_TABLE - >SET_FOOTER_VISIBLE where you can provide that summation in the footer.
    As you are calculating the sum there will be the Name for that field to hold summation value right.
    Based on the name of that field you can set it to the footer by passing the necessary paramters to that
    method.
    How are you filling the table.
    Regards,
    Lekha.

  • Jumbled text in web interface after updating Web Services / firmware

    I got a message on the screen of my Officejet 6700:
    Update Recommended
    An update is available for Web Services (ePrint and Apps).
    Do you want to proceed?
    I selected Update Now, and it installed fine, or so I thought.
    I checked the web interface for the printer, and find there is a bunch of jumbled text, like the code is messed up for the web server.
    I had just finished checking the status of ink cartridges (and subsequently replaced one), therefore I fortunately still have the fully functioning webpage open on another machine, so I can tell exactly what the before-and-after is on that one page.
    On the Tools > Ink Gauge page, on the good (old) page the table says (title, first row, first column):
    Installed Cartridges
    Color | Magenta | Cyan | Yellow | Black
    Part Number
    Type
    End-of-Warranty Date (Y-M-D)
    First Installation Date (Y-M-D)
    Ink Zone
    USE
    HP
    But after updating the software, it says this:
    Print Self Test Page
    L@S#0456 | Number of Logged Events | L@S#0462 | L@S#0552 | L@S#0450
    Accumulated Media Usage
    Date
    L@S#0477
    L@S#0561
    L@S#3345
    Also, the "Order Supplies" link, with a popup text of "Order printing supplies"
    now says "Ink Cartridge", with a popup text of 'Block unwanted faxes"
    And "Print Printer Status Report" now says "L@S#2567".
    I went to the support section, and found a firmware update, but upon downloading and running it, upon finding the printer, it says it is already Up-to-date, and won't let me select it to try and re-apply the firmware update (as that's evidently what going through the touchscreen menu has already done).
    Do I need to just restore to factory settings? I would think firmware wouldn't be changed by doing that. There isn't an old version of the firmware available on the product support page, to revert to an older version.
    Via the printer touchscreen menu, a printed Printer Status Report says the firmware version is MPM3CN1322DR.
    How do I force a re-install of the firmware, or get them to fix the firmware that was published on 2013-06-25?
    This question was solved.
    View Solution.

    michaelprang,
    You are unable to revert back or reinstall the firmware since it has already been downloaded and updated.
    Have you attempted to use a different web browser?
    ↙-----------How do I give Kudos?| How do I mark a post as Solved? ----------------↓

  • Last Character In Crystal Report cut off when ran via BO web interface

    I created a report in Crystal and uploaded it to the Business Objects Web Interface.
    On my detail row, the last character is getting cut off regardless of the length of the text.  Even short words like "Yes" are losing the last character, and appearing as "Ye", and there is plenty of room available between the right margin.
    The column header extends out further with no issues.
    Does anyone have a solution for this?

    Hi Dean,
    Try with this:
    Go to the following registry sub key:
    HKEY_USERS\[your security profile]\Software\Crystal Decisions\10.2\Crystal Reports\Export\Pdf
    Right-click the sub key and click New > DWORD Value. Name the DWORD value "ForceLargerFonts" and set it to the value of 1.
    Regards,
    Shweta

  • What's the best out-of-the-box web interface for a SQL DB?

    I'm developing a Java web application that will be backed by an Oracle database. Users would like a simple web interface that allows them to accomplish what they could with SQL queries without knowing SQL. The basic operations would be:
    * displaying a database table in a table format
    * downloading the table as a text or Excel file
    * customizing the columns in a table display
    * displaying a query result set in a table format
    * constructing a query using drop-down menus
    I'd probably want to program in a simplified UI for a few common queries.
    This really looks like functionality someone should have invented before me. Question: what is the right tool for me to be using? I'm surprised I haven't found something by searching.
    It looks like I could just directly write JSP, but I think something else might be simpler. I think related functionality exists in Spring, but I didn't find exactly what I'm looking for, and Spring brings a lot of other stuff also. Nothing in my application is more complicated than this, so I'd be happy to keep things simple.
    How would you write this?
    Edited by: 1010007 on Jun 5, 2013 7:22 AM

    Welcome to the forum!
    >
    I'm developing a Java web application that will be backed by an Oracle database. Users would like a simple web interface that allows them to accomplish what they could with SQL queries without knowing SQL. The basic operations would be:
    * displaying a database table in a table format
    * downloading the table as a text or Excel file
    * customizing the columns in a table display
    * displaying a query result set in a table format
    * constructing a query using drop-down menus
    I'd probably want to program in a simplified UI for a few common queries.
    This really looks like functionality someone should have invented before me. Question: what is the right tool for me to be using? I'm surprised I haven't found something by searching.
    It looks like I could just directly write JSP, but I think something else might be simpler. I think related functionality exists in Spring, but I didn't find exactly what I'm looking for, and Spring brings a lot of other stuff also. Nothing in my application is more complicated than this, so I'd be happy to keep things simple.
    How would you write this?
    >
    I wouldn't write it. I would just use Oracle's FREE Apex application which does all of that and more and is fully supported even on Oracle's FREE Express edition data database.
    http://www.oracle.com/technetwork/developer-tools/apex/overview/index.html
    >
    About Application Express
    Oracle Application Express (Oracle APEX), formerly called HTML DB, is a fully supported "no-cost" option of the Oracle Database. Oracle Application Express is certified against all editions of the Oracle Database 10.2.0.3 and above, including Oracle Database 10g Express Edition (Oracle XE).
    Oracle Application Express installs as part of the seed database installation with Oracle Database 11g.
    >
    The feature page (http://apex.oracle.com/pls/otn/f?p=4600:6:0) describes some of the major features of Apex
    >
    Browser Based
    Using only a Web browser and limited programming experience you can develop data centric applications in minutes. Browser-based development enables you to develop applications on most computers using only a modern Web browser.
    Rapid Application Development (RAD)
    Use simple wizards and declarative programming to create powerful reporting and data entry applications. You can create applications from spreadsheet uploads, or on existing database tables and views. Oracle Application Express includes SQL Workshop to create and manage the database objects that support your application.
    Application Express Components
    Application Builder - Database Applications
    Application developers use wizards to declaratively assemble applications organized in pages. Page content is organized into regions. Regions can contain text, custom PL/SQL, reports, charts, maps, calendars, web service references or forms. Forms are made up of fields (called items) which can be selected from the multitude of built-in types (such as text fields, text areas, radio groups, select lists, check boxes, date pickers, and popup list of values) or a developer can create their own types using plug-in support. Table update functionality is built-in and PL/SQL can be used to process data. Session state (or application context) is transparently managed and the user interface presentation is separated from the application logic so that the look and feel of an application can be changed simply by selected a different theme.
    Application Builder - Websheets
    Using Websheet Applications, end users can manage structured and unstructured data without developer assistance. Page sections contain unstructured data and are edited using a WYSIWYG editor. Reports provide access to database data by writing SQL. Data Grids can manage structured data without writing SQL. Adding columns, renaming column, and validations are defined using runtime dialogs. Each page and row of data grid data can be annotated with files, tags, notes, and links. Pages can contain sections as well as reports and data grids and all can be linked together providing navigation. All information is searchable and completely controlled by the end-user.
    SQL Workshop
    The SQL Workshop provides tools that enable you to view and manage database objects. Object Browser enables you to use a tree control to view object properties and create new objects. The SQL Command tool enables you to enter ad-hoc SQL. Query Builder enables you to create join queries using drag and drop. SQL Scripts enables you to store and run scripts. The Data Workshop enables you to load and unload text, DML, and spreadsheet data.
    RESTful Services
    RESTful Services allow for the declarative specification of RESTful services mapped to SQL and PL/SQL.
    Team Development
    Team Development helps manage the life-cycle of an application's development. It provides tracking and management of application features, to do entries, bugs, and end user feedback. Team Development is tightly integrated with the Oracle Application Express Application Builder. For example, edit page lists open feedback, bugs, and to do's.
    Administration
    Each Oracle Application Express workspace is a separate application development environment that is fully insulated from other workspaces. The administration component provides workspace management, including services (available schemas, space requests, and preferences), users (both developers and end-users), and workspace activity (page views, login attempts, and developer activity). Access is limited to Oracle Application Express developers who have workspace administration privileges.

  • How to make a form for input in web interface builder

    Hi expert:
        How to make a form for input in web interface builder?I have already used it to do PS planning, but I don't know how to  draw lines and checkboxes . Thanks in advance.
    Allen

    WAD:
    Open the WAD and create a new template. On the left hand navigation you will have several Web Items available. Under 'Standard' you have 'Analysis' item. Pull that into your template to the right. Under the Properties tab you need to pick the query [form/layout] that you have built in Query Designer.
    You will also find other items such as Button group, Checkbox, drop down, list box etc available. Pick and drag into the template whatever it is you require. Lets say you want a button. Under the Properties tab select the 'Command' that you require. You could use standard commands that are available there. You could also define functions and commands that you require.
    Query Designer:
    Open the QD and drag the characteristics and key figures that you require into the rows and columns of the QD. You would need to specify restrictions under the Filter tab of the QD based on the granularity of data that you require. You would need to remember that the key figures need to be made Input Ready [do this by clicking on KF and on the planning tab select "change by user and planning functions"].
    This shouldgive you a start. After you've explored it yourself a bit we can discuss further and I can certainly provide you additional details/material on these areas.
    Srikant

Maybe you are looking for

  • Solaris 10 for X86 Install issue: "Server for display :0 can't be started"

    After fixing my "can't set locale" problem I am moving onto the "Server for display :0 can't be started" issue. Checking /etc/dtc/Xerrors yields: 1) error (PID 380) : Server unexpectedly died 2) error (PID 380) : Server for display :0 can't be starte

  • Why can't I close my screen while using an external monitor?

    It goes to sleep of course. How can I change this? I'm not seeing anything in the power settings. Thanks!

  • Array of Embedded Attributes

    Is it possible to have some document definitions for a XML file that contains an array of Embedded Attributes. Perhaps something like a table: <table> <row> <cell1>..</cell1> <cell2>..</cell2> </row> <row> <cell1>..</cell1> <cell2>..</cell2> </row> <

  • Instant client

    On Windows XP, do I need adminstration rights to install the 'instant client' from oracle? I've tried to install it with a normal user. It says it's installed correctly, but when I go to the 'ODBC Datasource Administrator' and want to add it to my us

  • Date Range at Reports Section

    Hi, I am doing some Reports and my requirement is to put a Date Range with default operator as Is Between.  This functionality works in Query Groups in dynamic filters where it shows From Date to End Date. I just wanted to know if this funcationlity