How to give filters from Year level to day level in dashboard?

Hi all,
I have some 7 to 10 components and i want the filter from Year level to day (Year,Quarter,Month, Week and Day) with "All" option as default from Quarter to Day level.
As default Only current year should be selected for which my components should display 4 quarters data
and when any quarter is selected my components should display 3 respective months data
then when particular month is selected then my components should display 4 weeks data
when week is selected the 7 days data
and last when day is selected only that days data should be displayed.
All the data will be coming from Database, to get data we need to build query & prompts and map accordingly
And those prompts should be mapped to these filters and work dynamically.
If anyone know how to implement this please let me know.
Regards
Nithesh M R

Hi,
As you said try to prompts for all the above mentioned filtering criteria, then use the combo box as a drop down filter, In first combo box take year list. From second combo box take the data in Tree view using filtered rows insertion type. Below given link can give you a idea how to pass the subsequent values to the next cell.
Instead of continent & country & ..... you can take quarter, month, week and so on, so your combo box fills the data automatically.
Filtering Through Combo Box
--SumanT

Similar Messages

  • OBIEE 11g How to pass variable from one prompt to another prompt in dashboard page.

      How to pass variable from one prompt to another prompt in dashboard page.
    I have two prompt in dashboard page as below.
    Reporttype
    prompt: values(Accounting, Operational) Note: values stored as
    presentation variable and they are not coming from table.
    Date prompt values (Account_date, Operation_date)
    Note:values are coming from dim_date table.  
    Now the task is When user select First
    Prompt value  “Accounting” Then in the
    second prompt should display only Accounting_dates , if user select “operational”
    and it should display only operation_dates in second prompt.
    In order to solve this issue I made the
    first prompt “Reporttype” values(Accounting, Operational) as presentation
    values (custom specific values) and default presentation value is accounting.
    In second prompt Date are coming from
    dim_date table and I selected Sql results as shown below.
    SELECT case when '@{Reporttype}'='Accounting'
    then "Dates (Receipts)"."Acct Year"
    else "Dates (Receipts)"."Ops
    Year"  End  FROM "Receipts"
    Issue: Presentation variable value is not
    changing in sql when user select “operation” and second prompt always shows
    acct year in second prompt.
    For testing pupose I kept this presentation
    variable in text object of dashboard and values are changing there, but not in
    second prompt sql.
    Please suggest the solution.

    You will want to use the MoveClipLoader class (using its loadClip() and addListener() methods) rather than loadMovie so that you can wait for the file to load before you try to access anything in it.  You can create an empty movieclip to load the swf into, and in that way the loaded file can be targeted using the empty movieclip instance name.

  • Need idea on how to implement this - repeating monthly data on day level

    Hi all, i had run into the following thing, this may soung easy, but i'm searching for the best solution:
    i have a dataset per the stores of the customer, the dataset is an asset count on the end of the specific month. I must not sum the data between two/N months.
    We they need to do several querries like
    sales/assets/day
    Sales/itemgroup/asset/day
    sales/salesperson/asset/day
    etc.
    My problem is that i have this data on a month&store level, but i need to provide a solution, so it could be handled as a "global" value on that, so they can query it "almost any ways".
    I don't really want to generate day/other level data based on this, so any tricks, how to repeat the data in all lines for that specific month on presentation/Business level?
    All ideas are welcome.
    Thanks&Regards,
    D
    Edited by: user8113564 on 2012.09.11. 4:52

    Sorry if I took this wrong but are you try to do level based measured
    Take the same physical column in the fact and have one aggregated at a month level and the other at a day level.
    If yes, make sure you build a date dimension hierarchy and mapped at the correct level to the fact. Then take your measure and correctly define them at the correct level, day, month etc
    This should sort it out

  • How to give the Fiscal year period in RSA3 for checking the data.

    Hi BW Experts, good morning.
      We have loaded the data monthlywise with selection parameters as Fiscal Year Period(FISCPER).
      While checking the data consistency in both R/3 and BI, the selection parameter which i have given  is in the format of         001.2005   
      I got the records in BI side.
      But if we give the same format In RSA3 in the Fiscal Year Period tab , we r getting 0 records.
      So kindly help me how to  enter the selection parameters for 1 month.
        Thanks
                  Anjali

    Hi sanyam ,
       Thanks for the help.
      I got it now.
      Thank you so much
      Bye
                   Regards
                         Anjali

  • Suppress Drill from Months Level to Day Level in Column Selector

    Hi all,
    I have month Column in my Report and and i have month column in column selectors.
    Default the report run on Month,some dimension and other meaure columns.Here i have put no drill from Month to Day.So it wont show the drill.
    But if is select the Month column in column selector that i will have 2 columns one having month with no drill and other month having drill.
    How can i suppress the drill on the month which is coming from Column Selector?
    Regards

    Try this:
    1) Select "Month" in your Column Selector.
    2) Now go to Criteria mode. The "Month" column from the Column Selector should be there. Click on the Column Properties of the column and set Value Interaction to "No Interaction."
    3) Save your report.
    4) Go back to Results tab and re-select your "default" column in the column selector and Save report again.
    Edited by: David_T on May 17, 2010 12:03 PM

  • HT201401 How to stop iphone from calling people randomly day and night

    My phone keeps going to voice control and calling random people nigh ad day ań idk how to fix this can u guys plz help me

    Standard troubleshooting...
    1. Remove apps from the Recently Used (multi-tasking) list...
    - From any Home Screen, double tap the home button to bring up the Recents List
    - Swipe up on the app preview card to remove it from the list
    - Press the home button when done.
    2. Restart by pressing the sleep/lock button until you see the slider.  Slide to power off.  Restart by pressing the sleep/lock button until you see the Apple logo.
    3. Reset by pressing the home and sleep buttons until you see the Apple logo. Takes about 5-15 secs of button holding and you won't lose any data or settings.
    4. Restore with your backup.
    5. Restore as new, i.e. without your backup. See how it runs with nothing synced to it.
    6. If still a problem, it's likely a hardware issue.

  • How to select last year's first day

    Hi friends,
    How to get the last year's first day using sysdate as on sysdate
    this gives the current year's start date
    I need last year's start date like 01-jan-2010 as on sysdate
    thanks

    Another:
    SQL> select trunc(sysdate-365.25,'YYYY') from dual;
    TRUNC(SYSDATE-365.25
    01-JAN-2010 00:00:00Note: the .25 accounts for this query being run on the last day of a leap year e.g.
    SQL> select trunc(date '2012-12-31'-365.25,'YYYY') from dual;
    TRUNC(DATE'2012-12-3
    01-JAN-2011 00:00:00Edit: Note, this still isn't completely accurate and could give a wrong result. Better solution is to use the add_months function.
    Edited by: BluShadow on 06-Apr-2011 11:55

  • How to give level value 'unknown'

    Hi there,
    When creating a dimension with OWB, we get for every level also a row with empty values voor de levels underneath.
    E.g.: Dimension customer: Level Total, level customer group, level customer.
    I get:
    =====================================
    Level_total customer_group customer
    Total NULL NULL
    Total Group1 NULL
    Total Group2 NULL
    =====================================
    This is generated by OWB automatically.
    Anybody any idea how to fill in 'Unknown' instead having it blank? I've looked if i can fill somewhere a property, but could not find.
    Any help is appreciated.
    Thanks
    Sandra

    hii vishal,
    this selct option i already taking from database.
    only i want to give constant value to this field ..
    u mean to write selection-screen  select-option in coding part of query/infoset?
    for this field?
    n give const value in this code/.?

  • How to do transports from os level

    hi
        i have a question .how to do transports from os level.pls give me ans
                                                                                    thanks

    Hi Raghu,
    Logon with <SID>adm goto command promt.
    Goto path /usr/sap/trans/bin/
    Assume Your DEV to QAS
    First add request to buffer.
    tp addtobuffer DEVKXXXXX QAS pf=/usr/sap/trans/bin/tp_domain_<SID>.PFL
    Now import Phase
    tp import DEVKXXXXX QAS client=XXX pf=/usr/sap/trans/bin/tp_domain_<SID>.pfl
    Check for the return codes.
    Regards,
    Ganesh
    ****Reward points if Helpful*****

  • In my iPhone 5s clock alarm sounds i have songs that i didn't sync to my iPhone but are purchased songs from years ago. if i accidentally select them it will end up on my phone in the music app. just annoying how.

    so i tried to resotre my iphone from new such and such. but then i go to my clock and then alarm, sounbds pick a song. theres all these songs that i didnt sync from my mac. theyre songs from years and years ago, a few CPUs back, songs that i dont even have on my mac. anyways how do i get rid of them or change a setting as to not see them?

    Hi Gregg,
    Have you tried resetting the device (nothing will be lost): Hold down the Home and Power buttons at the same time and continue to hold them down until the Apple appears (up to 30 seconds). Once the Home screen redisplays, see if your Music app is behaving normally.
    Cheers,
    GB

  • How  to transfer data from one system to another by datamart please give de

    how  to transfer data from one system to another by datamart please give details

    Hi Deba,
    Find the below SAP help doc which may help u...
    http://help.sap.com/saphelp_nw70/helpdata/en/12/43074208ae2a38e10000000a1550b0/frameset.htm
    Also find the below threads...
    Loading data from one cube to another cube.
    data copy from infocube to infocube in two different BW systems
    Delta when loading from ODS to ODS
    reg datamart
    Data mart flag
    Regards,
    KK.

  • How to Calculate column (Month, Year) from date or timestamp

    Hi,
    Name
    SQL Data Type
    Dimension
    Column Store Data Type
    Key
    Not Null
    Default
    Comment
    T_STAMP
    TIMESTAMP
    LONGDATE
    How to generate Month and Year from timestamp field in Analytic View.
    Please provide me some valuable input. I have searched SCN before posting this discussion.

    Hi KD,
    You can apply the following formulas in the expression:
    For Year :
    leftstr(string("Timestamp"),4)
    For Month:
    midstr(string("Timestamp"),6,2)
    Regards,
    Krishna Tangudu

  • Im having trouble changing my security questions, they are from years ago so i do not remember them and the reset email is no longer active,and i dont know how i can use the account because i added money to it but it asks for the questions. anybody help??

    im having trouble changing my security questions, they are from years ago so i do not remember them and the reset email is no longer active.., and i dont know how i can use the account because i added money to it but it asks for the questions. anybody help??
    this says it all..

    Welcome to the Apple Community.
    Contact Apple through iTunes Store Support, and explain that you have forgotten your 3 security questions, that you can reset your password, but doing so doesn't reset your security questions.
    Remember, support will receive hundreds, if not thousands of requests per day, some from people trying it on, others with little explanation and others that are written extremely poorly. Take the time to explain your situation properly, be precise and concise, brief but comprehensive.

  • How to reset password from sql level

    Dear All,
    I have created a new client 300 which is a copy of 000,
    i have selected only SAP_CUST  profile, no user master profile is selected.
    After creation of client i have created one user,
    now only one user is existing in newly created client 300, unfortunately , i am unable to login using that user,
    for which i have to reset the password,
    how do i proceed to attend this issue.Can i do it from OS level or SQL level,, if so then please let me know how do i proceed for it.
    regards,
    SM

    HI,
    use the source client password for SAP*
    suppose you copied 300 client from source client  000 then use 000 sap* password in 300
    if you are still getting problem with login using sap* in client 300
    then  do following
    run query analyzer if you use SQl server 2000
    or run sql server management studio if you use SQL 2005
    connect to database
    use folloiwng query
    in SQL 2005 click on new query
    USE SID
    DELETE sid.USR02 where MANDT='300' and BNAME = 'SAP*'
    where SID = your sap system id ID in uppercase
    sid = your sap system id in lowercase
    query is case sensitive
    after executing query login with sap* user and password 'pass'.
    regards,
    kaushal
    regards,
    kaushal

  • How to give link to concrent/request seeded page with breadcrumb from apex

    Hi,
    I have given link to Concurrent request seeded page From apex for view the details of conc/req when it is submitted from Apex button. The conc/req page is opening. But I need breadcrumb to be given into the conc/req details page to go back to my Apex page. I dont know how to give this link.
    I tried with OAWebBeanConstantes=ADD_BREADCRUMB_YES and also I tried with addBreadcrumb=Y with the URL of apps conc/req details page(MONITOR Page).
    Please someone help me ,How can I give breadcrumb to the apps page to move back to Apex once details are seen.
    Thanks
    Alaka

    Hi All,
    Please someone tell me how to resolve this...?? I have already tried with the breadcrumb as I mentioned above. But from OAF to concurrent request details (Requests) page breadcrumb feature is supporting. From Apex to that page why it is not supporting. Is there any other way to do this.?
    Thanks
    Alaka

Maybe you are looking for

  • Problem logging in to admin account on Apex 3.1

    I have just upgraded to Apex 3.1 and I'm getting an error when logging on as admin. After I click log in I get: Line: 35 Char: 1 Error: Object expected Code: 0 Line 35 is : "<td colspan="1" rowspan="1" align="left"><input type="button" value="Login"

  • Error in Webgate 11g (OAM, Webgate, WebTier)

    Hi, I'm setting up the WebGate in Webtier 11g, linux platform, I created a WebGate instance, configured and registered in OAM 11g 11.1.1.5.0 But the following error occurs in OHS Message from syslogd@ at Sat Feb 25 15:37:13 2012 ... wlroam15 Oblix: 2

  • How to wipe hard drive clean

    I down loaded maverick and I choose to make random passwords and I didn't save them now I have issues with the key chains how do I start over I have older back ups on hard drive

  • Any ideas on why the numerical keypad on the far right isn't working?

    Any ideas on why the numerical keypad on the far right isn't working? I am running Windows Vista Business with ALL of the latest M$ updates. I am running have updated ALL of Apple's updates also. I can't get the numerical keypad to work. All of the o

  • Original file gone, but iPhoto still shows preview

    I have lost the original files but can still see previews when I look in the Last 12 Months import tab. I've tried to drag one to the desktop but I get an error that says, "Couldn't open the file. It may be corrupt or a file format that Preview doesn