Logical measure column

I created new flag in informatica to identify a service request which fall for certain conditions.
If the service request fall under conditions and then i will mark as 1. If not then 0.
I defined this as INT in physical layer.
and my new logical column is like the following:
count distinct(Case when service_request_flag = 1 then row_wid else null end)
When i run the reports, it is pulling the service request which got value zero.
I am not sure why it is pulling zero service request.
can any tell me what is the issue. is the data type INT problem?
Thanks

HI,
You said, you changed datatype of that column to int .
What is the default datatype when you imported from warehouse...??
And what is the reason that you changed to INT ???
If you think that this is the problem then,
you better check by right clicking that column in physical layer and select View Data...
Is there any error coming while retrieving or did you get the expected results...??
And as you are putting row_wid.. what you want exactly from this column??
Please these information ...
Thanks & Regards
Kishore Guggilla

Similar Messages

  • New column based on four logical measure column

    Hi All
    I have four logical measure column which each one indicate how many activity under each service request.
    ie value of each column is
    col1 - 1,
    col2 - 2
    col3 - 3
    col4 - 4 activities or more
    Based on this can i create a new measure column, whenever any service request has two activitiy, my new column should show 2 (ie value col2)
    can i do the max of all the four columns or how to approach this issue?.
    Thanks

    Yes, this is little bit complicated.
    Since there is no direct SQL which extracts the number of activities under each Service Request in the existing setup. They used the nbr of rows in activity in relation to service request table. This way they calcuate the nbr of activities under each SErvice request.
    In the previous request, business want to see how many Service request with one activity or two activties. Because of this, four logical column have been created.
    Now My request need to see service request with one activity or more than one activity measure in the drill report. Since i have already show that nbr of service request with one activity or more than one activity in a chart format.
    Instead of showing all the four measure in my drill report, i want to show if a service request has got one or more than 1 activity.

  • Have to create logical measure column - Help need

    Hi Gurus,
    I have a situation like this below. A service request may have activity subtype as breakfix, startup etc. A service request may have only one breakfix or breakfix with additional subtypes like startup etc.
    Ex:
    Service Request # Activity subtype 2nd subtype
    1 breakfix none
    2 breakfix startup
    3 breakfix none
    4 breakfix startup
    5 breakfix startup
    How do i write a case statement to find out only breakfix as subtype (2) and nbr of service requst with breakfix and other type as 5.
    Please guide me how to write.

    Your requirement would have been better with an example.
    I'm writing actual SQL for ease - you'll need to convert
    SELECT        CASE WHEN activity_subtype = 'breakfix' THEN
                                   CASE WHEN 2nd_subtype = 'startup' THEN
                                           1
                                   END
                  END count_breakfix_startup,
                  CASE WHEN activity_subtype = 'breakfix' THEN
                                   CASE WHEN 2nd_subtype = 'startup' THEN
                                           0
                                   ELSE
                                           1
                                   END
                  END count_breakfix_none
    FROM table...You'd need to switch to OBIEE CASE <<expression>> WHEN <<expression>> THEN <<expression>> END syntax. and you will have to hard code every subtype/2nd subtype combination.. (or use a repository variable).

  • Drilldowns on measure columns based on time series functions.

    Guys,
    I am new to OBIEE and i need your Help!! I have a dashbaord report which shows the sales USD for the colums below.
    REGION , PRIOR MONTH , CURRENT MONTH PRIOR YEAR , CURRENT MONTH PRIOR YEAR MTD , CURRENT MTD , ACTUALS YTD.
    All the measures are logical columns caluculated in the RPD using the Time Series Functions. The dasboard report has a Prompt Calender Date and all the measure values are caluclated based on the date entered in the prompt.
    For example if the Calender Date on the prompt is 5/31/2011 then the value for the PRIOR MONTH will the sales for APR-2011 and the value for CURRENT MONTH PRIOR YEAR will be MAY-2010 and so on.
    The business requirement is to provide the drill down capability on these measure columns. When i click the sales number on the prior month column it should give me all the detailed transactions for the month of APR-2011 considering the prompt for calender date is 31-MAY-2011.
    I have provided drilldowns based on the Navigation using the column interatcion but i am unable to understand how to provide the drilldown on the measure columns using the time series functions to caluclate the sales for PRIOR MONTH. CURRENT MONTH PRIOR YEAR...etc.
    Please Help!!!
    Thanks,
    Sandeep.

    1. Create an alias fact table (Year Ago) to pull last year value.
    2. Extend your fact table to store another measure (last year sales)
    3. Based on volume of granular data and query pattern on year ago measures, you may create aggregate fact tables.
    hope this helps.

  • OBIEE 11g Admin Tool aggregating measure columns

    I have a few meausre columns that are in my logical table. I would like to sum the measure columns but I can't figure out how.When I create another logical table only the physical columns would show up but no measure/calculated columns. What do I need to do?
    Thank you in advance

    start>>all programs>>OBI>>Administrator
    you will get the Admin tool
    assign points and make question as answered

  • Hiding a measure column in a pivot table in BI Answers

    Hi,
    I need a report to have a hierachical format such as:
    Top Company
    Middle Company
    Customer Name Customer Id Customer Creation Date
    To achieve this, I apparently need to add a measure column to the Rows data, but I don't want to show it.
    Would anyone know how I can hide a measure column in a pivot table?
    Many thanks,
    - Jenny

    Measure Columns can't be hidden like an attribute. How ever you can use custom style sheet for Value and Header Properties to not show the measure.
    for the "Custom CSS Style Options (HTML Only)" under measure properties of the column set "Use Custom CSS Style" value to 'display:none'.
    Let me know if this worked.
    Regards,
    Jay

  • Hiding a Measure Column in Pivot Table view in OBI 11.1.1.6.7

    Measure column hide property is not working with OBI 11.1.1.6.7
    I have checked the flag available in column property to hide the measure column . Any idea

    Measure Columns can't be hidden like an attribute. How ever you can use custom style sheet for Value and Header Properties to not show the measure.
    for the "Custom CSS Style Options (HTML Only)" under measure properties of the column set "Use Custom CSS Style" value to 'display:none'.
    Let me know if this worked.
    Regards,
    Jay

  • Filter measure column for current year

    Hi,
    I'm stuck up with issue, we have a report from three tables D1, D2 and F1. In which D1 is time dimension. Now we have report from D2 and F1 with measures, and the report is placed in Dashboard which is having year prompt.
    F1 is joined with D2 and D1 Time dimension as well, the requirement is in the report one of the measure column say X should always show the values for current year, while others will show according to prompt values.. In short I want to display one of the measure column for current year, even though the user selects the prompt value for year earlier to it the values should not change.
    Please let me know, how to achieve this.
    Thanks in advance

    I think you can still solve this.
    Whatever Srini said keep it.
    Now for the date prompt create a presentation variable.
    pass this presentation variable in the expression for measure which you don't want the current year.
    case d1.year=@{presentationvarialbe} then sum(f1.x) else 0 end
    you can also use the filter expression too.
    remove year prompt filter from the report. and then add a new filter for the measure as<>0.

  • Sorting is not showing in measure column in Pivot View

    Hi,
    We are not able to do sorting on Measure column in Pivot table.Tried in Criteria also but no luck.
    Any help in this regard.

    I'm going to take a guess since your question is very vague. If the column you are trying to sort on is, say, the fifth column and you want it to stay there, then do this: Make a copy of the column and drag the copy all the way to the left. Add the sort to it and then hide it. The pivot table should now be sorted the way you want.
    Try it.
    Sorry, the solution is not for "measures" but for dimensions in the "row" section of the pivot table. Didn't read it thoroughly. What I said won't help you in this case. My apologies.
    Edited by: David_T on Jul 20, 2009 7:59 AM

  • Pivot table without any measure columns

    Hi,
    I have a requirement where all my report columns are from Dimension tables and i have no measure to display in the report.
    But I need to create a Pivot table view for this requirement.
    Can someone help me how to represent results in Pivot Table view without measure columns
    Thanks in Advance.

    Hi Sri,
    Try this it will work.
    Add a dummy column in your measure section.
    then in pivot view --> measure section --> dummy column -->more options -> format heading -->custom css style --> mark use custom css and give display:none
    and
    more options -> format measure values -->custom css style --> mark use custom css and give display:none
    Thanks
    Diney

  • Drill on Measure column in Pivot table using Navigation

    Hi,
    We are using INDEXCOL function in Column formula to determine the level of hierarchy to which the user is login in to the Application using the session variable.
    Example:
    INDEXCOL( @{LevelChange}, ISP."Position"."Territory Name", ISP."Position".L1, ISP."Position".L2, ISP."Position".L3, ISP."Position".L4, ISP."Position".L5, ISP."Position".L6, ISP."Position".L7, ISP."Position".L8, ISP."Position".L9)
    Where LevelChange=Presentation variable which gets the value from Session variable.
    Now the issue is:
    We want to have drill down on Measure column and pass the corresponding values like Stage Name,Fiscal Quarter and the level of hierarchy to the next navigated report.
    Is this possible using the implicit feature(navigation on the column value) or we have to use the PortalPage Nav Function.
    Regards

    Just use a session level and set the higher level. The user will have then the possibility to drill down from level 4 to level 5 for instance.
    http://gerardnico.com/wiki/dat/obiee/logical_sql/obiee_indexcol
    The problem with the presentation variable is the scope. You can use it but only in a dashboard, if you open an other report, the presentation service variable is set back to not initialized and you will get the default value.
    An other little thing :
    How do you set the default value ?
    In your formula, I see a presentation variable LevelChange but no default ?
    INDEXCOL( @{LevelChange}, ISP."Position"."Territory Name", ISP."Position".L1, ISP."Position".L2, ISP."Position".L3, ISP."Position".L4, ISP."Position".L5, ISP."Position".L6, ISP."Position".L7, ISP."Position".L8, ISP."Position".L9)

  • In Pivot table how to show folder heading of a Measures column

    Hi gurus
    I am using 11.1.1.6.6 version
    Any idea how to show column heading of a measure column in Pivot table view.
    for Dimension its working fine
    I have 3 dimension column and 12 measure column in my report

    Hi Santosh Sutar,
    Did you mean that you want to hide/show the rows in an worksheet? If I understood correctly, there is no such API in apps for Office at present. Most of functions are used interop with data.
    If you want apps for Office to support this function, I suggest that you submit the feedback from link below:
    Customer Feedback for the Office Developer Platform
    And you get learn more about apps for developing from link below:
    Build apps for Office
    Regards & Fei
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • More than 4 measure column not in answer

    Hi,
    We have some measures like cnt,avg,ytd ,last 13 week etc measure in fact table.
    When we are selecting any of two it's working fine ,if we choose 3 measure column in answer side,it's showing below error:
    Error Codes: OPR4ONWY:U9IM8TAC:OI2DL65P
    State: HY000. Code: 10058. [NQODBC] [SQL_STATE: HY000] [nQSError: 10058] A general error has occurred. [nQSError: 46036] Internal Assertion: Condition m_CountFields == static_cast<int32>(m_ColumnNameVector.size()), file .\Src\SQCSCacheStorageListStream.cpp, line 222. (HY000)
    Please help.

    hi
    i too am facing this.....
    appreciate any solution or info reg. this
    Edited by: vj?! on Dec 27, 2009 5:32 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

  • Issue with OBIEE 11g measure columns

    Hi,
    Recently one of our application got migrated from 10 to 11g. post migration we had patched 6.1 and 6.2.
    measure column defined in RPD were working fine in 10g and 11g(after patching) as well. Suddenly all measure columns are behaving abnormal.
    Even though the measures are defined at particular level, the values are getting summed up and displaying the same for each and every dimension entity.
    Simply bifurcation is not happening according to the dimension in all the reports.
    c1 c2 c3
    a x 2
    b y 2
    c z 2
    Any guess?
    Warm Regards
    Kishore Panuganti

    Check the physical query for group by clause cols, and check for those columns levels.

Maybe you are looking for