No new rows or columns because the axis is not input-ready

Hi Gurus,
I have a problem when I am modelling the Order and Revenue Planning.
In my model I have Base Unit and Currency as Unit characterstics.
When I take Currency as INR and Base Unit Multiple Values then I can create a new row in my planning layout.
If I take currecy also multiple values, system is throwing following message "No new rows or columns because the axis is not input-ready" and not allowing me to create new rows(rather it is not displaying the new rows). But Query is Input Ready.
Could any one suggest solution for this.....
Waiting for your reply......
Thanks and Regards,
Arun.

Hi Arun,
I know exactly what you are trying to do.  Don' t waste your time any further on it.   The story would have been different if the entire layout was on a single currency(header or filtered).
For your problem....
First of all you cannot use 0AMOUNT.  As it will not allow you to seperate 0Currency from 0Amount as it is already defined in the 0Amount Infoobject. Even if you try to add 0Currency AGAIN as a "separate" characteristic in the row of Query.  So you will have to now provide 2 currency values to 0Currency(in the row) as well as 0Currency in the 0Amount (which you cannot select in Query Designer).  Because the system will still be looking for 0Currency value embedded to 0Amount.  The only way you can do is by using a Custom Key Figure with No Dim.  I mean, ZAmount with no Unit/Currency in the infoobject definition. 
Let Currency be an attribute of Order.  Display this currency attribute in the row of the layout, just so the users know which currency they are going to enter values on.  It(currency) is only for informational purpose and not to think that the values entered initially by the users are stored along with the same currency.  And then after the user enters values on this ZAMOUNT, upon save use Fox behind the scene to copy this over to real "0Amount".  Fox should read the Order currency(attribute) and store the currency into along with the 0Amount(and 0currency).  All other Char stored by user should be copied as is in the Fox.
The same logic applies to 0Quantity(with unit). 
Hope this solution works for you.  Let us know if this is possible.
Rocky

