Error in Dropping columns from Subject Area to selected Columns section

While Dropping columns from Subject Area to selected Columns section in Analytics nothing is happening.There is no error in the RPD.I am using OBIEE 11g and windows7.I am also getting page error like below:
Webpage error details
User Agent: Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0)
Timestamp: Tue, 4 Sep 2012 08:31:07 UTC
Message: 'kmsgPickerUIJSCantAddColumns' is undefined
Line: 1
Char: 1781
Code: 0
URI: http://localhost:7001/analytics/res/b_mozilla/picker.js
Message: 'kmsgPickerUIJSCantAddColumns' is undefined
Line: 1
Char: 1781
Code: 0
URI: http://localhost:7001/analytics/res/b_mozilla/picker.js
Can you guys please help?

That error usually means it is still mapped, maybe it is used in another interface if you say the mapping has definitely been removed.
You can expand the datastore > Used In > "As a Target" or "As a Source" or "In a Package" - that should tell you if it being used anywhere else.
Cheers
John
http://john-goodwin.blogspot.com/

Similar Messages

  • Can we hide the tables and columns from subject areas in the front end

    Hi,
    Is there any way to hide the tables and columns from the subject area in front end.I need to create a report with some tables which the user does not want to see.So after creating the reprot can I hide those tables and columns in the front end

    Hi,
    Your question is not that clear to me...do you want to hide the entire table/column that dont want to show up in the front end then you could do in Presneation Layer in the RPD by going Permissions in the property of that object.
    But if you want to hide the column in the report that can be visible in the subject Area: go to column properties -> Column fomat...thereis Hide option.
    Can you please elaborate your question...what exactly you are looking for...
    --SK                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

  • Merge statement - update multiple columns from a single sub-select

    Is it possible to write in 10gR2, a MERGE statement, with UPDATE for multiple columns from a single sub_select?
    like this:
    MERGE INTO tableA
    using ( select * from temp) tmp
    on( tableA. col1 = tmp.col1)
    when matched then
    update set  ( tableA.col5,
                       tableA.col6,
                       tableA.col7) = ( select sum(col2), sum(col3), sum(col5)
                                                                                 from tableX
                                                                                where tableX.col1 = tableA.col1...)

    Hi,
    The USING clause is not a sub-query, so it can't reference columns from tables that are not in it.
    Include tableA in the USING clause if you really need to refer to it there. (It's not obvious that you do.)
    As always, it helps if you post:
    (1) The version of Oracle (and any other relevant software) you're using
    (2) A little sample data (just enough to show what the problem is) from all the relevant tables
    (3) The results you want from that data (In the case of a DML statement, such as MERGE, this will be the state of the tables when everything is finished.)
    (4) Your best attempt so far (formatted)
    (5) The full error message (if any), including line number
    Executable SQL statements (like "CREATE TABLE AS ..." or "INSERT ..." statements) are best for (2).
    If you can present your problem using commonly available tables (for example, tables in scott schema, or views in the data dictionary), then you can omit (2).
    Formatted tabular output is okay for (3).

  • Drag&drop columns no longer works for selected columns in EA3

    Hi
    drag&drop from navigator to build select statements in EA3 uses all columns of the tabl instead of the selected ones!
    Best regards
    Joe

    It's working for me in our current dev build, if it's broken in EA3, it's since been fixed.

  • Drag and drop images from the OS or select images over filebrowser

    Hello,
    I want to create an image upload tool in JavaFX with similar functionality like Jumploader (http://jumploader.com/). The users should be able to select images from the filesystem that will be resized and uploaded to their website, similar as in Facebook. The difference is that I want users to be able to crop images directly in my application. This is something, other upload tools do not offer.
    I was searching weeks on the web trying to find a sample on how to drag and drop images in to a JavaFX 1.3.1 app or also to create a file browser. I have found many examples but they seem to be outdated. Is it to early yet to try and start projects like these with JavaFX as JavaFX is still under development? Or can anybody lead me in to the right direction?
    Thanks,
    Chris

    To be more precise, you can setup a JComponent or JPanel on top of your JavaFX nodes that has a TransferHandler that can convert the (AWT/Swing) images dragged to the app to JavaFX image and then insert it into the underlying node.
    As for the file chooser itselft: ListView and the JavaFX composer can allow you to create one quite easily. TreeView can aslso be used to a lesser extend (still a big buggy). For both of these, there are small bugs in the Cell API that may (or may not) prevent from displaying a proper thumbnail in the cells.
    You can also use a regular JFileChooser if you do not mind the dialog box having a different LnF from the rest of your application.

  • Best way to join 2 columns from table A to same column in Table B?

    Hi,
    This is a simplified example of the query I'm trying to write.
    I have two tables - PIPELINE (which includes columns CREDIT_RECEIVER and CREATOR) and EMPLOYEES (which includes columns EMAIL and LOB).
    I want to write a query which joins PIPELINE.CREDIT_RECEIVER with EMPLOYEES.EMAIL to return LOB as "CREDIT_RECEIVER_LOB".
    I also want this query to join PIPELINE.CREATOR with EMPLOYEES.EMAIL to return LOB as "CREATOR_LOB".
    Currently, I am doing a left outer join on EMPLOYEES.EMAIL = PIPELINE.CREDIT_RECEIVER to get "CREDIT_RECEIVER_LOB", and calling a function GET_LOB(PIPELINE.CREATOR) (defined below) to get "CREATOR_LOB".
    Query:
    Select PIPELINE.ID as ID,
    PIPELINE.CREDIT_RECEIVER as CREDIT_RECEIVER,
    PIPELINE.CREATOR as CREATOR,
    EMPLOYEES.LOB as CREDIT_RECEIVER_LOB,
    GET_LOB(PIPELINE.CREATOR) as CREATOR_LOB
    FROM PIPELINE
    LEFT OUTER JOIN EMPLOYEES ON PIPELINE.CREDIT_RECEIVER=EMPLOYEES.EMAIL
    Is there a more efficient way to write this query? This query is so slow that it usually times out on me.
    Thanks,
    Forrest
    GET_LOB definition
    create or replace function "GET_LOB"
    (vemail in VARCHAR2)
    return VARCHAR2
    is
    begin
    DECLARE vLOB VARCHAR2(30);
    BEGIN
    SELECT LOB INTO vLOB FROM EMPLOYEES WHERE email = vemail;
    return vLOB;
    END;
    end;

    Select PIPELINE.ID as ID,
           PIPELINE.CREDIT_RECEIVER as CREDIT_RECEIVER,
           PIPELINE.CREATOR as CREATOR,
           e1.LOB as CREDIT_RECEIVER_LOB,
           e2.LOB as CREATOR_LOB
      FROM PIPELINE
      LEFT OUTER JOIN EMPLOYEES E1
        ON PIPELINE.CREDIT_RECEIVER = EMPLOYEES.EMAIL
      LEFT OUTER JOIN EMPLOYEES E2
        ON PIPELINE.CREATOR = EMPLOYEES.EMAIL
    Ramin Hashimzade

  • Error when  building a report from 2 different subject areas

    Hello Experts,
    I am using obiee 11.1.1.5.
    I have 5 dimension D1,D2,D3,D4,D5 connected to fact1 and 4 dimension connected to fact2 such as D1,D2,D6,D7.
    where D1,D2 is common to both the facts.
    Fact1 Is in subject area 1 and Fact2 is in subject area2.
    I need to create a report by adding columns of  subject area 1 and 2 with columns from all the dimensions D1,D2....D7.
    As of now i am getting error stating "No fact table exists at the requested level of detail " when i try to add columns from 2 different subject areas.
    Can anyone help me in solving the above problem.
    Is there any prerequisite to be taken care when  building a report from 2 different subject areas.
    Regards,
    NN

    Hello Nagireddy,
    So kind of you, for your quick reply
    I was able to solve the error by doing below steps in additional what you have specified
    -->For the fact table LTSs, set the logical level in the Content tab to the dimension's lowest level for each conforming dimension (leave the non-conforming dimensions level blank).
    Now I have another requirement i,e
    I need to have non measure columns such as Date into the newly created fact in BMM layer.
    I tried doing the steps which I followed for measure column, but it is throwing the same error which I get earlier.
    Below is the error
    Error Codes: OPR4ONWY:U9IM8TAC:OI2DL65P
    State: HY000. Code: 10058. [NQODBC] [SQL_STATE: HY000] [nQSError: 10058] A general error has occurred. [nQSError: 43113] Message returned from OBIS. [nQSError: 43119] Query Failed: [nQSError: 14025] No fact table exists at the requested level of detail:
    Let me know if have any suggestions

  • Report using colmns from 2 subject areas

    Hi,
    I have to buld a report as below
    Product      ForecastRevenue(A)       ActualRevenue(B)       Variance
    A                200                                      100                           100
    B                200                                      200                            0
    ForecastRevenue(A) comes from 1 subject area and ActualRevenue(B) comes from another subject area. Using these 2 columns from different subject area I have to create
    a calculated column variance which is the difference of two columns. How can I create this report. Any idea?

    can be done in two ways;
    1. Using Union report
    Create a union report with two request.
    Request1 -          product               Forecast_Revenue     Actual Revenue
    Col expression     "product.name"     "Fact.Revenue"         0
    Request2 -          product               Forecast_Revenue     Actual Revenue
    Col expression      "product.name"    0                             "Fact.ACTUAL_Revenue"
    In the result tab create a pivote report and set the aggregation of fact column as sum.
    Add a calculated column and write the expression as
    Farecast_Revenue - Actual_Revenue
    You are done.
    2. Use the advance tab in the report and write a custom SQL to join these two subject area.
    eg.
    select product, A.forecast_reveneu, B.Forecast_Reveneue, A.forecast_reveneu-B.Forecast_Reveneue
    from SA1 A join SA2 B on (A.product=B.PRODUCT)
    You are done.
    Best of Luck,
    Kashi

  • What happens if column from idex is dropped and recreated

    I have question. I need to drop one column from a table. That column is part of unique index.
    If i drop a column and recreate it would it drop index also. Do i need to re-create the index also.
    Thanks

    Is it not possible for you run a quick test on a small table to find out?

  • NQSError: 15001 Could not load navigation space for the subject area

    Hi gems,
    I am creating repository with some subject areas from one of the Old repository which has no errors. New repository is giving error as
    nQSError: 15001 Could not load navigation space for the subject area
    nQSError: 15004 Internal Error: Missing Functional dependency association for the column
    But actual for particular column n OLD Repository it is not giving any error
    Can anyone help me why this is giving this error.
    Thanks
    Manu

    Hi Manu,
    Please check if all the columns in the copied subject areas are having links to BMM layer and physical layer columns. If the pulled tables does not have proper joins with other BMM tables, it also will cause load naviagtion error.
    While copying the subject area from another RPD you must have missed some objects or joins. Please verify.
    Thanks
    Krishna

  • Report with non aggregated and aggregated columns from different facts.

    Hi,
    We have got requirement as follows,
    1) We have two dimension tables, and two fact(Fact1 and Fact2) table in physical.
    2) In BMM we have made hierarchies for both dimensions, and are joins both logical fact table.
    3)In fact1, we are having three measures of which we have made two as aggregation sum, and one is non aggregated(It contains character).
    4)Fact2 have two measures, both are aggregation as sum.
    5)Now here the problem arises, we want to make a report with some columns from dim and non aggrgated column from fact1 and and aggregated column fact2
    How to resolve the above issue.
    Regards,
    Ankit

    As suggested you really want to move your none-aggregated fact attributes to a logical dimension (using the same physical table as the logical fact). Map this in the BMM layer as a snowflake, Place a hierarchy on this dimension with (at minimum) Total -> Detail levels, then on the other fact table you want to include in the report, set the content level on your other fact measures to the 'Total' level for your new logical Dim and it will allow them to be present in the same report.

  • How to read only particualr columns from excel sheet to internal table

    Hi,
    I have and excel sheet which has around 20 columns, in which i want to read only 6 columns. They are at different column positions, means the 1st column, 6thcolumn, 8th column so on..
    Can we do this in sap? do we have any FM to do this?
    Thanks.
    Praveena.

    hi,
    Use the below logic to fetch the data into internal table..You need to read the data cell by cell and update the internal table,
    DATA l_count TYPE sy-tabix.
       CONSTANTS: lc_begin_col TYPE i VALUE '1',
                  lc_begin_row TYPE i VALUE '2',
                  lc_end_col   TYPE i VALUE '2',
                  lc_end_row   TYPE i VALUE '3000'.
      CLEAR p_i_excel_data. REFRESH p_i_excel_data.
    * Function module to read excel file and convert it into internal table
       CALL FUNCTION 'KCD_EXCEL_OLE_TO_INT_CONVERT'
         EXPORTING
           filename                = p_p_file
           i_begin_col             = lc_begin_col
           i_begin_row             = lc_begin_row
           i_end_col               = lc_end_col
           i_end_row               = lc_end_row
         TABLES
           intern                  = i_data
         EXCEPTIONS
           inconsistent_parameters = 1
           upload_ole              = 2
           OTHERS                  = 3.
    * Error in file upload
       IF sy-subrc NE 0 .
         MESSAGE text-006 TYPE 'E'.
         EXIT.
       ENDIF.
       IF i_data[] IS INITIAL .
         MESSAGE text-007 TYPE 'E'.
         EXIT.
       ELSE.
         SORT i_data BY row col .
    * Loop to fill data in Internal Table
         LOOP AT i_data .
           MOVE i_data-col TO l_count .
           ASSIGN COMPONENT l_count OF STRUCTURE p_i_excel_data TO <fs_source> .
           MOVE i_data-value TO <fs_source> .
           AT END OF row .
    * Append data into internal table
             APPEND p_i_excel_data.
             CLEAR p_i_excel_data.
           ENDAT .
         ENDLOOP .
       ENDIF .

  • An update statement to use cumulative columns from the previous record

    I need to create a update statement which updates a record based on a column from previous record and its column where they are grouped by another columns and ordered by date in ASC. Note that I need answer from SQL 2005+.
    Suppose I have records:
    TransactionID  ProductID    TransactionDate    Quantity        QuantityOnHand
    1                          1                1/2/2014             
    2                     ?  2
    2                          1                1/3/2014 
               3                     ? 5 = 3+2
    3                          1                1/4/2014 
               1                     ? 6 = 5 + 1
    4                          1                1/5/2014 
            9                     ? 15 = 6 + 9
    I wrote this statement but did not work:
    UPDATE it2 SET it2.QuantityOnHand =it2.Quantity + ISNULL(it1.QuantityOnHand,0)
    FROM IT it1
    LEFT JOIN (SELECT TransactionID,ProductID, Quantity,QuantityOnHand FROM IT GROUP BY ProductID ORDER BY TransactionDate)  it2 ON It2.TransactionID>it1.TransactionID
    WHERE It2.ProductID=it1.ProductID
    This means update the record and get the QuantityOnHand from its previous record if any grouped by the ProductID that are ordered by TransactionDate.  Note that in this example there is only one product ID. Here the QuantityOnHand column should be updated
    and TransactionDate is in ordered!
    Mike
    DDL:
    CREATE TABLE [dbo].[IT](
        [TransactionID] [int] NOT NULL PRIMARY KEY,
        [ProductID] [int] NULL,
        [TransactionDate] [datetime] NULL,
        [Quantity] [float] NULL,
        [QuantityOnHand] [float] NULL
    ) ON [PRIMARY]
    DML:
    INSERT INTO [dbo].[IT] VALUES (1 ,1,'1/2/2014',2,NULL)
    INSERT INTO [dbo].[IT] VALUES (2,1,'1/3/2014',4,NULL)        
    INSERT INTO [dbo].[IT] VALUES(3 ,1 ,'1/4/2014' ,2,NULL)
    INSERT INTO [dbo].[IT] VALUES(4 ,1 ,'1/5/2014' ,9,NULL)

    Hi
    please replace this text (which is not records but just text, and therefore we can not query it):
    TransactionID  ProductID       Quantity        QuantityOnHand
    1                          1                     
    2                     ?  2
    2                          1                     
    3                     ? 5 = 3+2
    3                          1                     
    1                     ? 6 = 5 + 1
    4                          1                     
    9                     ? 15 = 6 + 9
    with a DDL+DML queries to help us help you.
    >> DDL+DML are queries to create your relevant table and a query to insert the sample data.
    Thanks
    [Personal Site] [Blog] [Facebook]

  • How to load selected column with sql loader

    Hi all
    I want to load only few columns from a datafile not all columns and i don't know how to do from SQL LDR.
    I know we can use position but the data is not fixed length.
    I'm working with Oracle 11g and Linux OS.
    Here is an example of my data file and table.
    Data file is and the field is separated by | :
    3418483|VOU|20120609090114|555208363|0|2858185502059|1000|0||
    3418484|SR|20120609090124|551261956|0|4146314127759|200000|0||
    SQL> desc TBL1
    Name                                      Null?    Type
    CTYPE                                              VARCHAR2(5)
    BDATE                                              DATE
    PARTNUM                                             VARCHAR2(60)
    SERIALNO                                           NUMBER
    FVALUE                                             NUMBER
    I want to have:
    SQL> select * from TBL1
    CTYPE     BDATE          PARTNUM          SERIALNO          FVALUE
    VOU     09/06/2012     555208363     2858185502059          1000
    SR     09/06/2012     551261956     4146314127759          200000Thank you.

    look at FILLER
    http://www.orafaq.com/wiki/SQL*Loader_FAQ#Can_one_skip_certain_columns_while_loading_data.3F
    --add sample
      num1 FILLER,
      ctype,
      bdate "to_date(:bdate, 'YYYYMMDDHH24MISS')",
      PARTNUM,
      num2 FILLER,
      SERIALNO,
      FVALUE, 
      num3 FILLER
      )Edited by: AlexAnd on Jun 9, 2012 4:29 AM

  • How add new column in analysis from two subject area

    which is the right way to add a new column to an existing combined analysis from two subject areas?
    if I add the new column first in my two combined queries, then I saw a new column in the results column panel, but this new column is empty and I can't edit its propreties (the button edit column doesn't work). I can't even save the modified analysis due to a "bad xml" errror.
    if I try to first add a new column from the results panel and then in my combined queries, obiee says that new columns are not of the same type.
    I suppose this is because the new column in results panel has no aggregation formula, unlike new columns in queries.
    But I don't know how to change the properties of the new field in the results panel, with no subject area available.
    I have to restart from a single subject area? possible?
    In this case, there is a way to save/copy filters ecc. from the old analysis?
    If anyone can help.
    Thanks
    Luc

    When you are using union clause in analysis or combining with other subject area you suppose to have same number of columns and their datatypes with other analysis.
    for datatype issues you can use cast in column expression in each analysis. If you want to add a column only from 1 analysis just add and in other analysis use dummy column with exp 0 or ''(for char) based on the datatype.
    These you have to deal with each analysis.
    If helps pls mark

