column formula logic repository obiee

Hi all

I am creating a logical column using below three physical columns

I am providing the column values;

total of accounts receivable (data type: double) = 21476.15

tot_bill_M (data type: double) = 3276.03

tot_bill_M_1 (data type: double) = 18200.12


When case (ifnull (total receivables, 0)-ifnull (tot_bill_M, 0) -ifnull (tot_bill_M_1, 0)) < = 0, 0, another condition to achieve


but here the first condition less than or equal to 0 should be has been reached and should publish as 0 in obiee reports.


But here, it goes to the second step of calculation.


is there anyway we can do this?


Why not add a TOUR around your measurements to make sure do them the same "accuracy"? Do not round to a higher accuracy than you display or 1 more and you'll most likely get a match.

And also look at the SQL generated physical because at least you are 100% of what you need to do to get the digits of your correspondents.

Tags: Business Intelligence

Similar Questions

  • Look for the value null in the column formula

    I have a quiz report in OBIEE BI, and I only want to show quizzes to when the end date is not null.

    Is it possible to do in the column formulas?

    Thank you

    Select filter column is not null

  • Column derived logical of the MDB - visit bounced

    In Web Metrics, a "visit rebounded" when a session views a page on a Web site and then leaves. In my table of facts, I capture the "total pages" read for each session and I set this metric in my Business Model with a rule of aggregation "sum". I'm trying to use this measure to calculate the metric 'bounced visit' but I'm running into issues.

    Session ID number Total of Pages
    1179860475 5
    1179861625 1 < = this is a visit of rebound
    1179861920 7
    1179866260 2
    1179868693 13

    If I set 'bounced visits' as

    BOX WHEN "total pages" = 1 THEN 1 ELSE END 0

    What I see in the newspapers of session is:

    CASE amount WHEN ("total number of pages") = 1 THEN 1 ELSE END 0

    The aggregation of the pages 'total' is made first, and then the derived metric calculation. This leads to incorrect results. Is in any way to solve this in the business model? I know that I can go back to the ETL, calculate a metric "bounce tour", store it in the fact, create aggregates, etc.. I was looking for a short term solution.

    I tried other things:

    (1) make a copy of the column "total pages" and put off aggregation, call him 'total pages - no aggregation '.

    This leads to queries of the form:

    Select distinct T22583. TOTAL_PAGES C1
    Of
    WEB_SESSIONS_A1 T22583
    order of c1


    (2) create a logical column based on 'total pages - no aggregation '.

    has bounced visit = CASE WHEN EnterpriseWarehouse. "" Web sessions. "' Total Pages - no aggregation ' = 1 THEN 1 ELSE END 0

    This leads to [nQSError: 14020] none of the fact tables are compatible with the query request Web Sessions.bounced visit.

    Sorry that if I wasn't clear... you don't need a new select statement for this... you need to do is to define a column using the physical layer (not an existing column of logic in use)... To do this, you must create a new column in MDB... then you go under the mapping tab and click on button... and you enter it formula using the physical column... Let me know if it is clear...

  • How to add text to the column formula

    Hello

    I am trying to add text to column (quarter) in the column formula window.

    Try adding "Q1" text in the column as: "Q1" | (TIME. ("" CALENDAR QUARTER "). -In error.

    Also tried with CASTING... .but could not answer me.

    Please advice how add/concatenates the text in the column formula window.

    Kind regards

    CK

    I just tested the approach below, which works as expected.

    CONCAT ('ABC', cast ("Time". "" Tax Quarter "as char))"

    CONCAT ('ABC', 'Time'. ("' Fiscal quarter")

    Control the parameters of syntax in your formula.

    Mark it as relatively useful/correct, if it is.

    Best regards
    Kalyan Chukkapalli
    http://123obi.com

  • Can we have Cognos front end connect to the repository OBIEE

    How can we have repository OBIEE take as input in Cognos Framework?

    Any suggestions?

    Hello

    It should be possible;

    http://www.rittmanmead.com/2009/12/Cognos-8-Oracle-BI-EE-10-1-3-4-1-reporting-using-Cognos-on-BI-EE-metadata-bi-Server-ODBC/

    Good luck

    Daan Bakboord
    http://obibb.WordPress.com

  • How to create the repository obiee in solaris

    Hello

    I have tried to create repository obiee in obiee under solaris environments. I find that there is no system for Solaris obiee administration tool. How can I create repository in solaris if there is no administrative tool.

    Kindly help

    concerning
    Nick

    InstanceConfig.xml sets the location of the Web catalog, not the name of the repository RPD. The Web catalog is where the user reports, dashboards etc are stored. You must change the RPD of the BI llok at the NQSConfig.INI server.

  • OBIEE dynamic column headings based repository Variables

    Hello

    How can we provide variable name of the repository (from RPD) as column headings in reports (presentation Services).

    Can you please suggest me how to do it?

    Thanks in advance...

    RAM

    Hello

    You can use the following link.

    Oracle Business Intelligence 11g: OBIEE 11 g dynamic column headings

    I used the variable presentation here, you can substitute the variable repository. The difference is that you don't need to create variable presentation, instead you use repository variable there.

    If you are not clear with this, pleas come back. I'll write a new message on your problem.

  • How can I reconfigure this formula of substring OBIEE for Null columns?

    Hello

    I use this formula of substring to conveert my 20130201 to 02/02/2013 date field and as some of my data columns are NULL, I get a result of / / that is contained in the formula itself. How can I reconfigure this formula so cells NULL return Null and if a cell has data I should see, for example, 01/02/2013?

    SUBSTRING (CAST ("CSR Order Headers". "Appointed date" AS CHAR) 5 FOR 2) ' | ' /'| " SUBSTRING (CAST ("CSR Order Headers". "Appointed date" AS CHAR) 7 FOR 2) ' | ' /'| " SUBSTRING (CAST ("CSR Order Headers". "Appointed date" AS CHAR) FROM 1 to 4) "

    Thank you
    John

    Use the CASE statement:

    Example:

    CASE WHEN SUBSTRING(CAST("CSR Order Headers"."Appointment Date" AS CHAR) FROM 5 FOR 2)||'/'||SUBSTRING(CAST("CSR Order Headers"."Appointment Date" AS CHAR)
    FROM 7 FOR 2)||'/'||SUBSTRING(CAST("CSR Order Headers"."Appointment Date" AS CHAR) FROM 1 FOR 4) = '//'
    THEN null
    ELSE
    SUBSTRING(CAST("CSR Order Headers"."Appointment Date" AS CHAR) FROM 5 FOR 2)||'/'||SUBSTRING(CAST("CSR Order Headers"."Appointment Date" AS CHAR)
    FROM 7 FOR 2)||'/'||SUBSTRING(CAST("CSR Order Headers"."Appointment Date" AS CHAR) FROM 1 FOR 4)
    END
    

    Appreciate if you score as good/useful.

    Best regards
    Kalyan Chukkapalli
    http://123obi.com

  • Column formula requirement

    I'm new to OBIEE and I need to perform the following operations in the column change the formula:

    CASE of SUBSTRING ('file'. "Column1" OF 1 TO 2)

    WHEN 12 THEN VALUEOF (SUBSTRING ('file'. "Column1" FROM 1 to 6)) "

    ANOTHER 'folder '. "' Column1 ' END

    This obviously isn't a valid syntax for the CASE WHEN statement. But please advice as to how this functionality can be achieved.

    Thank you

    Srini.

    You were close! Here it is a valid syntax:

    CASE WHEN SUBSTRING ('file'. "Column1" FROM 1 FOR 2) = "12"

    THEN SUBSTRING ('file'. "Column1" FROM 1 to 6)

    ANOTHER 'folder '. "' Column1 ' END

    Thank you

    GEO

  • Question of repository OBIEE 10 G

    Hi, I'm really new to OBIEE 10 G. Recently, I asked two questions and got great answers, thanks. Now, here's a new.

    I have branch, time, product, and Sales of paintings in the physical layer. Branch, the time and the products are the dimensions and have a relationship several ship sales.

    I built models and mapped the relationship (model of Business and physical diagram). And built the display boards.

    Now because sales are by long branch, (day) and products (product not), what ever size I drag in the responses, the result will be there branch, the time (day) and product (not).

    For example, if I drag the branch and sales, I want to see the branch sales, but instead, I still see sales by long branch (day) and products (not produced).

    I don't know y at - it something I should be doing in the repository? Especially in the MDB. I have the MDB sales as done and branch, time, produced as dimensions. I didn't build hierarchies because I'm not sure what the hierarchy.

    Thank you.

    Thanks for the reply. Finally, I found that it is because I did not in place the aggregation for the fact table columns. It's 'None' by default. I've changed the 'Sum' and problem solved. The hierarchy is irrelevant because my case is very simple and there is only one level in each dimension. But I'll certainly have to build for real things and hierarchy levels. Thank you.

  • Repository OBIEE 11 G missing in EM tab

    Hello

    can anyone help with me.

    in my OBIEE 11 G EM repository missing tab and I m not able to access and change the repository

    and all the servers are down.

    Screenshot_5.jpg

    and if I open analytical m page he ha s server prblm

    Screenshot_4.jpg

    How do I restart all servers

    I already tried to restart all BI using application acive Exchange core components

    and manually on the server location but the servers are still down.

    Please help me

    Thank you

    Mahesh.

    Thank you all for your support.

    I had this problem because my deposit got Some Errors.I have changed who and all servers have started now

  • Download repository OBIEE using WLST

    Hi all

    Currently, I am trying to download the OBIEE repository using WLST script.

    I am aware of the solution to download the repository, but the same type of solution does not work for download from the repository.

    MBean: oracle.biee.admin:type = BIDomain.BIInstance.ServerConfiguration, biInstance = coreapplication, group = Service

    Operation name: downloadRepository

    Description: Download the repository file in a path specified in rpdFilePath. Recommended sequence: lock(), resyncRepository(), simpleCommit(), getRepositoryName(), downloadRepository (...).

    Return type: void

    When I try this in my script:

    params = jarray.array(["d:\\download.rpd"],java.lang.Object)

    sign = jarray.array (["java.lang.String", "java.lang.String"], java.lang.String)

    Invoke ("downloadRepository", params, sign)

    I get an error:

    WLSTException: An error occurred when executing invoke: error while doing an invoke. : java.lang.UnsupportedOperationException: not found MBean operation 'downloadRepository (java.lang.String, java.lang.String)"for MBean registered under"oracle.biee.admin:type = BIDomain.BIInstance.ServerConfiguration, biInstance is coreapplication, group = Service"and put implemented by 'class oracle.bi.management.adminservices.mbeans.impl.ServerConfigurationMBeanImpl '.

    How do they manage to download the repository?

    Thank you.

    A colleague pointed me to sign two input parameters, while there is only a single input parameter.

    Problem solved, the operation works.

  • How to reset the repository OBIEE 11 password?

    Hello world

    I can't be the only one never to deal with this issue! In OBIEE 11 g (11.1.1.7.0), I forgot the password for the repository. So not able to connect to the repository. So, how can I change the password for the repository?

    I hope you can help me on this pickle!

    Irene

    I hope that under the will of useful link to you

    How to reset forgotten OBIEE 11G RPD password? OBIEE by Shiva Molabanti

  • How can I define logic in obiee 11g sql

    Hi all

    I'm changing the SQL generated by OBIEE within the Advanced tab by default logical value. How can I edit that. It looks like read only. I can set the sql logic in Administration-> SQL problem. In 10g, I believe that we can paste SQL logic and set it. Any help will be appreciated. Thanks in advance.

    AJ

    Sorry I got it...... Create new analysis in the Advanced tab will do...

  • Planning form, column formula adding does not correctly.

    Hi all
    I have a little problem with a form of planning. I have two columns
    Column1 - descendants of the units
    Formula, of the sum of col1 Column2 - column (total units)

    The digits are entered as percentages. I have a validation rule for column 2 as if the sum is not 1 (adding percentages is 1 and no 100) cell color should be red.

    Problem appears if I rentre.1 10 units, I get an error and for some reason, the value of the column 2 est.9999999999999 instead of 1.
    If I rentre.5 for two units, it is fine.
    If I rentre.5.3.1,.1, it is well
    If I rentre.3,.3,.3.1, it's well
    If I rentre.1,.1,.1,.1,.1,.1,.1,.1,.2,.1 the result is 1.1 which is correct.

    Don't know why this problem occurs.

    Screnshot: http://i44.tinypic.com/2nk5mz8.png

    Any input would be helpful.

    11.1.2.1 assistance, access to planning via the workspace.

    Published by: N13 on June 7, 2013 06:09

    Here is the bug to the same number:
    BUG: 8540616 -BAD FIGURE ILLUSTRATING PLANNING FORM

    For more information please do a SR with Oracle and work around, I have already provided.

    See you soon...
    Rahul S.

Maybe you are looking for

  • Find my Iphone

    I recently separated from a geek tech... He knew too much technology and manages all the computers and phones in our House. At some point all of our devices are connected to his Ipad and it could follow them all from there. Can you please let me know

  • Playback on YouTube and other video players controls are tiny

    I am running Windows 8.1 on a Lenovo Yoga Pro 2 (high resolution). I think that it's originally the play/pause, volume, full screen, buttons etc. in YouTube and other video streaming of players to be really too small. In addition, Flash games only fi

  • HP z400 workstation: workstation z400 giving 5 beeps Red

    When I sw on my workstation z400 working it gets automatically after conecting to the smps power, it starts with the blue light in the two seconds, power button flashing power button red and gives 5 beep one after the other then pause of 2 seconds an

  • How can I get my iphone4 to my iphone6s photos

    I need my iphone4 photos on my iphone6s

  • DAQmx DAQmxRegisterEveryNSamplesEvent when called.

    HI, I confued on what the event called DAQmxRegisterEveryNSamplesEvent: Here howa to create my task, with many channels: DAQmxCreateTask("",&device.taskHandle); DAQmxCreateAIVoltageChan(device.taskHandle,"Dev1/ai0","",DAQmx_Val_Cfg_Default,-10,10,DAQ