Similar Messages

  • No new rows or columns because the axis is not input-ready - error

    hi,
    can any one tell me how to solve this.
    i am able to change the data but not able to add new rows or columns to the analysis item.
    i am getting following error
    No new rows or columns because the axis is not input-ready
    how to solve this.
    please suggest me.
    i will assign points.

    Hello venkat,
    robably the definition of rows and columns is to complicated for the system to read.
    Do you want to add a new row or a new column?
    how are the existing rows or columns defined?
    It does work, if you have included only characteristics into row / column and you are using key or key+text to be shown in your query.
    regards
    Cornelia

  • Warning: No new rows or columns because the axis is not input-ready

    Hello all,
    I have a planning application that plan against multiple years. This is done using a query that uses an analysis web item with its properties set to enable multiple new rows e.g. 2 new rows. Right now I have an issue whereby those 2 new rows will only appear if I restrict the report to a single year and if I were to select 2 or more years I get this warning message u201CNo new rows or columns because the axis is not input-readyu201D and those 2 rows will disappear.
    Anybody have any idea whatu2019s going on? Thanks.

    Hi,
    note 1149346 explains when new lines are possible:
    https://service.sap.com/sap/support/notes/1149346
    Regards,
    Gregor

  • 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);
    }

  • I have the iPad 2 16GB, bought it in August 2011, I worked perfectly but in mid-August 2012 I took her to the store because the microphone did not work reviewed and changed me, but to my surprise that the new iPad had the problem is disconnected WIFI sign

    I have the iPad 2 16GB, bought it in August 2011, I worked perfectly but in mid-August 2012 I took her to the store because the microphone did not work reviewed and changed me, but to my surprise that the new iPad had the problem is disconnected WIFI signal I have to be glued to the router, and I did everything he says is supported by the Apple and all other pages and forums regarding this problem is not solved and always disconnects when connected always disconnects again!! passing will be settled as no longer factory warranty although it has neither the three months I renewed new, please help because the investment has been great and I can not use only as "a mirror" I'm waiting a true solution, thanks ....
    Sincerely,
    Catlos

    This does help me because I am pondering on wether to buy an airport extreme to solve my ipad 2 connection woes.  I have an extremely old router dLink 524....but I have NEVER had any problems with it at all ever.  My xbox connected great to it and netflix ran flawless through my xbox.....now I have an ipad2 and an apple tv and they are BOTH having horrible connection problems.  I have read most of the forums on how to fix it by changing the settings on my router but since mine is so old I couldn't do some of the suggested solutions.  So here I am debating on whether to spend all this $ on an airport extreme?  I am just hoping that if I go and purchase this, my connectivity issues problems will go away like yours did.  Just wondering if you have ATV as well and if the AE solved its problems?  I have read about AE solving ipad2 wifi problems, I'm just hoping it will solve my ATV as well.
    **Glad they didn't "moderate into extinction" your post yet, lol, Thank

  • Rows to columns/Transpose the records Query and Display output

    hi ,
    can anyone help me query this and transpose it to this format?
    i am still a beginner in sql.
    thanks for help!
    Rows to columns/Transpose the records Query and Display output
    id     startdate     endate                    
    1111     1/2/2001     11/3/2001                    
    1111     2/5/2002     4/3/2002                    
    1111     2/6/2000     2/5/2001                    
    3333     5/2/2003     11/3/2003                    
    3333     6/2/2003     12/3/2003                    
    3333     2/6/2005     2/5/2005                    
    desired output     
    id     startdate1     endate1     startdate2     endate2     startdate3     endate3
    1111     1/2/2001     11/3/2001     2/5/2002     4/3/2002     2/6/2000     2/5/2001
    3333     5/2/2003     11/3/2003     6/2/2003     12/3/2003     2/6/2005     2/5/2005

    Have you only 3 dates for each id ?
    So, try :
    SQL> l
      1  with tbl as
      2  (select 1111 as id, to_date('01/02/2001','DD/MM/YYYY') startdate, to_date('11/03/2001','DD/MM/YYYY') enddate from dual union all
      3  select 1111 as id, to_date('02/05/2002','DD/MM/YYYY') startdate, to_date('04/03/2002','DD/MM/YYYY') enddate from dual union all
      4  select 1111 as id, to_date('02/06/2000','DD/MM/YYYY') startdate, to_date('02/05/2001','DD/MM/YYYY') enddate from dual union all
      5  select 3333 as id, to_date('05/02/2003','DD/MM/YYYY') startdate, to_date('11/03/2003','DD/MM/YYYY') enddate from dual union all
      6  select 3333 as id, to_date('06/02/2003','DD/MM/YYYY') startdate, to_date('12/03/2003','DD/MM/YYYY') enddate from dual union all
      7  select 3333 as id, to_date('02/06/2005','DD/MM/YYYY') startdate, to_date('02/05/2005','DD/MM/YYYY') enddate from dual )
      8  select id, max(decode(dr,1,startdate)) start1,
      9             max(decode(dr,1,enddate)) end1,
    10             max(decode(dr,2,startdate)) start2,
    11             max(decode(dr,2,enddate)) end2,
    12             max(decode(dr,3,startdate)) start3,
    13             max(decode(dr,3,enddate)) end3
    14  from (select id, startdate,enddate, dense_rank() over (partition by id order by startdate) dr from tbl)
    15* group by id
    SQL> /
                                                    ID START1   END1     START2   END2     START3   END3
                                                  1111 02/06/00 02/05/01 01/02/01 11/03/01 02/05/02 04/03/02
                                                  3333 05/02/03 11/03/03 06/02/03 12/03/03 02/06/05 02/05/05
    SQL> HTH,
    Nicolas.

  • When pulling down a long pulldown menu, the menu, instead of starting a new row, will extend past the bottom and behind the browser so that I can't navigate to an item that's below/behind the screen.

    When pulling down a long pulldown menu, the menu, instead of starting a new row, will extend past the bottom and behind the browser so that I can't navigate to an item that's below/behind the screen. FF should be making a second row for these long pulldown menus, right?

    Nope, there is no second row. There should be a scroll arrow "button" at the bottom and the top of that drop-down to allow you scroll, or you can use the scroll wheel on the mouse scroll further down (or back up).

  • My photoshop elements and Lightroom serial numbers won't work for my new mac. I bought these softwares via download on my windows laptop but returned that laptop because the quality was not great. I decided to buy a mac and now can't use my serial numbers

    my photoshop elements and Lightroom serial numbers won't work for my new mac. I bought these softwares via download on my windows laptop but returned that laptop because the quality was not great. I decided to buy a mac and now can't use my serial numbers to download the software.

    Moving this discussion to the Downloading, Installing, Setting Up forum.
    Stephylei you will want to download the Mac versions of the installation files.  If you purchased the software from Adobe, and choose the download option at the time of purchase, then the download will be available under your account.  You can find more details at Find a download link on Adobe.com.

  • After installing new OS i can't type a login and password because the font is not supported. DO NOT KNOW WHAT TO DO!!!!HELP PLS?!

    after installing new OS i can't type a login and password because the font is not supported. DO NOT KNOW WHAT TO DO!!!!HELP PLS?!

    Hello Pete from another old guy,
    It sounds like you have an older iMac than the 2006 and newer model this forum covers. The problem is that, in 2006, Apple changed from PowerPC to Intel processors and third-party developers soon stopped making new software for the older processors. That's why you cannot upgrade Flash player--the current version requires a Mac the "2006 and later" processor.
    However, not having a current version of FlashPlayer should not affect your ability to download. If you try downloading, do you get an error message or does something else happen?
    Do you have another web browser like FireFox or Camino on your computer?
    but would love to get my MAC back up to date and running right.
    Well, "running right" may be doable but "up to date" may not be. You are already at as high a Mac OS level that a pre-2006 Mac can use.  We need to pin down your variant to make recommendations. From your Apple menu at the left end of the menu bar, do "About this Mac":
    That brings up this window:
    Let us know what yours say for "processor." The two choices are "PowerPC" as in the example, or "Intel." If you  have an Intel processor, you have more options available.
    Awaiting your report,
    Allan

  • Got new iPad Air tried to setup using iCloud but because the iOS was not up to date I couldn't setup as same as old iPad

    Got iPad Air and 5s and tried to use iCloud to set them up but because the iOS was not up to date I had to set up as new, and now I can't get them to be the same as old phone and ipad2. I have got some contacts and some calendar entries bug no apps or pictures etc

    What you would do is set up your new one. Don't try to restore it from the backup, just set it up, update it and then wipe it (settings, general, erase all content and settings)
    then set your new ipad up again but this time choose to restore it from the backup of your old one.
    Basically you set it up just enough to download and update it, then you wipe it and restore it.

  • Error Message: "Skype can not start because the system is not available"

    Try to reset all Skype settings. Quit Skype or use Windows Task Manager to kill any Skype.exe process. Go to Windows Start and in the Search/Run box type %appdata% and then press Enter or click the OK button. The Windows File Explorer will pop up. There locate a folder named “Skype”. Rename this folder to something different, e.g. Skype_old. Next go to Windows Start and in the Search/Run box type %temp%\skype and then press Enter or click the OK button. Delete the DbTemp folder. Restart Skype. N.B. If needed, you will still be able to re-establish your call and chat history. All data is still saved in the Skype_old folder. 

    Okay!
    I'm newbie here, but it doesn't matter. I dont want to do here anything else, just write off my opinion about the Microsoft's "new" Skype, and I hope they will read...
    This is a cropped image - of course hungarian, because I'm hungarian, but I think many of us could see this as well. How this is possible? "The Skype can not start because the system is not available" *** What kind of system? The Skype was on a P2P system, where is impossible that the system is not available! This is why the skype was much better than the Microsoft's messenger. Then they bought it, and make it wrong...
    I found a solution for this problem, this can happen if my client is not updated. But IT IS!
    How does it works? Can we use the **bleep** Skype how we would like to use? Or this time we need to find an other application (like Viber), and using that while they not buying that as well, just because that is better?
    Edited to conform with the Community Guidelines
    Subject/title edited to better reflect post content.

  • HT1766 At the end of a synch I am getting the following error message "iTunes could not back up the iPod because the backup could not be saved on the computer".  Any ideas on how to resolve?

    At the end of a synch I am getting the following error message "iTunes could not back up the iPod because the backup could not be saved on the computer".  Any ideas on how to resolve?

    See:
    iOS: Troubleshooting backup issues in iTunes
    Try going to iTunes>Preferences>Devices and delete the existing backup so iTunes creates an entire new one vice changing the existing one.

  • ITunes could not copy "Beethoven's Symphony No 9 (from "A Clockwork Orange")" to iPhone "Heywood Floyd's iPhone" because the file could not be read or written

    Hello, i am having the following problem...
    "iTunes could not copy "Beethoven's Symphony No 9 (from "A Clockwork Orange")" to iPhone "Heywood Floyd's iPhone" because the file could not be read or written" [ ... and yes, Heywood Floyd is an avatar name..]
    With this...
    a. it occurs when I try to synch my iphone with iTunes.
    b. I have tested the "Beethoven's Symphony No 9" files that I have found on my iTunes, and my iPhone, as there is a copy of "Beethoven_ Symphony No. 9, _Choral_" folder that is the concert from Bernard Haitink & London Symphony Orchestra;
    c. This is where is get weird, a sort of Jack Torrance moment, they only file related to "A clock work orange" is 06 A Clockwork Orange - Ode to Joy.m4p...
    So what is happening, and how can I resolve this, as I am not able to synch between my mac and my iPhone....

    Check the media source drive for errors.
    See also Repair security permissions for iTunes for Windows. Not sure it is relevant but can't hurt.
    If iTunes is confused about what media is and is not on the device take these steps:
    Backup the device.
    Restore as a new device.
    Restore from the earlier backup.
    tt2

  • Win8 Pro Hyper-V Error : Virtual machine could not be started because the hypervisor is not running

    Hello,
    Recently in Dec I bought a new desktop PC.
    HP ENVY Desktop h8-1420t
    CPU & ChipSet:   Intel Core i7    Intel Z75
    I have Windows 8 Pro and installed Hyper V but cannot start the virtual machines. I get the following error message: Virtual machine 'zzzz' could not be started because the hypervisor is not running
    I followed these steps to enable Hyper-V:
    1. Upgraded to Windows 8 Pro
    2. Tried to add Hyper-V feature but Hyper-V Platform was grayed out
    3. Enabled Virtualization in the BIOS - security configuarion
    4. Cold booted Computer
    5. Added the Hyper-V Platform Feature
    6. During the restart machine was in forever state spinnign state, did a manual reboot
    7. Disabled Virtualization in the BIOS again
    8. Successfully Re-Booted the Computer now Hyper V manager was available
    9. Configured Hyper V network to use external network
    10. Created a new VM through the Hyper-V Manager
    12. Tried to boot up teh newly Created VM and I get this error message:
    Virtual machine 'zzzz' could not be started because the hypervisor is not running
    Any solutions for the error I am seeing above?
    Similar problems are discussed here:
    http://h30434.www3.hp.com/t5/Desktop-Lockups-Freezes-Hangs/Cannot-boot-if-HP-ENVY-Bios-Virtualizatio...
    Thanks!!

    Same Problem Here - did you discover any answers?  I may have to return the system if it can't do hyper-v

  • Could not complete your request because the file is not compatible with this version of Photosho

    I just tried to open a file that I had saved last night and I got the message:
    "Could not complete your request because the file is not compatible with this version of Photoshop."
    Normally I would just chalk it up to a corrupt file and redo the project but I've had this happen to me 5 or 6 times in the past two weeks. I dont know what to do!
    Things I've tried that haven't work:
    Opening in ImageReady and Gimp, changing file extention to .tiff, dropping into photoshop as smart object, opening in Illustrator, re-installing photoshop, deleting old actions/plug-ins that might glitch up the system.
    I just started a new job and I'm working on a 2.5GHz Mac Mini (OSX ver. 10.7.4) with Photoshop CS6 (16-bit).
    I am NOT saving over a server or anything like that.
    I did NOT close photoshop too quickly last night.
    I do NOT have any Nortan Anti-virus anything.
    I've spend hours reading up on this and every fix that I've found doesn't work.
    I've been using photoshop for YEARS and I've NEVER had this problem before.
    Please HELP!

    There is a problem with the latest update, Mac, and saving a PSD file.  Apparently it may not open in CS6, but will open in other versions.  They are working on patch.

Maybe you are looking for

  • How to creating a web banner in Flash CS3?

    Hi all, I'm very new to Flash CS3. Can anyone give me a step-by-step instructions on how to make a banner for a web-site? Or a link were i can find step-by-step instructions? I have googled it but found no real help. I have tryed "Youtube" hoping to

  • Toshiba Virtual Store works perfectly after update!

    Hi after using my journey, I realized that I have not made ??the right choice. But when I saw your discussions, I told myself that I have nothing to lose if I do an update. I followed the instructions to the letter and " MIRACL" Toshiba virtual store

  • Save a cluster in a file

    Hi! i'm trying to save a file with some data of my application. This Data is a cluster of some boolean data, some i32 data, some array of i32 and some string data. I use OPEN_CREATE_REPLACE File.vi, WRITE FILE and CLOSE FILE to create and replace fil

  • 5610 expressmusic prob

    i have a prob with my 5610...in where...while i using camera or video cam...in few time then it getting stuck its say..."operation fail cant save to memory" so i shut off my 5610 then i open it again...my phone screen getting blink-blink like switch

  • HT5622 Can I use a reloadable prepaid credit card at the itunes store?

    Can I use a reloadable prepaid credit card at the itunes store?