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.

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

  • 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

  • Changes to Derived Logical Column not reflected in Answers

    Before I go off my rocker and stab myself with my IPhone lightsabre... :-)
    I created a new logical column for an existing table in my BM, deriving from an existing column (a datetime field called ESTIMATEDCLOSE) as follows:
    MONTHNAME(Sales.OPPORTUNITY.ESTIMATEDCLOSE) || ' - ' || CAST(Year(Sales.OPPORTUNITY.ESTIMATEDCLOSE) AS CHAR(4))
    ...which should give me something like "Jan - 2008". The problem is that it returned something like "2008/01/31 00:00:00" in Answers - completely unexpected.
    I decided to start out small and try something simpler, changing my derived column to be only Sales.OPPORTUNITY.ESTIMATEDCLOSE. This returned "2008/01/31 00:00:00" in Answers - sort of expected.
    Then I changed it to MONTHNAME(Sales.OPPORTUNITY.ESTIMATEDCLOSE). This also returned "2008/01/31 00:00:00" in Answer!!!
    It almost seems as if a derived logical column is cached in some weird way and changes to the formula is not reflecting in answers. Thinking that something so simple must work and I made a simple mistake somewhere I have spend a good part of the past day playing around with this and trying every possible solution I can think of - no luck. The odd thing is that I would rename my logical column and this will be reflected in Answers, but changes to the derived expression is not reflected.
    - I deleted the column and started all over - no luck
    - tried creating derived columns using different datetime expressions or even just concatenating strings to each other - no luck.
    - Restarted all the Oracle services, thinking it's a cach'ing issue - no luck.
    - I rebooted the server - no luck.
    Once, when I started out with only MONTHNAME(Sales.OPPORTUNITY.ESTIMATEDCLOSE) I got back correct values in Answers (Jan, Feb, Mar..) and I thought the problem was finally gone. So I added || ' - ' || CAST(Year(Sales.OPPORTUNITY.ESTIMATEDCLOSE) AS CHAR(4)) to the derived formula. Guess what, Answers kept on giving me back only the Month names, completely ignoring my updated formula.
    Anybody else ran into this problem? Something so simple should surely work...

    John,
    Yes, cleared the cache (from Dashboard Administration) and also used nqcmd Call SAPurgeAllCache. Restarted BI Server. Still no luck.
    I tried your formula and then only got back "2008/01/31" (just the date without the timestamp) - very strange.
    Then I noticed the following amazing thing (by accident):
    I started with a request in Answers that does not contain my derived column and then add my derived column to the report. The text would be all wrong in this column (Jan, Feb, March). Then I add the same column again to the report and the second added column will magically show the correct strings (Jan - 2008) !!! Even stranger is that the moment I added the same column again to the report, the text on the first column would also magically jump to the correct values (Jan - 2008).
    I did a bit more testing and created a blank request and added my derived column as the only column - this time it will show the correct values immediately. It does seem like it's tied to the content already in the request. I went a step further and saved my buggy request and added it to a Dashboard - it worked perfectly in the Dashboard.
    Must be something buggy here in Answers when working with derived columns. I'm on 10.1.3.4...

  • 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

  • OBIEE: Criterias not appearing in Answers query

    Hi All,
    I am trying to include two criterias based on date conditions in Oracle Answers but when I look at the query generated by BI server, I can't see the criterias included in where caluse.Please can u help!
    Criterias are something like this:
    CAST("Workorder Production Dimension".Required AS DATE) <= CAST("Partner Dimension".START_DATE AS DATE)
    and CAST("Workorder Production Dimension".Required AS DATE) >=timestampadd(sql_tsi_day,-1,CAST(CURRENT_DATE AS DATE)) AND CAST("Workorder Production Dimension".Required AS DATE) <=timestampadd(sql_tsi_day,4,CAST(CURRENT_DATE AS DATE))
    There are two more criterias I have put in answers and these are appearing in the backend query:
    Extid contains any Catchup
    and Name is not equal to / is not in BT Cardinal
    Regards,
    Neha

    FYI: when you use current_timestamp as any col exp no need to clear the cache.
    I assume your interpretation might be wrong and without sharing the log its hard to tell. I haven't seen any issues related to log.
    thanks
    Edited by: Srini VEERAVALLI on Apr 2, 2013 8:12 AM
    Try to update your posts, that helps you to get responses :)
    Edited by: Srini VEERAVALLI on May 8, 2013 10:40 AM

  • HT5312 Link does not appear reset answers questions of confidentiality

    Technical support at Apple
    I have not shown a link reset answers questions of confidentiality
    Helped me to re-set answers and thank you

    Most of the people on these forums, including myself, are fellow users - you're not talking to Apple or iTunes Support here.
    The send reset info option only appears if you have a rescue email address (which is not the same thing as an alternate email address) set up on your account - if you don't get that option then that implies that you don't have one. As you can't add one until you can answer 2 of your questions then see if this user tip helps you get the questions reset : https://discussions.apple.com/docs/DOC-4551
    e.g. you can try contacting iTunes Support : http://www.apple.com/support/itunes/contact/ - click on Contact iTunes Store Support on the right-hand side of the page, then Account Management , and then try Apple ID Account Security
    or try ringing Apple in your country and ask to talk to the Accounts Security Team : http://support.apple.com/kb/HE57

  • 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

  • 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

  • Answers - Analysis and Interactive tab not appearing in Answers

    Hi,
    I have installed OBIEE 11.1.5.0 recently. I am able to connect to the presentation services fine.
    But I dont see the Analysis and Interactive tab when I click on New. All I see is 1. Published Reporting 2. Actionable Intelligence.
    I dont see a place where I can choose my subject area. Am I missing something here.
    Any help would be greatly appreciated.
    Thanks!
    Anand

    Hi,
    I hope your current logged in User have BIConsumer Role. if you want to do analysis you must have BIAuthor or BIAdministrator role so map your current users into that role then it will work.
    just go to Weblogic EM (FMW) -->application roles-->change it here..
    THnaks
    Deva

  • HT5312 can you please send the answers to my sercurtiy questions to my email becuase the option to do so does not appear.

    can you please send the answers to my sercurtiy questions to my email becuase the option to do so does not appear.

    The answers are not sent to your rescue email.  A reset link is sent.  If you are not receiving the link to reset your security questions (not the same email as your AppleID email address), you should call applecare and ask for account security.

  • 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

Maybe you are looking for