How to create dropdown or drilldown in dashboard ?

All
i have this requirement to create a dashboard that has a drilldown or dropdown list for a list of reports
Example
-Sales Department
    - sales by region
       - U.S
       - Asia
       - Europe
   - Sales Per Period
      - Quarter
      - month
      - year
i want them to display like this or something close to it
any suggestions or ideas ?
thanks alot

SasiNagireddy
thanks for response
this should be done in the repository level right ?
if yes i am just using the BI Publisher at this point
not integrated with OBIEE or repository
If no please guide me how to do it through publisher
Thanks

Similar Messages

  • How to create dropdown box, radio button,check box in wad

    Hi,
    How to create dropdown box, radio button,check box in wad.
    Thanks,
    cheta.

    Cheta,
    This are all standard Web Items in the WAD. Drag them onto your template and then make the changes you need to them in their Properties.
    Regards
    Gill

  • How to create simple scroll-bar table dashboard in Excel 2003?

    How to create simple scroll-bar table dashboard in Excel 2003?
    Pl mention from step 1 as I am new to this 

    Hi UltraDev,
    We discuss SQL Server PowerPivot for SharePoint related issue in this forum. In your case, I suggest you post the question in the following forum for better support:
    Excel IT Pro Discussion:
    http://social.technet.microsoft.com/Forums/office/en-US/home?forum=excel
    Regards,
    Elvis Long
    TechNet Community Support

  • How to create dropdown or checkbox in report painter?

    hi experts,
    I would like to ask on how to create a dropdown / checkbox in my report painter's selection
    screen.
    thanks,

    Hi,
    For check box and list box look at the below example,
    TYPE-POOLS: vrm.
    DATA: w_param TYPE vrm_id,
          it_values TYPE vrm_values,
          wa_value LIKE LINE OF it_values.
    PARAMETERS: p_rec_ty AS LISTBOX VISIBLE LENGTH 10,
                p_check AS CHECKBOX.
    AT SELECTION-SCREEN OUTPUT.
      w_param = 'P_REC_TY'.
      wa_value-key = '1'.
      wa_value-text = 'AAAAA'.
      APPEND wa_value TO it_values. "Add values like this for the list box
      wa_value-key = '2'.
      wa_value-text = 'BBBBB'.
      APPEND wa_value TO it_values.
      CALL FUNCTION 'VRM_SET_VALUES'
        EXPORTING
          id     = w_param
          values = it_values.
    START-OF-SELECTION.
      READ TABLE it_values INTO wa_value INDEX p_rec_ty. "Get the value for the particular key
      WRITE: wa_value-text , p_check.
    Regards,
    Maoj Kumar P
    Edited by: Manoj Kumar on Feb 6, 2009 10:54 AM

  • How to create dropdown ?

    Hi,
    i have created some new fields in BUPA using EEWB by Create extension wizard...
    i have assigned it to design layer object .
    i need this field to be a dropdown list ......
    A have added allowed values to corresponding view of this field.......
    BUt now it is appearing as a picklist as in case of country field ........
    Can anybody suggest how to make a dropdown list .........
    Regards....
    kanika

    Hello kanika,
    Impliment GET_V_XXX method and you will get your DDLB.
    dont forget to resave your configuration data after you implimenting the method.
    Good Luck
    Eli Steklov
    Please Reward Points if it Helped

  • How to create Dropdown field

    Hi,
    i have created some new fields in BUPA using EEWB by Create extension wizard...
    i have assigned it to design layer object .
    i need this field to be a dropdown list ......
    A have added allowed values to corresponding view of this field.......
    BUt now it is appearing as a picklist as in case of country field ........
    Can anybody suggest how to make a dropdown list .........
    Regards....
    kanika

    Assuming you have done all the 4 below steps done in the progrm BCALV_EDIT_07,
    §1.Define an extra field in your output table
       for each column where you want to use drop down listboxes.
       (One additional field refers to cells of one column).
    §2.Define a dropdown table and pass it to ALV.
       One listbox is referenced by a handle, e.g., '1'.
       For each entry that shall appear in this listbox
       you have to append a line to the dropdown table
       with handle '1'.
       This handle can be assigned to several columns
       of the output table using the field catalog.
    §3.Set your dropdown field editable and assign the fieldname of the
       corresponding additional field to DRDN_FIELD of the fieldcatalog.
    §4.Set the handle of your additional field of your output
       table according to the listbox that shall be displayed.
    I think you should be getting what is done in BCALV_EDIT_07 program.
    Anyways, did you try calling the method set_ready_for_input after the set_table_for_first_display method is called?
    Hope this helps.
    Thanks,
    Balaji

  • How to create dropdown list in table

    dear friends,
                         i created one table in dynpro. In table i have one column dropdown by index. when i changed the value in dropdown box , same value reflect in all row in addition of row where i selected the value. please somebody tell me what i should do????
    regards,
    sunil sharma

    Hi,
    If you have got 10 rows, In the first row if you have selected some value from dropdown then you want to have this same value
    to be shown across the other rows of the same column right. Also for the new row you want the same value right.
    if this is the case, then first implement the action for leadselect for that dropdown.
    if your node has 3fields, empno, begda, endda. for ex: endda is the dorpdown by index.
    In the OnleadSelect event -
    Write this code -
    You will get the element right. for that element get the record using
    get_static_attributes into ls_table1.
    Now,
    loop at lt_table into ls_table.
    ls_table-endda = ls_table1-endda.
    modify lt_table from ls_table index sy-tabix.
    endloop.
    lo_nd_node->bind_table( lt_table).
    Or
    Also try this out.
    Using the GET_ELEMENTS of IF_WD_CONTEXT_NODE
    loop at lt_elments into ls_elmenets.
    ls_elements->set_attribute
    exporting
    name  =  `ENDDA`
    value =   ls_table1-endda.
    endloop.
    Regards,
    Lekha.
    Edited by: Lekha on Sep 30, 2009 12:00 PM

  • How to create dropdown list for custom remote function module

    HI ,
           I created a custom remote function module for a ztable.table having four fields.But now the requirement is to maintain the dropdown list for input parameter .
    For eg: I maintain Input parameter as action.For that Action we have to maintain a dropdown list(display,insert,update and delete  values ) in function module.Is it possible.

    Hi
    Try using POPUP_GET_VALUES function module in the begining of the Function module this gives a POP to provide a value to you
    In this you can provide a value
    Check the import parameters of this Function module if it has COMBOBOX as parameter ( I dont have SAP access at this point of time) you can pass X to it so you get List box for the following fields
    Create a domain to field and assing fixed values to it and use it in any table(As this works with only existing tables)
    refresh fields.
    DATA: fields LIKE SVAL OCCURS 0.
    fields-tabname = 'MAKT'.
    FILEDS-FIELDNAME = 'MAKTX'.
    APPEND FIELDS.
    CALL FUNCTION 'POPUP_GET_VALUES'  " Try copying this in a Test program and execute
            EXPORTING
              POPUP_TITLE  = 'Enter Mail Id here'
              START_COLUMN = '5'
              START_ROW    = '5'
            IMPORTING
              RETURNCODE   = SRETURN
            TABLES
              FIELDS       = FIELDS.
    Cheerz
    Ramchander Rao.K
    Edited by: Rob Burbank on Nov 23, 2011 9:50 AM

  • How to create dropdown using VO

    Hello Everyone,
    I am using Jdeveloper 11.1.1.4 . I am new to VO and have going to create simple dropdown using VO.
    We have table called "MyTable" in the database which inclues the columns "First_name","Last_Name","Emp_id"(primary_key) .
    In my .jspx page I have to create a simple dropdown list which includes First_Name only dynamically.
    Please can anyone tell me the detailed procedure do i need to follow to create this, it will be helpful to start learning the business component.
    Thanks in advance.
    Shrikant

    Hi KShrikant,
    Is the LOV going to be part of any other fields inside a form? For example, departmentsVO that has an EMP_ID (manager of department) and that you would like to create an LOV instead assigning the EMP_ID directly?
    However, if what you really want is to display the LOV, then you need to create a Transient VO, for example, new ViewObject, give a name and select it to be based programatically (not in a query or EO). Then, you need to create a new Attribute (Emp_ID for example). And you finish the creation. Now, in your new transient VO attributes, select the emp_id and in the options you go to the tab List Of Values. Create a new one. It will ask you fthe object tou want the list to be based. Then you select MyTable and now you map emp_id with emp_id of myTable. Now you switch to the hints tab and select FirstName to be displayed on the list.
    Last step is make sure your application module has the instance of your new Transient Atrribute so you can use it from the Data Control.
    Go to your page, select emp id from your transient VO and drop it in the page as a SelectOneChoice.
    Run your page.
    Regards

  • Need help on how to create dropdown menu in dreamweaver 9

    Hello Forum Members
    I am working on dreamweaver , making my website by using dreamweaver 9 .
    My problem is, i want to create a dropdown menu but when i move my cursor on any item then the drop down links appears on the same item itself and that item diappears.
    For Example my menu is like --- item1 item 2 item 3 item4 item5
    item2.1 Item3.1 item4.1
    item2.2 item3.2 item4.2
    now when i move my cursor on any of these menu headings (like item 2, item 3, item 4) which has drop down links the main menu item disappears and the drop down links (item 2.1, item2.2 like wise) reflects on the place of that (item2) menu item.
    Please help me with this and not with the scirpt that would be the last option because i do not have any knowledge of html. Please tell me the feature in dreamweaver 9 from where i can correct it.
    Thanks In Advance
    Sean

    Please Help

  • How to create dropdown in BSP application

    Hi Gurus,
    I want to implement a dropdown listbox in my BSP application. Once the dropdown is clicked, it should show "TRUE" and "FALSE". Would appreciate if you could give me the code. This should be implemented in MVC.
    Thanks,
    David.

    Hi David...
    Try this code...in the Layout
                                <htmlb:dropdownListBox id        = "DDLB1"
                                                       width     = "100%"
                                                       disabled  = "FALSE"
                                                       onSelect  = "onInputProcessing"
                                                       selection = "<%= lw_sel_mvtyp %>" >
                                      <htmlb:listBoxItem key   = "S"
                                                         value = "Select the Option" />
                                      <htmlb:listBoxItem key   = "F"
                                                         value = "FALSE" />
                                      <htmlb:listBoxItem key   = "T"
                                                         value = "TRUE" />
                                </htmlb:dropdownListBox>
    Hope this helps.
    <b><i>Do reward each useful answer..!</i></b>
    Thanks,
    Tatvagna.
    Message was edited by:
            Tatvagna Shah

  • How to create dynamic legend to my dashboard?

    Hello,
    i use Xcelsius 2008. I 've created a pie chart with a legend which contains 10 different labels (e.g. expanses categories).
    Choosing different labels from a combo box, the pie chart usually contains 2-4 different expanses categories.
    So, i' m wondering if there is a way the legend could be dynamic and contain only these expanses  included in pie chart...
    Thanks in advance!

    Hi,
    I had already done what you suggest.
    The point is that the data should be appeared in a dynamic way in my Excel. And i'm trying to implement this.. (unfortunately, i adopt a multi-nested "IF" excel logic...).
    if there is a "guru" in Excel and i can this in a less complicated way, any suggestion is desirable....
    Anyway, thanks a lot!

  • How to create a custom Config Mgr 2012 R2 SCOM Dashboard

    Has anyone blogged on how to create a Config Manager 2012 dashboard in Operations Manager 2012? Or have some information they are happy to share?
    This blog has some information:
    http://blogs.technet.com/b/kevinholman/archive/2012/12/11/monitoring-configmgr-2012-with-opsmgr.aspx
    However its more of an overview rather than how you construct it.
    I would appreciate anyone willing to post some information on how they have setup their own and what they are monitoring.
    We have installed the Config Manager management pack with default tuning. At the moment, I have something like this setup, however its not showing any data yet as the Ops Mgr clients are still collecting data.
    Cheers
    Damon

    Hi,
    This technet article might be of more help.
    Introducing Operations Manager 2012 Dashboards
    http://blogs.technet.com/b/momteam/archive/2011/09/27/introducing-operations-manager-2012-dashboards.aspx
    Otherwise, your question seems to be related to SCOM 2012. You may also choose to post there to get more effictive help.

  • How to create a dropdown menu with sub buttons that link back to the labels on click.

    im trying to create a dropdown menu buttons that when you rollover to the top central button the button it opens up like a drop down menu would containg two other subsectional buttons. This makes the sub sectional buttons seperate from the main stage making it difficult to simply give them a on click,  sym.play("label") function.
    the buttons work like this in symbols or sections stage/panel/homebutton inside home button is group dev containg another group dev containg the button which I need to link back to a "label" in the /panel/ symbol or section. Thank you very much.

    pdp_1 wrote:
    Hi!
    I would like to create a DVD menu that offers two languages. So the first page gives two options: Language 1 and Language 2. Then depending on which language you choose, you go to a menu that proposes different videos and a photo slideshow.
    Regardless on which language button you click on initially, you get the same content but in different languages.
    I've been looking at Premiere's templates, which I can certainly customize, but I really don't see how to create the double menu. Does anybody have an idea?
    Put the video with the first language on the timeline followed by the video with the second language.  Use chapter markers so you can have each video as a chapter in the menu.
    I use Premiere Pro, so I can't give more specific directions. Perhaps somebody like ATR will chime in.
    Also, I have another question: can I put videos from different projects in the same DVD with Premiere or must all of the videos that go into the DVD be in the same project?
    Thank you very much!!!
    pdp1
    They must be in the same project.

  • How to create a dashboard using xhtml code in the spreadsheet

    i have a 4.0 dashboard with xhtml code or parameters in the spreadsheet to drive the dashboard. I am tried to create a new dashboard by copying the code it did not work. i searched all the link nothing works. any idea?
    The sample code in the embedded spreadsheet looks like the one listed below:
    &BI_COMMAND_1-VARIABLE_VALUES-VARIABLE_VALUE_1-VARIABLE=
    how to create this kind of code to bind your BEx query to the excel spreadsheet to run the dashboard.
    Thanks
    York

    Hello Anirban,
    As we can't change the layout of Smartfrm dynamically we have to fix it.
    1. Just Create a table structure of 5 equal sized column.
    2. Now create a structure in TYPES
        TYPES : BEGIN OF i_table,
                        FIELD1(15) type c,
                        FIELD2(15) type c,
                        FIELD3(15) type c,
                        FIELD4(15) type c,
                        FIELD5(15) type c,
                     END OF i_table.
    3. Now create a table in "FORM INTERFACE"
    4. Display the same in your smartforms.
    Now in your Print program create the same table as above.
    1. Now you can move the first 5 fields data from your dynamic internal table to the interface table.
    2. You can add up a popup saying only first 5 fields can be displayed.
    Note : if the field length is bigger then you have to use a variable to cut out only first 15 character to put it into the interface table.
    Hope this hint helps you a bit to gather some knowledge for your requirement.
    Cheers,
    Suvendu

