DataForms Columns not appearing in SmartView

Hi All,
I created some webforms on  EPMA Planning App 11.1.2.3. When I try to open these webforms using Smartview, I am getting this error " There are no Valid Columns of Data for this form". But I can open these forms in Planning Console.
Is this a bug? Please help.
Thanks.

Suppress rows/Columns is used to suppress the missing rows/columns (yes thats what it does )
So when you get that error it means there is no data for the intersection you are trying to open.
Regards
Celvin
http://www.orahyplabs.com

Similar Messages

  • Cost Element column not appearing in IW31/ IW32 transaction

    Hi,
    In transaction IW32, in Operations Tab --> click on External Button (below shown on IW32 screen).
    Now under External, click on Services tab (1st option), here Cost Estimate column not appearing.
    We tried to add through configuration option on this window. (there shows table setting --> click on administrator, now you can see Edit system settings, here Cost Element - ESLL-KSTAR shown with TICK on Invisible checkbox).
    How can i Untick that. I tried but after activate, it again appears.
    Plz guide..

    Hi,
    Where a cost element exists on the operation External TAB, input of the same data on the service line is not allowed. In that case the system decides that this data field should not be available on the service lines. Where the is no cost element on operation then entry is allowed on service line.
    This program logic is overwriting the field configuration on the table setting for service entry grid. This is why the invisable flag cannot be changed.
    -Paul

  • Column not appearing in Answers

    Experts,
    I have a strange problem.
    I am adding a new column in presentation layer in the online rpd.
    When I am reloading the server metadata from Answers, the column is not appearing.
    Any reasons?
    parag

    Hi,
    I think if the column is not appeared in the answers for a particular Subject area, then it could be because of the permissions on the column.
    Go to presentation layer, double click on the column and checkout the object and then click on the permissions TAB and see if the permission is having (X) mark in the checkbox.. If so change it to (tick mark) which indicates it is visible for the users for reporting ..
    Then reload the server metadata and try to see if the column appears..
    Regadrs,
    Naveen.

  • Pictogram column not appearing View configuration

    Hi,
    We have created a custom Z component and have embedded it into WCC_SLS_HOME by defining a new page configuration and this works find. However the pictograms that are in the default page configuration do not appear in the new page configuration. Furthermore, the column in the configuration screen where one would normally maintain pictograms does not appear. Could this be down to the system patch level or are we looking in looking in the wrong place.
    Sergio
    System Info: SAP CRM ABAP 6.0
    SAP_ABA: Release 700, Level 0014 Highest Support SAPKA70014
    SAP_BASIS: Release 700, Level 0014 Highest Support SAPKA70014

    1) I add a document to a library hosted in the Content Type Hub ....
    Ok I create my library in my other HNSC and upload a test document which I attach to the same Content Type as above  .....
    Spot the difference!!!!!
    Freelance consultant

  • The columns not appear

    Here i want to get the columns names in the table "employee" in my database so i used databaseMetaData.getColumns(); but give me this error:
    java.sql.SQLException: Column not found
    at sun.jdbc.odbc.JdbcOdbcResultSet.findColumn(JdbcOdbcResultSet.java:1850)
    why this ?
    code:
    import java.sql.Connection; import java.sql.DatabaseMetaData; import java.sql.DriverManager; import java.sql.ResultSet; public class ColumnNamesTest {     private static final String DRIVER = "sun.jdbc.odbc.JdbcOdbcDriver";     private static final String DRIVER_URL = "jdbc:odbc:Driver={Microsoft Access Driver (*.mdb)};" +             "Dbq=D:\\my _works\\my_works_2010\\JDBC-work\\employeedb\\Database2.mdb";     public ColumnNamesTest() {         Connection connection = null;         //  Statement statement = null;         ResultSet resultSet = null;         try {             Class.forName(DRIVER);             connection = DriverManager.getConnection(DRIVER_URL);             DatabaseMetaData databaseMetaData = connection.getMetaData();             resultSet = databaseMetaData.getColumns(null, null, "Employee", null);             while (resultSet.next()) {                 String colName = resultSet.getString("Column Names");                 System.out.println(colName);             }         } catch (Exception e) {             e.printStackTrace();         }     }     public static void main(String[] args) {         new ColumnNamesTest();     } }
    Thanks

    A combination of this
    getColumnsResultSet getColumns(String catalog,
    String schemaPattern,
    String tableNamePattern,
    String columnNamePattern)
    throws SQLException
    Retrieves a description of table columns available in the specified catalog.
    Only column descriptions matching the catalog, schema, table and column name criteria are returned. They are ordered by TABLE_CAT,TABLE_SCHEM, TABLE_NAME, and ORDINAL_POSITION.
    Each column description has the following columns:
    1. TABLE_CAT String => table catalog (may be null)
    2. TABLE_SCHEM String => table schema (may be null)
    3. TABLE_NAME String => table name
    4. COLUMN_NAME String => column name
    5. DATA_TYPE int => SQL type from java.sql.Types
    6. TYPE_NAME String => Data source dependent type name, for a UDT the type name is fully qualified
    ...>
    And this
    getStringString getString(int columnIndex)
    throws SQLException
    Retrieves the value of the designated column in the current row of this ResultSet object as a String in the Java programming language.
    >
    Learn to use the API docs.

  • Why do columns not appear in the same order as the fields on my imported form?

    Hello All
    I am an Acrobat X user and make numerous forms through Acrobat.  However, when I import the file into FormsCentral, the order of the fields in the table do not correspond to the order in which they appear on my form.  The fields on my form are in a calendar format so they appear from left-to-right.  I'm wondering if when I do the import, it is read by FormsCentral from top-to-bottom instead or is it random.  It's a real inconvenience and severely inhibits my workflow when I have to rearrange the columns to work with the data.  Any suggestions or insight would be appreciated.
    Thanks
    Daryl

    Files have no order. File management programs like the finder or windows explorer will display files according to your selected display sort. Typically alpha by file name, date created, size, date modified. So to view them in a selected order you need to sort on an attribute that accomplishes that. The easiest usually is to export photos using the sequential naming option then displaying in alpha order
    LN

  • Document ID column not appearing on dispform.aspx

    Hi, when activating this feature at site collection level, the column appears for new library views, but not for the,
    dispform.aspx
    I think this doesn't apply for newform and editform.aspx since you can't edit that part.
    Now, we migrate this site from SharePoint 2007 to 2013, could it be that after migrating and activating this new feature, it can't update that form since that was migrated.
    Any other thoughts?

    Nope.  you're stuck.  That's the way it is.  Two possible solutions:
    Modify the dispform.aspx to include this.  Kinda difficult though now that the page View has been dropped from SharePoint Designer 2013.  You'll have to work in code view only.
    Add a new column.  Create a workflow that is triggered on change that copies the ID value to the new column.  Display the new column on the dispform.aspx. 
    General

  • Column not appearing in the output

    Hello All,
    I need to make changes to the existing workbook. "Line amount" (Detail)cloumn needs to be manipulated
    Line amiountwas selected in the list. But in the output i am not able to see that line amount in the output.
    But if select line amount (sum) i am able to see. Line amount(detail) i am not able to see.
    Please let me know the reason for this.
    Kind Regards,
    Kumar.

    That seems strange to me. Perhaps some kind of security thing. Though you would think if you can see the SUM aggreagate, you should be able to see the DETAIL. Can you even see the DETAIL to pick it from the item list (open the item to see its available choices)? Maybe you are not opening the item to see the aggregate choices and just picking the item, and it is giving you the default choice, which would be SUM most likely? If you can see the DETAIL choice and you pick it, but you don't see it in the query results, I would contact Oracle Support. I would say in such a situation that you must have run across a programming error.
    John Dickey

  • Planning form some columns set to hide but appear in SmartView

    I have a Planning form with about 30 columns. Some of these columns are set to hide. The hidden columns still appear in SmartView. How can I get them to hide in SmartView?

    Hi,
    May I ask you why you have these columns in the form that you actually want to hide?
    I was able to recreate your problem. In web the columns are hidden but in Smartview it comes up.
    Regards,
    Amol
    Edited by: AmolDatt on Apr 29, 2009 11:20 AM

  • HT1414 HOw do I back up and restore If I plug my ipod in and it does not appear in the devices column. I have a white screen and i'm trying to fix it and nothing is working :(

    How do I back up and restore my ipod touch if when i connect it to itunes It does not appear in the devices column? I have a white screen and have tried holding down the wake/sleep and home buttons and that is not working. Please help

    Take it in for repair/replace to your local Apple retailer.

  • New columns in the table control do not appear

    Hi,
    We have a requirement to add two fields(columns) in a table control  for a transaction upon clicking Create button and those two fields should be editable. We have added the two fields in the table control. But, they do not appear in the transaction ( If I delete an existing column, then I am able see the new column).  Have checked everywhere, but not sure if I am missing something here. There is no hide statement used.
    Appreciate help on this.
    Thanks,
    Pavan

    Hi Pavan,
    What I understood is you are adding fields to the table control dynamically.\
    For that you have to use field-symbols to add fields to the work area dynamically.
    ( If this is not your actual requirement share your code with me I will try to solve it. )
    Regards,
    Swaroop

  • "Hyperion" menu item does not appear in Excel after SmartView Installation

    Hi to all! When I first installed SmartView, everything was ok - "Hyperion" menu item appeared in Excel and I successfully established connection to Planning and worked with data in Excel. Then, once upon a time I happened to select all data through Ctrl+A in the data form open in Excel and tried to copy it to another worksheet in the same workbook, Excel threw out a message about some serious error and informed me that the Hyperion Add-on would be removed. So it was removed in fact. When I was reinstalling Smart-View, all the installation went smoothly but the "Hyperion" menu item did not appear in Excel again. I tried to reinstall both Excel and SmartView and rebooted the system several times but the Hyperion menu item still does not appear in Excel. Can anyone hint me on how to solve this? Thanks a lot in advance!

    Hi, John! Thanks a lot! Your link led me to the thread in which the last post had the link Re: Smart View errors in Excel?! containing the "low-tech" 's instructions. It was these instructions that pulled me from underwater! Thank you so much and to that guy too! :)

  • In j1iin in balances column ECS balance is not appearing

    Hi all,
    In J1iin  we have balance column, in which we can see the excise balances available for BED . ECS, SECS etc., Here BED , SECS balances are seen, but ECS balance is not appearing. Please update whether any note has to be updated

    Hi
      This happens if you have different Excise Registration Number assigned to Series Group and Excise Group.
    Ensure that you have maintained the same Excise Registration Number for Series Group and Excise Group.
    Also Please check whether you have activated NCCD indicator for Excise Registration Number.
    Regards
    MBS

  • The new column designed not appears in the form

    Dear All Gurus/Experts,
    I created new column directly in the database stored in the SQL server 2000,in table IGN1, right click --> select design table, then right click --> insert column, I write U_copqty, numeric data type, 9 is its length and allow nulls check mark.
    I can't understand why the field is not appeared in the form settings like other columns so that I can thick and make it appear in the form IGN1 (receipt from production). I have read development training files but I am confusing if it is really need VB.net to do that. I also know about user defined field but it doesn't what I need because I have created UDF in the production order row but I can't find it in the receipt from production form, so I just did create the new field/column directly in its database but I fail to make it appear in the form settings when I need it to be available in the receipt from production form. would you pls help me ? I appreciate your answer. TIA
    Rgds,
    Steve

    Hello Steve,
    The reason you can not see the directly added field is because that there is another table CUFD which holds all the User Defined Field information. So, you need to add a new record in that table. However, the approach is really not SAP recommended. Directly handling database could be very risky. Please create the user defined field according to the steps.
    Regarding why you can not view the field you created, did you create a row or document level field?
    Hope this helps,
    Nick

  • My device icon in the left column does not appear. so, I can not make the sync.

    my device icon in the left column does not appear.
    so, I can not make the sync

    Device Not Recognised 
    For PC  >  http://support.apple.com/kb/TS1538
    For Mac  >  http://support.apple.com/kb/ts1591

Maybe you are looking for

  • How do I create a backup DNS server?

    Hi All, I've got my production server (Xserve Intel) running 10.6 and it is our primary DNS server. I've gotta take it down to do some work on it, but by doing so, no one in the organization will be able to access the internet. I'd like to set up my

  • How to get all records of 0041 for a given PERNR

    I have to display Most Recent Hire and Original Hire date. So I am using this below code:   0041 - Date Specifications     rp_provide_from_last p0041 space pn-begda pn-endda.     IF pnp-sw-found EQ '1'.       MOVE: p0041-dat01 TO wa_final-dat01,     

  • How to identify the last usage of  8i database?

    Hi All, We are in process of decommissioning our old databases. I need to know the last usage of a 8i database. Is the any v$ views or DBA views to identify that? Thanks Aruna

  • GPS on Nokia N85 in English

    I'm currently living in Israel and have a Nokia N85 which has GPS in Hebrew. Can anybody tell me how I get GPS in English. It is possible because I have had it in the past but can't work it out now. I have to drive alone to Jerusalem tomorrow and nee

  • C4385 print quality problems in Windows 7

    After an install of upgrade Windows 7 Ultimate from Vista 64, the printer will not work properly. I have installed the new drivers from HP. It seems to work OK on text and printing emails, etc. But, when printing a JPG, the top 3/4 of the picture pri