Obiee 11g Administrator: Dividing an INT with an INT column results in INT

OBIEE 11.1.1.7.1
I have developed a formula column in BMM. The column is based on dividing an INT column with another INT column.
The formula column picks automatically the type as INT and when I developed a report on this column it shows integer values instead of decimal.
Dividing Profit by Cost (both integers) should give an index which is a decimal value. How to come up with that?

Multiply with 1.0 to see decimal values
ex: (a*1.0)/b
or else try data format in report
if helps mark

Similar Messages

  • "No Log Found" in OBIEE 11g Administration- Manage Sessions

    I am using 11.1.1.5 and have set the Repository logging to Log Level 2..and have also made the User logging to Level 2 as well. I know there is a session variable called LOGLEVEL and I have also tried to edit that. Despite this, I am still unable to see the physical SQL generated by the BI Server under Administration->Manage Sessions. Any idea what I may be missing?

    Hi,
    It's bug. you do workaround method.
    Method 1:
    create session veraible and set it log level 0 ro 7 then u can able to manage session view log (physical query)
    see my screen short
    http://imageshack.us/photo/my-images/215/viewloginitsessionvaria.jpg/
    INIT LOGLEVEL
    and just add dummy table mentioned below kind
    select 7 from IW_POSITION
    assign system session variable:
    LOGLEVEL
    then save it and try to login weblogic then u can able to see the view log.
    Method 2:
    for the particular report do it in answres -->advanced tab
    can you try putting the below syntax in prefix section of advanced tab.
    SET VARIABLE LOGLEVEL=2,DISABLE_CACHE_HIT=1;
    It should generate the log with database sql as well.
    for more
    http://total-bi.com/2010/10/obiee-11g-no-log-found/
    http://prasadmadhasi.wordpress.com/2011/12/01/unable-to-view-log-file-in-obiee-11-1-1-5-0/
    http://bischool.wordpress.com/2009/04/06/set-loglevel-from-answers/
    http://boardreader.com/thread/OBIEE_11g_No_log_found_lj8hXo4f7.html
    Thanks
    Deva
    Edited by: Devarasu on Dec 15, 2011 11:56 AM

  • OBIEE 11g pivot dumb question - changing order of measure columns

    Hi, dumb question, in OBIEE 11g, if using a table view it is easy for end users to drag and drop the measure columns in any order desired. Is there a way for end users to change the order of measures when using a pivot view?
    Thanks,
    Scott

    Hi Dpka, no, moving to rows doesn't really solve the issue. Dimensions don't allow you to change the order of the members, except by alphabetic sort.
    Lets say the default pivot has three measure columns in this order:
    1. Sales
    2. Revenue
    3. Cost of Goods Sold.
    If a user wants to change the order of the columns to be:
    1. Sales
    2. Cost of Goods Sold
    3. Revenue
    on a table they just drag the columns the way they want them. On a pivot, it appears that there is no way to change this.
    Thx,
    Scott

  • OBIEE 11g EVALUATE function working fine with Administrator but

    Hi,
    We have a report with EVALUATE function , which is working fine with Administrator User but when we run for other users its giving following error.
    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: 42015] Cannot function ship the following expression: Evaluate( COUNT(%1) OVER (PARTITION BY (%2)),D901.c1, D901.c2) .Please have your System Administrator look at the log for more details on this error. (HY000)
    Is there any parameters that we have to set for the user level to use Evaluate ?
    Thanks,
    Raj

    You can create a compound key of Cat + SubCat (concatenation in a logical column is a quick win) which will render the SubCats unique and assign that as the logical level key:
    SubCat:
    A-Basic
    A-Value Add
    A-High
    B-Basic

  • OBIEE 11g, can not signin analytics with user admin "Weblogic"?

    Hi all,
    I have a problem as i can not signin analytic with user Weblogic, with error "An error occurred during authentication. Try again later or contact your system administrator".
    then, i create one user other, with admin privilege and sign in ok, same with all other user.
    Before i get this problem, i have create one user --> add to a role --> grant permission of some analytic on weblogic folder to this user.
    plz tell me what the reason of this problem.
    Thanks so much.

    From Srini's update i see its a bug, but can you give it a try with the below options and also let us know the OBIEE Version?
    try to shutdown everything admin,managed and opmn services and then restart everything once everything is up now deploy the old rpd and see if it helps
    paste the log files from admin and nqserver.log

  • OBIEE 11g (11.1.1.5...)Column Selectors and Action Links

    All,
    I think we have bug - we have a column selector for 3 columns. One of them is configured to navigate to another analyses page (we have only one action link configured) . we have checked the option - "Do not display in a popup if only one action link is available at runtime". The issue is the pop-up still shows up even if there is only one action link. The issue is only for a column group.
    Please let us know if anyone has figured out a work around.
    Thanks
    Edited by: user709926 (Kottresh Kogali) on Sep 13, 2011 2:00 PM

    Hi,
    Yes, we do face this issue.There is no workaround for this issue as of now.
    Rgds,
    Dpka

  • Bug: updating a view with a CLOB column results in ORA-01461

    Here is a database script to create a table and a view:
    CREATE TABLE TEST_CLOB(ID NUMBER, TEXT CLOB);
    CREATE OR REPLACE VIEW VTEST_CLOB AS
    SELECT ID, TEXT FROM
        SELECT ID, TEXT
        FROM TEST_CLOB
        WHERE ID IN (SELECT 1 FROM DUAL)
    The following code throws ORA-01461: can bind a LONG value only for insert into a LONG column.
    static void Main()
         using (var conn = new OracleConnection(ConnectionString))
              conn.Open();
              var trans = conn.BeginTransaction();
              var cmd = conn.CreateCommand();
              cmd.BindByName = true;
              var p = new OracleParameter("vText", new string('a', 4001));
              cmd.Parameters.Add(p);
              cmd.CommandText = "UPDATE vTEST_ClOB set TEXT = :vText";
              cmd.ExecuteNonQuery();
              trans.Rollback();
    Please create a table and a view exactly as shown above.
    The error doesn't happen when updating TEST_CLOB table itself or if the view is created as follows:
    CREATE OR REPLACE VIEW VTEST_CLOB AS
    SELECT ID, TEXT FROM
        SELECT ID, TEXT
        FROM TEST_CLOB
        WHERE ID IN (1)
    This code was tested with ODP.NET version 4.112.3.0 and ODP.NET Managed Beta2 version 4.112.3.60.
    Oracle 11g Release 11.2.0.2.0 64-bit.
    When constructing OracleParameter like this: var p = new OracleParameter(name, stringValue), OracleDbType property is always set to OracleDbType.Varchar2,
    but I think it should take into accout the size of the stringValue and change it to OracleDbType.Clob automatically.

    I've noticed similar behavior with byte arrays.
    Parameters with byte[] data longer than 4000 bytes are treated as RAW or LONG RAW type values (not sure which one exactly).
    Explicitly setting parameter type to OracleDbType.Blob works around this problem.
    Also, it's very strange that these errors don't seem to occur on tables, only views are affected.
    Any thoughts on this please?

  • Other user can't access to OBIEE 11G installed on a server

    Hello,
    We have installed OBIEE 11G on a server ( windows sever 2008 r2) with admin account, and it works fine, But others users can't access to obiee 11g ( administration icons are white in their sessions) even they have admin rights.
    Can anyone tell me what should we do??
    Thank you.

    Hi,
    This is the exact format how my tnsnames.ora file looks. sorry, I can ping it in command prompt now. In my connection pool i tried first DSN =  ab.bc.xy.zx, did not work. Then I saw oracle's default repository and changed my DSN to your suggested format starting from "DESCRPTION" to rest. Still no luck Do you think, i should put the same TNS in my local machine??
    ab.bc.xy.zx =
    (DESCRIPTION =
        #(ADDRESS = (PROTOCOL = TCP)(HOST = 10.20.30.110)(PORT = 1521))
        #(ADDRESS = (PROTOCOL = TCP)(HOST = 10.20.30.120)(PORT = 1521))
        (ADDRESS = (PROTOCOL = TCP)(HOST = 10.20.30.130)(PORT = 1521))
        (LOAD_BALANCE = yes)
        (CONNECT_DATA =
          (SERVER = DEDICATED)
          (SID = cap2)
    thanks,
    BK.

  • How to install only catalog manager in obiee 11g client

    hi,
    i have obiee 11.1.1.5 sever on linux & client on windows.
    since obiee 11g client does not comes with catalog manager.
    how to install only catalog manager on windows machine.
    Just to access catalog manager, Do i need to install fresh DB & OBIEE on windows?
    thanks,

    Hi,
    Download Client tool below link and also via BI Presentation Administration home page
    http://www.oracle.com/technetwork/middleware/bi-enterprise-edition/downloads/bus-intelligence-11g-165436.html
    Note: catalog manager is present in obiee11.1.1.6.0
    Thanks
    Deva
    Edited by: Devarasu on Oct 24, 2012 3:41 PM

  • OBIEE 11G Installation on Windows XP Platform

    Is it possible to install OBIEE11G in a XP machine with a configuration core i5 4GB RAM?
    I would like to know more on the performance and the possible issues.

    HI,
    We can install the OBIEE 11g in the windows XP with 4GB configuration.But the Application may run slowly.Still you can work on it.
    mark if helpful/correct..
    thanks,
    prassu

  • OBIEE 11G - Unable to login to presentation services

    Hi All,
    I have done a simple installation of OBIEE 11G on my coloud server with OS windows server 2003, SP2 , 32 bit.
    Installation is 88% completed with,
    Executing : opmnctl start coreapplication_obiccs1 and Executing: opmnctl start coreapplication_obips1 failed. Came to know that this is related to clusters and ignored the error.
    RCU is installed in different database server.
    Now i am trying to login to presentation services with weblogic as userid and password that i had given during installation of obi.
    I am getting error that userid or password is invalid...
    One thing i came to know from the thread OBIEE 11g Cluster Controller Failed to start is,
    i have a bad IP in /etc/hosts... below are the entries in the file... can anyone please tell me what necessary changes i should do?
    # Copyright (c) 1993-1999 Microsoft Corp.
    # This is a sample HOSTS file used by Microsoft TCP/IP for Windows.
    # This file contains the mappings of IP addresses to host names. Each
    # entry should be kept on an individual line. The IP address should
    # be placed in the first column followed by the corresponding host name.
    # The IP address and the host name should be separated by at least one
    # space.
    # Additionally, comments (such as these) may be inserted on individual
    # lines or following the machine name denoted by a '#' symbol.
    # For example:
    # 102.54.94.97 rhino.acme.com # source server
    # 38.25.63.10 x.acme.com # x client host
    127.0.0.1 localhost
    Regards,
    srl

    HI Srini,
    Thanks for the response,
    I can able to logic Obiee Em/Console services with the same user Web logic. Only Presentation services not able to login.
    Please find my  sawlog0:
    [2014-01-08T19:54:52.000+05:30] [OBIPS] [NOTIFICATION:1] [] [saw.securitysubsystem.checkauthentication.runimpl] [ecid: f86ee0615f1822d9:694c3368:14372397042:-8000-00000000000002fd,0:1:1] [tid: 3400] Authentication Failure.
    Odbc driver returned an error (SQLDriverConnectW).
    State: 08004.  Code: 10018.  [NQODBC] [SQL_STATE: 08004] [nQSError: 10018] Access for the requested connection is refused.
    [nQSError: 43113] Message returned from OBIS.
    [nQSError: 43126] Authentication failed: invalid user/password. (08004)[[
    File:checkauthentication.cpp
    Line:1330
    Location:
      saw.securitysubsystem.checkauthentication.runimpl
      saw.threadpool.asynclogon
      saw.threads
    ecid: f86ee0615f1822d9:694c3368:14372397042:-8000-00000000000002fd,0:1:1
    ThreadID: 3400
    Please advice
    Regards,
    Kulkarni

  • Obiee 11g and custom j2ee app using the same cookie name

    Hi,
    I wrote a same j2ee web application. i'am using authentification through a realm configured in the web.xml.
    This web app is deployed in the same weblogic than obiee 11g. What i want to do is to embed my application in a dashboard using an iframe tag, and use the same login from analytics to my custom web app.
    In this article http://docs.oracle.com/cd/E11035_01/wls100/security/thin_client.html#wp1039551, it is said that by default, all web apps in the sames weblogic server are using the same cookie name so that they share authentification between them. However, i have read in the web that analytics in obiee 11g is using a cookie with the name "ORA_BIPS_NQID".
    In the weblogic.xml of my custom application, i set the cookie-name parameter to ORA_BIPS_NQID. However, in the dashbord, it still prompt for authentification to my custom web app.
    How can we share authentification between analytics and a custom web app in the same weblogic ?
    NB : I dont want to pass the username et password through the url.
    Thanks.

    By default, if you don't specify a cookie-name in the weblogic.xml configuration file, the weblogic server create a cookie named JSESSIONID for your application. For exemple, if two applications use the default configuration, both of them will use the same cookie name which is JSESSIONID. In this case, when you log in the first application, your are automaticaly logged in the second application with the same credentials. I have already test this kind of integration and it works perfectly. You only need that the two applications are deployed in the same weblogic server.
    Now, i want to have the same behaviour between obiee 11g and my custom application deployed in the same weblogic server. I read somewhere in the web that obiee 11g presentation service (analytics) is configured with a cookie-name value = "ORA_BIPS_NQID". So in the weblogic.xml configuration file of my web app, i specify a cookie-name value = "ORA_BIPS_NQID" to have the same cookie-name between the two application. But, it still not work. It prompt for authentification in the dashboards.
    I now, that such an integration is possible, because the other bi applications (mapviewer, bipublisher,...) are actually other web applications. However when using, for exemple, maps in dashbords, the mapviwer application automaticaly user the credentials of the user connected in analytics.

  • OBIEE 11G - Issue passing parameters between two reports

    Hi folks,
    I am struggling to pass parameters between two reports in OBIEE 11G.
    My first report contains the following columns: Rolling Year Type (VCHAR), Year(VCHAR), Month(VCHAR), Cost(Double).
    My second report contains the following columns: Rolling Year Type(VCHAR), Year(VCHAR), Month(VCHAR), Category(VCHAR), Cost(Double).
    My requirement is to pass the Rolling Year Type, Year and Month values from report 1 to report 2.
    On the Month column properties of report 1, I have created an Action Link called 'Drill to Category'. I have clicked on 'Navigate to BI Content' and selected Report 2.
    Then on Report 2, I have included three filters: Rolling Year Type is prompted, Year is prompted, Month is promted.
    When I run the report I always get the following error:
    The specified criteria didn't result in any data. This is often caused by applying filters and/or selections that are too restrictive or that contain incorrect values. Please check your Analysis Filters and try again. The filters currently being applied are shown below.
    When I check the cursor cache, the filter values are correct. Does anybody have any idea why Report 2 does not display?
    When I remove the Month filter, the report works correctly.
    I have since changed the third filter to be Month No and although Report 2 does display, it does not pick up the filter on the Month No.
    I initially thought this may have been a caching issue and so I have disabled BI Server Cache but this does not fix my problem.
    This was never an issue on OBIEE 10G as I found it very easy to navigate between two requests.
    Has anyone else experienced problems with passing parameters between two request in 11G?
    Any help appreciated.
    Thanks
    Gavin

    Hi,
    I once tried this kind of requirement(with dashboard prompts though) and hit at similar issue. I later found out that the problem is with the space in the parameter values. Can you please let me know, if the same is the case with you?
    Suppose the parameter passed is "Jan 2010", but the report on the destination takes the value as "Jan" & "2010". Yes, it kind of split the parameter value to two based on space. I think we can notice the filters the destination report got, by enabling filter view.
    In this case, since you pass only value at a time, could you try placing the parameter value anyway in double quotes? I think the Server then will understand it as one value.
    Thank you,
    Dhar

  • Invalid subscribers skipped in  OBIEE 11g

    Hi,
    I have requirement to send reports to non OBIEE users in Obiee 11g, i created the report with email ids and and i configure the delivers, i am able to send the report to obiee users, when i create the agent Delivery Content as Conditional Analysis Recipients     as Get Recipients from the Analysis Used in the Agent Condition_ when i run the agent its saying that AgentID: /shared/Common/AGENT_MAIL_21_2
    Invalid subscribers skipped: [email protected],
    Plz tell me why i am getting this error,i am able to send emails the obiee users, but when i select the Get Recipients from the Analysis Used in the Agent Condition then only i am getting this error.
    Thanks & Regards,
    Ayubjani Shaik

    "AgentID: /shared/Common/AGENT_MAIL_21_2
    Invalid subscribers skipped: [email protected]"
    Well, is "[email protected]" a valid user of one of your security realms? And this is literally the question: is this email address a valid user id? Or are you just passing an email and thinking it will work whereas the actual uid is something like "ayub"?

  • Obiee 11g upgrade issue for date format

    Hi,
    I am facing a date format issue with obiee 11g report. This statement cast(cast(current_date as char) as timestamp) is failing with "not a valid month" error in obiee 11g. This worked fine with obiee 10g.
    I am basically trying to set the date to 12:00:00 am of the sysdate. Below is what I am trying to achieve:
    timestampadd(sql_tsi_hour, 1, cast(cast(current_date as char) as timestamp)))
    the above statement fails in obiee 11g.
    Thanks for your help,
    AP

    I dont think you need any functions to get the required output, try to set the date format as below
    [FMT:timeStampShort]
    If helps mark
    Thanks
    Edited by: Srini VEERAVALLI on Apr 23, 2013 4:18 PM
    I think with format and then the below should work with no issues.
    timestampadd(sql_tsi_hour, 1,current_date)
    I think you are wasting time by posting here, just do it. You no need any ones permissions to do it ;)
    Edited by: Srini VEERAVALLI on Apr 24, 2013 8:55 AM

Maybe you are looking for

  • No pdf file generated

    Hello, i use Acrobat XI Standard and i can't generate pdf-files from autocad in A0, A1 and A2 format via the pdf printer. I have created the user-defined page-layouts for the A0, A1 and A2 format, since these are not available as standard formats in

  • XSL extension/  node set

    In my XSL stylesheet , I am using XSL component to call external program (in my case it is a Java program). The called java method returns a List. (a list of Strings like "A", "B", "C"). The following XSL element <xsl:value-of select="xalan:nodeset(j

  • IB51, IB52 : Page up & Page Down option for table control disabled

    Hi experts, IB51, IB52 Page up & Page Down option for table control is disabled. We want to use these options in the table control while recording . Can any one tell us? Regards, Lakshmi

  • Select group by query

    I'm wanting to exclude 3 values from the group by clause within a select statement, how would I achieve this with the following select statement: SELECT Distinct ClientName AS Client, Service AS Serv, MAX(Stat.DateLastRun) AS DateRun, (Files1Hour) as

  • How to type Apple symbol?

    In the past I've used the Option+Shift+k to get the Apple symbol, but now, even in Helvetica that key combination produces the degree symbol.  I know there has to be a key combo that works.