Maybe you are looking for

  • How to install Canon MG3170 printer to Macbook Air (mid 2012), both USB & wifi

    I have been trying to install the Canon MG3170 to my Macbook Air (mid 2012 version) using OS X Version 10.8.4. I followed the paper manual that came with the box & used the CD provided. In the midst of the installation, "AN ERROR OCCURRED WHILE TRYIN

  • Tomcat behaving Strangely

    Hi guys, I have a sample Spring app installed on my TOMCAT...but i dont know, Tomcat just keep reloading the context again and again.. And after few minutes, it consumes so much memory that my pc starts hanging... I am using Tomcat within Eclipse, an

  • Help: regarding installation

    Hi everyone............. could you plz help me to install Arch linux in my laptop........ my system is: Dell Inspiron N5010                      64 bit .........Intel i5 core processor I downloaded archlinux-2010.05-core-x86_64.iso. and I am trying i

  • HT4101 How to connect a mechanical keyboard to iPad

    I am thinking of purchasing a Rosewill mechanical keyboard for my iPad. Does anyone know if it's possible to connect the two and, if so, how do I go about doing this? Thanks!

  • Streaming files through servlet

    Hi, I'm trying to stream a file to the client browser via a Struts action. I use a helper method as follows: public static void streamFile(HttpServletResponse response, String contentType, String fileName, InputStream fileData) throws Exception {