Maybe you are looking for

  • How do i use the griffin Imic with a headset?

    I recently got the iMic for my macbook pro running lion. when i plugged it in the microphone was muffled and headphones didnt pick up sound. what is wrong? I have already set it up in the system preferences to use the usb iMic I am using the yapster

  • LoadSound not working in IE but works in Firefox??! Help!

    Greetings all, I've posted this in the general forum with no luck, so I thought I'd try here. Situation: A simple flash movie, using a loadSound method, works correctly in FireFox/Safari in our production environment, but IE will NOT play any sound.

  • Problem in opening new tab

    Problem in opening Mozila firefox tab. when we open mozila firefox blank page open and when we open next tab, the new tab open with "search.babylon.com/?affID=112060&tt=321- i have tried lot to stop this automatically open search of babylon but not d

  • MEGA PC 651 and 1 gig of RAM

    Hi Guys, I have a MEGA 651, cele 2.6 gig and i HAD 1 gig of ram in there... but after doing my usual tasks in XP, it would just reboot! as anyone had this problem? i take out 1 stick of 512 and it runs fine.  I think this may be an over heating probl

  • Trying to disable a Udev rule. Deleting it is not working.

    I am trying to configure my sound. I have a usb sound card I want it to be default. I followed the procedure as described here . So, my default soundcard was my usb soundcard! But, did this, Hot-plugging a USB sound card The following udev rule can b