Two dashboard prompts on single column expression

Hi
i need to use 2 dashboard prompts
currency-transactional,operational,reporting
period--ptd,ytd,qtd
i have netamount ,reporting netamount,operational netamount columns
i calculated ptd,qtd,ytd in rpd
iam using currency and period as prompts
how to do this

Hi veera
now iam give clearly
on the netamount column i apply presentation variable for ptd,ytd,qtd
then period prompt is working
and im apply another promt currency
if weselect currency-transactional and currency=ptd in prompt
then it give transactional ptd netamount
if weselect currency-reporting and currency=ptd in prompt
then it give reporting ptd netamount
like this i get the values
please give some detail help with sample example

Similar Messages

  • Can we create two dashboard prompts for the same column in the samepage

    hi ,
    can we create two dashboard prompts for the same column on the same page,
    I have a date column and I am trying to create 2 dashboard prompts on the same page one as from date and the other one as to date.Is this possible to create.When I am trying to create it is giving me error like cannot use same column for creating the prompt
    Any suggestions or ideas

    863997 wrote:
    hi ,
    can we create two dashboard prompts for the same column on the same page,
    I have a date column and I am trying to create 2 dashboard prompts on the same page one as from date and the other one as to date.Is this possible to create.When I am trying to create it is giving me error like cannot use same column for creating the prompt
    Any suggestions or ideasYou are correct. You cannot build two prompts on the same column. Use this link for instructions on how to build a "between prompt" because of this fact:
    http://oraclebizint.wordpress.com/2008/02/26/oracle-bi-ee-101332-between-prompts-for-date-columns-using-presentation-variables/

  • How to create 'NOT in between' dashboard prompt on a column

    Hello Guys,
    I have a simple request where the dashboard prompt has to send in data for 'NOT in between'. OBIEE does not give this option by default..
    Any one who tried this .. can you please help with some pointers on this.
    Column1 less than 100 or greater than 2000 --> This condition has to be sent from the dashboard. So my option in SQL is to use NOT in between 100 and 2000.
    Thanks in advance
    Kris

    Hi kris,
    in the prompts you will have not between condition check out....if not write a SQL like this for the prompt
    SELECT FROM table_name WHERE column_name not between 100 and 2000*
    (OR)
    SELECT FROM table_name WHERE column_name >= 100 AND column_name<= 2000*
    you want values in that range then the SQL should be
    SELECT FROM table_name WHERE column_name between 100 and 2000*
    check this article
    http://oraclebizint.wordpress.com/2008/02/26/oracle-bi-ee-101332-between-prompts-for-date-columns-using-presentation-variables
    UPDATED POST
    in place of constant values play with your session variables or Presentation variables by writing this above SQL according to your requirment and you would get your solution.Give a try then comment is it working or not.
    Hope answers your question.
    Cheers,
    KK
    Edited by: Kranthi on Jan 24, 2011 10:43 PM

  • How to concatenate two colums into one single column

    I need some ideas to concatenate two different columns into one single column using a set of distinct values.
    For Example,
    Customer Product Number
    xyz A 1
    xyz B 2
    xyz B 1
    AAA C 7
    AAA A 1
    The result should look like this,
    Customer Value
    xyz A1 B2 B1
    AAA C7 A1
    How would I group this into once value ?
    Thanks in advance ...

    Tom's discussion of writing your own aggregate routines
    http://asktom.oracle.com/pls/ask/f?p=4950:8:::::F4950_P8_DISPLAYID:2196162600402
    starts off with a link to the 8i alternatives
    "see
    http://asktom.oracle.com/pls/ask/f?p=4950:8:::::F4950_P8_DISPLAYID:229614022562
    for 8i methods (not aggregates)"
    Unforutnately, it's a lot more work in 8i.
    Justin

  • Manipulating Dashboard Prompt value in Column Labels

    Guys,
    I have a bit of strange requirement and I was wondering if anyone resolved this before
    Users select month value called 06_12 in the prompts, I need to extract 12 out of that and display it in column labels
    So if 06_12 is selected then my measure label should display Actual 12
    So if 06_11 is selected then my measure label should display Actual 11
    Any ideas??
    Edited by: Prash11 on Jul 23, 2012 4:36 AM

    Combining with similar request really doesnt work for me so well becuse there is a lot of conditional formatting on my measures which i lose them when i use that approach
    Now if u set a variable and define it at session it will still be the same as it doesnt give me the flexibility to manipulate the value.
    So any other suggestions?

  • Data with two rows in a single column

    I have been working on a report with the customer due amounts shown in bucketed columns eg 1-30 , 31-60 etc for each Customer,
    so for each column I want to show an additional row with the % of the due amounts for each bucketed column.
    . The format of report should look like below in pivot/table view
    |Customer| |Due1-30 | Due31-60 | Due60+ |     Total |
    |XYZ | |     3000 |     2000 |     5000 |     10000 |
    |      |%Due |     30% |     20% | 50% |     100% |
    ABC….                         
    I have to get the percentages on the measure values in a separate row(not as a seperate column). Could you please help me how to get result like the format what I have shown
    Thanks,
    BP
    Edited by: user8116383 on May 6, 2011 8:55 AM

    Hi
    This can be achievable by using Pivot view.
    1.In Columns field place the customer and place the measure lables in the rows field and the measure column in measure field.
    2.Duplicate the measure column and name it as %Due and click more options on this duplicated column and click shown data as -> percent of -> Row
    Thanks
    Diney

  • How to place two constraints on a single column

    hii
    i have a column which will store data in date format
    now i need all the records whose value is not null in tht column and date should be from last week to current week
    is there any other way to write query other than like this
    let us assume its terminate date coloumn
    select * from <tablename>
    where terminate date is not null
    and terminate date between sysdate+7 and sysdate-7
    or
    select * from <tablename>
    where terminatedate between sysdate-7 and sysdate+7
    and terminatedate not null

    Err... ok I may have said that wrong...
    But I still think it might be exclusive, no?
    eg. you store 1, 2, 3, 4 and 5 in a table.
    select *
    from table
    where number between 1 and 5
    and you will get 1, 2, 3, 4
    That is exclusive of the second value.
    That is the standard definition of exclusive.
    Inclusive includes the last value (eg. 5).
    Exclusive does not.
    There is the exception of the time, which I would like to know more about.
    I don't mean to ruffle everyone's feathers though!
    Sorry if I sound like a know-it-all :P
    I freely admit that I don't!!
    So back onto the time thing...
    Say if I store...
    01/01/07 00:50:00
    01/01/07 18:20:00
    02/01/07 05:35:00
    02/01/07 20:20:00
    03/01/07 00:00:05
    03/01/07 23:50:00
    in a table
    and i go
    select *
    from table
    where date between to_date('01/01/07','dd/mm/yy') and to_date('03/01/07','dd/mm/yy')
    Won't I get
    01/01/07 00:50:00
    01/01/07 18:20:00
    02/01/07 05:35:00
    02/01/07 20:20:00
    back?
    and if i go
    select *
    from table
    where date between to_date('01/01/07','dd/mm/yy') and to_date('04/01/07','dd/mm/yy')
    OR
    select *
    from table
    where date between to_date('01/01/07','dd/mm/yy') and to_date('03/01/07 23:59:59','dd/mm/yy HH24:MI:SS')
    I'll get them all?

  • How to add different columns in a single dashboard prompt?

    Hi
    I am new to this forum. I got a new requirement, my client is asking me to show multiple columns with multiple tables in a single dashboard prompt
    for Ex: Column name Table name
    1. Customer 1. Customer Details
    2. Market 2. Region
    3. Order 3. Order Status
    4. Product 4. Product Type
    He wants to show all these column names in a single prompt when user click on the particular column name it should appear on report. Is it Possible? if possible tell me how?

    See this thread...
    Re: How to add new columns by using Multiselect

  • How to display two or more links in a single column

    Hi,
    Is there a way to display two links in a single column in a sql query report . I am able to specify one but I am not able to add links to the same column . I want to take the same column id and redirect the user to different pages based on the values selected .
    Thanks

    There is no way to this declaratively that I know of. Some alternatives...
    1. Put the conditional branching logic in the report SQL itself. e.g. case when ... then '< a href=..' else '< a href=...' end and make sure the column display type is Standard Report column
    2. Have the declarative column link go to a dummy/intermediate page and setup On Load: Before-Header branches on that page to redirect to the desired page based on the item value(s) passed in to the intermediate page.

  • Column constrain doesn't work correctly in dashboard prompts

    Hi,
    We have a dashboard prompt with 3 columns. The first both columns are set to default values. The last column has multi-select control with checked Constrain checkbox. The shown values should depend on the values of the other columns.
    If a user opens the multi-select window to choose values, only values are visible, which depends on the values of the other columns. This is the expected behaviour.
    But if the user clicks on the Go-Button in the multi-select window, all possible values are shown. Can anybody let me know why this is happening and how to overcome it.

    Hello,
    I think that this is the default behavior.
    At my reports happens the same, so nothing is apparently wrong in your prompt.
    Does anybody know a way to avoid this behavior?

  • Dashboard Prompt - Variable - Populate/Calculate column in Pivot Table

    1. I have a need to store the values of three prompts (Year, Quarter and Month) in my dashboard prompt, So a 'column A' (calculated value/measure) can be dynamically populated in my pivot table based on the users chioce.
    These prompts have to be multiselect prompts as the user may opt for 2 or more years/ quarters / months etc.
    I don't think Presentation Variable would work as I have to use multiselect prompt, I have been trying Non-System Session Variables & dynamic repository variables- but could not get it to work. I am thinking only of using one of the three variables (session/dynamic/presentation) so far, is there a better way to tackle this?
    Any help/pointers would be much appreciated, thanks

    I should clarify a little: our sales "process" is very simple (not really a process). We do not use Opportunities. We enter new Leads, and if we win the business, we convert them to a Contact. Thus, our "win %" is simply the number of converted Leads divided by the total Leads for a given period. In my table I would like to display the % of Leads for a given period that are converted to Contacts.
    Thanks again.

  • Dashboard Prompt to filter multiple Subject Areas (in a Combined Analysis)

    I have a Combined Analysis where I am combining multiple Subject Areas. I want to add this report to a dashboard to use a dashboard prompt to filter by the Year.
    The problem I have is because the 'Year' value in each subject area has a different Column Formula ("Close Date"."Calendar Year" and "- Custom Number/Integer (Custom Object 2)".INDEXED_NUM_0)) I'm unable to have a single 'Year' prompt filter both Column Formulas.
    I have it currently working by creating two dashboard prompts - one for each subject area - that each ask for the Year to filter by.
    Is there a way to have a single prompt for Year and somehow have that filter both subject area's 'Year' value?

    I have tried a bit with no luck.
    In the Dashboard Prompt on that 'Year' filter I set the Presentation Variable to 'FILTER_YEAR'.
    I then set the filter in the report to be Equal to a Presentation Variable with the Variable Expr set to 'FILTER_YEAR'.
    When I run the report and enter the filter year it doesn't bring back any data for that report.
    Anybody have experience using the Presentation Variables?
    Thanks

  • Dashboard Prompts Not Working in OBIEE 10g

    Hi People,
    I  developed a report with two dimension column and a fact column.
    NBTY Level 1
    NBTY Level 2
    Spend Amount
    NBTY Level 1 and 2 are from dimension and Spend Amount is a fact column. Both are joined in star schema. The results are correct.
    So now i published the same report in a new dashboard, and created a new dashboard prompt on Dimension column "NBTY Level 1". I applied filter on the same column (Is Prompted) in report.But when i gave a value in Dashboard Prompt, the report is not changing. I cannot even find any trace of error displayed. When the prompt is selected and clicked on 'GO' button there is no moment in browser, it stays still. I have also permissions and everything is fine
    Can some one please help in finding the problem, its an urgent issue, what possibly could go wrong?

    Thank You for your reply.
    Yes the prompt column is from same subject area.
    I Created a Column Prompt in the report using the same column and it worked for that report. But when i used that prompt in dashboard its not applying.
    I will share a logical query for Report but How should i fing logical query for a prompt?
    The total behavior looks very strange.

  • How to include the Age and Age operator in Dashboard prompts

    I wouild like to create two new dashboard prompts 'Age' and 'Age Operator' both as drop downs.
    The 'Age' prompt should have the values from 1-100 as dropdown for the users to select from.
    The 'Age Operator' should have the values <, <=, >, >=, = as dropdown for the users to select.
    I have PERS_DOB column in Person table. I do not have any operator values stored in any tables.
    How can I create these two dashboard prompts so that the user can select the values from the
    dropdown list and filter the results against.
    For example:
    User select Age 20 from Age dropdown prompt and '<' from the Age operator prompt the results
    should filter based on the above and should get us the records for the people whose
    Age is less than 20.
    I appreciate any help on this.
    Thanks.

    You could try this:
    1) For the "age operator" prompt, use words to describe the operators (e.g., "less than" rather than the symbol <=, etc.). (I'll assume you know how to build the prompt using CASE statements and UNION. It's pretty straightforward.)
    2) Build 5 small reports, one for each operator, that only returns a row when the particular operator is selected in the prompt. Each of these reports will be in the guided navigation of a separate section.
    3) Now, build 5 versions of your report with a filter on the "Age" prompt, one report that calculates the 5 different permutations of the age chosen (i.e., less than prompt, less than or equal to prompt, etc.) and put each report in the guided navigation section that corresponds to the applicable small report you built in step 2. So, for example, for the section that returns a row when "less than" is chosen, put the report that filters for "age less than 'age prompt'."
    So here is how it works: When the user selects an age and operator, only the section that corresponds to the operator selected will display because of the guided navigation. The other 4 sections will not show, because the small report in the guided navigation part of the section will return no rows.

  • Dashboard Prompt Title

    Hi,
    I am displaying a report in a Dashboard. This report has three Prompts, "From Date", "To Date" and "Department".
    Once I select the prompts, the reports displays correctly. However, I would like to Print on top of the page the actual values of for "From Date", "To Date" and "Department".
    The format will be something like this:
    Report Name:
    Date From: 12/01/2008 To 12/01/2008
    Department: AnyDepartment
    How can I do this?
    Thanks,
    rkingmdu

    Ok,
    Here are the two dashboard prompts:
    Prompt 1: CHAR column,
    formula: CASE WHEN 1=0 THEN "ACTIVITY"."STATUS" ELSE 'Test' END.
    Operator: "is equal to / is in".
    Control: Drop down list. "All choices" box is checked
    Show: SQL Results. "SELECT DISTINCT CAST("ACTIVITY"."DATE SOLD" AS DATE) FROM SUBAREA
    Default to: Report Defaults
    Set Variable: Presentation Variable - FromDate
    Created Prompt2 with the same procedure, except the PV name is ToDate.
    In the Report, I display two columns, Product and Date Sold.
    The Filter for the report looks like this:
    "ACTIVITY"."DATE SOLD" >= '@{FromDate}'
    AND "ACTIVITY"."DATE SOLD" <= '@{ToDate}' .
    When I open the dashboard, I get the error:
    State: HY000. Code: 10058. [NQODBC] [SQL_STATE: HY000] [nQSError: 10058] A general error has occurred. [nQSError: 17001] Oracle Error code: 1858, message: ORA-01858: a non-numeric character was found where a numeric was expected at OCI call OCIStmtExecute: select T21021.PRODUCT as c1, T21021.DATE_SOLD as c2 from ACTIVITY T21021 where ( T21021.DATE_SOLD between '@{FromDate}' and '@{ToDate}' ) order by c1, c2. [nQSError: 17011] SQL statement execution failed. (HY000)
    SQL Issued: SELECT "ACTIVITY"."PRODUCT" saw_0, "ACTIVITY"."DATE SOLD" saw_1 FROM SUBAREA WHERE ("ACTIVITY"."DATE SOLD" >= '@{FromDate}' ) AND ("ACTIVITY"."DATE SOLD" <= '@{ToDate}' ) ORDER BY saw_0, saw_1
    Thanks
    rkingmdu

Maybe you are looking for

  • "the ipod 'name' cannot be updated. the required file could not be found."

    PLEASE can someone help me out on a problem that is infuriating me?? i've not long had my 30GB 5th generation video ipod, and i can't get any photos or video to transfer onto it! when i connect my ipod and itunes opens up, an error message appears sa

  • Non-Display of edited photos in Bridge

    I use Elements 8 and Bridge CS4 on a Mac.  After editing a photo in Elements the edited version doesn't appear in Bridge until I have Refreshed which takes 3-4 minutes each time.  A couple of times the edited photos have appeared in Bridge immediatel

  • Formula node uotput variable

    If i use two different formula nodes with the same output and input variable names will the variables (scope) be the same? In the first formula node i define a variabe "int32 first ==0" then in a seperate node embedded in a for loop structure I write

  • My house is not listed

    I would like to get BT Infinity, but when checking the post code it dosnt exist.  All the other 30 houses in my avenue do and i can even do an estimated line speed test on them.  The BT pole is outside my house and even though i have a phone with a c

  • Add buttons to transaction LT10

    Hi )) I don't see and use 'sort' buttons on the screen in transaction LT10 (( Can I add these buttons  ? Help me, please.....