Changing the report displayed on the basis of value selected frm the prompt

Hi,
I have requirement in which there is dashboard prompt which has three columns namely year, month and report name.
The user will select the report name from the prompt, once done the report that has been selected should show up
on the dashboard page and he should be able to select data on the basis of month and year from it.
Also, if the user wants to go to the other report he should be able to select it from the prompt and view it.
Pls shed some light on how to progress about it. As of now think if something like this is possible then it would definitley
need two prompts one for report name and the other for month and year.
Thx :)

Hi Kishore,
When i click on the link given by you it takes me to a page where a link is given with text as under
Oracle BI 10.1.3.3/2 - Selecting Reports from Dashboard Prompts and Guided Navigation Sections
And when i click on this nothing opens up.
Thx
Edited by: Phantasm on Jun 22, 2010 3:05 AM

Similar Messages

  • The report displays more than 3000 pages with same content.

    Respected Sir
    I have a report with form letter layout.
    The report contains only one page,but while running the paper layout ,the report displays more than 3000 pages with same content.
    please anyone give a solution to this problem

    I think there is no bad joining. b'se when the querry is executed in sql, it is working properly(means returns only one record) . This problem is not for a particular report. Any report using the "form layout", the same problem occurs.
    Why this problem occurs. How can we solve it.
    Bye

  • Will my Airbook (11" late 2010) w/ NVIDIA GeFORCE 320M 256MB using the Mini Display Port to Dual-Link DVI Adapter support the Dell 3007WFHC (30") monitor at full resolution (2560X1600)

    Will my Airbook (11" late 2010) w/ NVIDIA GeFORCE 320M 256MB using the Mini Display Port to Dual-Link DVI Adapter support the Dell 3007WFHC (30") monitor at full resolution (2560X1600).
    Works fine at 1280X800 (with out without MDP DL DVI Adapter) - cannot get any higher resolution

    Hi ddickson01,
    The MacBook Air 11 inch late-2010 model does support 2560 x 1600 resolution on an external display. See this specifications article for reference -
    MacBook Air (11-inch, Late 2010) - Technical Specifications
    Thanks for using Apple Support Communities.
    Sincerely,
    Brett L 

  • When i plugged in my ipod charger into my macbook pro it off instantly and wouldnt turn back on, also the charger displays a dim green light when connected to the mac. Does anyone have a sollution to this problem?

    When i plugged in my ipod charger into my macbook pro it turned off instantly and wouldnt turn back on, also the charger displays a dim green light when connected to the mac. Does anyone have a sollution to this problem?

    The dim green light appears to be flashing orange too

  • How to capture the value selected in the drop down box

    Hi all,
    I am populating values in  drop down box by using FM vrm_set_values in module pool.
    like below
    01  ABC
    02 ACB
    03 BCA
    04 CAB
    in module pool drop down box element name is RQGM-VALUE.
    Problem is what ever the value is select in the drop down box from above element RQGM-VALUE is not filling any value.
    i need to capture the value selected in the drop down box and pass it to another variable.

    Hi,
    Refer this standard code. Your issue will be resolve.
    REPORT demo_dynpro_dropdown_listbox.
    TYPE-POOLS vrm.
    DATA: name  TYPE vrm_id,
          list  TYPE vrm_values,
          value LIKE LINE OF list.
    DATA: wa_spfli TYPE spfli,
          ok_code TYPE sy-ucomm,
          save_ok TYPE sy-ucomm.
    TABLES demof4help.
    name = 'DEMOF4HELP-CONNID'.
    CALL SCREEN 100.
    MODULE cancel INPUT.
      LEAVE PROGRAM.
    ENDMODULE.
    MODULE init_listbox OUTPUT.
      CLEAR demof4help-connid.
      SELECT  connid cityfrom cityto deptime
        FROM  spfli
        INTO  CORRESPONDING FIELDS OF wa_spfli
       WHERE  carrid = demof4help-carrier2.
        value-key  = wa_spfli-connid.
        WRITE wa_spfli-deptime TO value-text USING EDIT MASK '__:__:__'.
        CONCATENATE value-text
                    wa_spfli-cityfrom
                    wa_spfli-cityto
                    INTO value-text SEPARATED BY space.
        APPEND value TO list.
      ENDSELECT.
      CALL FUNCTION 'VRM_SET_VALUES'
           EXPORTING
                id     = name
                values = list.
    ENDMODULE.
    MODULE user_command_100.
      save_ok = ok_code.
      CLEAR ok_code.
      IF save_ok = 'CARRIER' AND NOT demof4help-carrier2 IS INITIAL.
        LEAVE TO SCREEN 200.
      ELSE.
        SET SCREEN 100.
      ENDIF.
    ENDMODULE.
    MODULE user_command_200.
      save_ok = ok_code.
      CLEAR ok_code.
      IF save_ok = 'SELECTED'.
        MESSAGE i888(sabapdocu) WITH text-001 demof4help-carrier2
                                            demof4help-connid.
      ENDIF.
    ENDMODULE.

  • TS4009 How do you downgrade to the free option or get refund? After selecting free the done button can not be pressed.

    How do you downgrade to the free option or get refund? After selecting free the done button can not be pressed.

    Refund:
    If in the US, follow the link below (you must request a refund within 15 days) -
    https://discussions.apple.com/message/16968425#16968425
    it gives the USA phone number - if you don't live there you will have to find an equivalent number from the 'Contact Us' link at bottom right of this page.
    Keeping current plan, but downgrading when it ends:
    Settings>icloud>Storage & Backup>Change Storage Plan.  Look at downgrade options.  There you can choose the plan you want when the current one ends.

  • How to display multiple prompt values selected, in the report

    Hi,
    I have a LOV : SELECT DISTINCT CO.V_MOVEMENT.ORIGIN_BRANCH_CODE FROM CO.V_MOVEMENT ORDER BY 1
    and a parameter associated with it which is multiple selection enabled. The parameter name is P_BRANCH.
    When I am displaying P_BRANCH at the top of my report (RTF), it's showing only one value whereas I need to display all the selected value as Comma Separated.
    Please help.
    Thanks & Regards,
    Antara

    The other option to fetch all the selected values to the report (RTF) is to create a dataset for the field and in the template create a repeating group for each value.
    Eg:
    1) The SQL is : ( In SQL Server, where :P_S_ORIGIN_BRANCH_CODE is Prompt )
    SELECT DISTINCT
    :P_S_ORIGIN_BRANCH_CODE as P_BRANCH
    2) XML is :
    <DATA_DS>
    <G_1>
    <P_BRANCH>RTM</P_BRANCH>
    </G_1>
    <G_1>
    <P_BRANCH>ABC</P_BRANCH>
    </G_1>
    </DATA_DS>
    3) In report we can display the values as below:
    RTM,
    ABC
    But The Required Output in RTF is : (Values seperated by ",")
    RTM, ABC
    Your help would be highly appreciated.
    Thanks & Regards,
    Antara
    Edited by: user450412 on Oct 10, 2011 4:11 PM

  • How to dynamically display the data from a table base on row selection of another table in ADF

    Hi ,
    I have a requirement in ADF. I need to change the data of a table  based on row selection of another Table . Both the table have a Parent Child relationship between them. They have a common attribute say department_id.
                                                                                         For this I created bind variable in view object of employees table and wrote a where clause in the sql query using that bind variable. Then I created method for selection listener of department Table in java bean.
    My method is following
        public void onrowselection(SelectionEvent selectionEvent) {
            RichTable richTable = (RichTable)selectionEvent.getSource();
                            CollectionModel tableModel = (CollectionModel)richTable.getValue();
                            JUCtrlHierBinding adfTableBinding = (JUCtrlHierBinding)tableModel.getWrappedData();
                            Object selectedRowData = richTable.getSelectedRowData();
                            JUCtrlHierNodeBinding nodeBinding = (JUCtrlHierNodeBinding)selectedRowData;
                    oracle.jbo.domain.Number newVal = (oracle.jbo.domain.Number) nodeBinding.getAttribute("DepartmentId");
                    Number pallet = newVal.bigDecimalValue();
                    System.out.println("Selected values " + pallet);
            BindingContext bindingctx = BindingContext.getCurrent();
                          BindingContainer bindings = bindingctx.getCurrentBindingsEntry();
                          DCBindingContainer bindingsImpl = (DCBindingContainer) bindings;
                  DCIteratorBinding dciter = bindingsImpl.findIteratorBinding("EmployeesView1Iterator");//access the iterator by its ID value in the PageDef file
                          ViewObject vo =dciter.getViewObject();
                          vo.setNamedWhereClauseParam("DepartmentId", pallet);//enter your value
                          vo.executeQuery();
    It is printing the selected value of department id from department table in the log. But it is not able to pass the value to employees view. It is showing the following error in the log
    "Definition DepartmentId of type Variable is not found in EmployeesView1."
    I will be very thankful if someone helps me to solve this errror or is there any other way to achieve the same requirement.
    Thanks
    Nilesh

    Note quite sure why you simply wont create a viewlink for the viewobject the tables are based on..
    The viewlink attribute will be based on the departmentId and it's a simple master detail relationship which automatically uses ppr.
    However, if both tables are on the same page; using your hack about;
    On the underlying viewobject, define a viewcriteria e.g. "listById" and set your bind variable here.
    I would bind table two to a RichTable component:
    RichTable t2;
    public void onrowselection(SelectionEvent selectionEvent) {
            RichTable richTable = (RichTable)selectionEvent.getSource();
                            CollectionModel tableModel = (CollectionModel)richTable.getValue();
                            JUCtrlHierBinding adfTableBinding = (JUCtrlHierBinding)tableModel.getWrappedData();
                            Object selectedRowData = richTable.getSelectedRowData();
                            JUCtrlHierNodeBinding nodeBinding = (JUCtrlHierNodeBinding)selectedRowData;
                    oracle.jbo.domain.Number newVal = (oracle.jbo.domain.Number) nodeBinding.getAttribute("DepartmentId");
                    Number pallet = newVal.bigDecimalValue();
                    System.out.println("Selected values " + pallet);
                   refreshTable2(pallet);
            BindingContext bindingctx = BindingContext.getCurrent();
                          BindingContainer bindings = bindingctx.getCurrentBindingsEntry();
                          DCBindingContainer bindingsImpl = (DCBindingContainer) bindings;
                  DCIteratorBinding dciter = bindingsImpl.findIteratorBinding("EmployeesView1Iterator");//access the iterator by its ID value in the PageDef file
                          ViewObject vo =dciter.getViewObject();
                          vo.setNamedWhereClauseParam("DepartmentId", pallet);//enter your value
                          vo.executeQuery();
    private void refreshTable2(Number pallet){
    RichTable x=getT2();
    CollectionModel cm=(CollectionModel)x.getValue();
    JUCtrlHierBinding jcb=(JUCtrlHierBinding)cm.getWrappedData();
    BindingContainer bindings = bindingctx.getCurrentBindingsEntry();
    DCBindingContainer bindingsImpl = (DCBindingContainer) bindings;
    DCIteratorBinding dciter = bindingsImpl.findIteratorBinding(jcb.getName()+"Iterator");
    ViewObject vo =dciter.getViewObject();
    ViewCriteriaManager vcm=vo.getViewCriteriaManager();
    ViewCriteria vc=vcm.getViewCriteria("listById");
    vo.applyViewCriteria(vc);
    vo.setNamedWhereClauseParam("DepartmentId",pallet);
    vo.executeQuery();
    AdfFacesContext.getCurrentInstance().addPartialTarget(getT2());

  • Can we generate one report tab for each of the prompt values selected in the bobj 4.0 webi report.

    can we generate one report tab which filters
    with each prompt value selected in bobj 4.0 webi report.

    Hi Shrinidhi ,
    It can be achievable with static tabs created for each LOV .But this is not recommended because , object values can change dynamically .
    It is good idea to use section on prompt object in the report .With sections great feature available is in larger report it’s easy to navigate using map. It displays the section tree.You can select the particular LOV to navigate.

  • The Report Server page comes up on local server, but the page does not open from clients

    Hello,
    The Report Server Page opens up just fine on the local server, but page does not open up from desktops and client PCs.   SSRS is installed on a Windows Server 2008 R2 server and with SQL Server 2008 R2 SP2
    Clients are using IE 11 and they see:
    Oops! Internet Explorer could not connect to tumdv-fsql01
    How can make this site accessible from clients?
    Thanks
    Paul

    That did not work.
    What port numbers specifically does SSRS use?  I will check the firewall.
    http://100.100.100.100/CengeaReports/Pages/Folder.aspx
    When I add the IP Address and try the link again, IE says "This page can not be displayed".  When I try the Fix connection problems, IE says:
    "The website is online, but it is not responding to connection attempts."
    Paul

  • The window displaying bookmarks is too large (suddenly happened with the new version). I can't figure out how to make the display smaller. Zooming out does not work on the bookmark menu display.

    I have version 4, just downloaded, and a Mac w. OS 10.6. 7.
    The bookmarks display (when I pull down "bookmarks") is much too wide. I can't figure out how to reduce the display size. The window is not persistent so I can't even get you a screen shot.
    Thanks, Sara

    It seems there was a change in Firefox 4 where the width of the drop-down is now determined by the length the longest bookmark name in the folder being displayed. Previous versions of Firefox would shorten a long name like that and add an ellipsis to signify the name was truncated.
    Sorry, I don't know how to change that other than to advise you to edit the name of that long bookmark name and make it less verbose. Just scroll down the list of bookmarks in that wide folder until you see the culprit, then right-click that bookmark and open Properties & edit the Name line at the top of that dialog.

  • Why doesn't the keyboard display lower case when this is selected?

    Why doesn't the keyboard display lower case characters when these are selected?

    The same reason physical keyboards have capital letters, easier to read. If the iPad keyboard is in caps you'd know because the Shift key would be colored blue.

  • Hi I currently have about 20,000 photos in I photo, which the 'info' displays as being 68GB's worth. However the I Photo Library with the Pictures Folder displays it's size as 341.21GB ... Why would that be? How do I look at what's in the I Photo Library?

    Hi I currently have about 20,000 photos in I photo, which 'info' displays as being 68GB's worth. However the I Photo Library within the Pictures Folder displays it's size as 341.21GB ... Why would that be? How do I look at what's in the I Photo Library to figure out what's happening, and if there's stuff in there I need to delete?

    Best to keep the terms clear.
    You export photos from iPhoto.
    You move the iPhoto Library to an external disk.
    They're are quite different processes. Exporting means at the end you have a file outside iPhoto. Moving means the files are still inside iPhoto.
    So if you say:
    I'm currently exporting the  library to an external drive
    That reads like I''ve selected all the photos in iPhoto and am exporting them to a folder on this external drive, and at the end I'll have a folder full of photos outside iPhoto. Is that what you mean?
    Is it best to have a 'master' I photo library on an external drive for all the thousands of pics Im never really going to look at often - and a smaller one kept on the HD for day to day usage ...
    Best? Hard to know. It might make sense on a portable. But if you're on an iMac why do you need a smaller one on the internal? Why not just have the whole library on the external? There is no performace hit.

  • How much it cost to replace the Glass Display?, How much it cost to replace the Glass Display?

    How much it cost to replace the Glass Display?

    In the US the out-of-warranty service costs (assuming that it's not considered to be 'catastrophic damage' ) :
    iPad Wi-Fi
    iPad 2 Wi-Fi
    Out-of-Warranty Service Fee
    16 GB
    $269
    32 GB
    $299
    64 GB
    $349
    iPad Wi-Fi + 3G
    iPad 2 Wi-Fi + 3G
    Out-of-Warranty Service Fee
    16 GB
    $319
    32 GB
    $369
    64 GB
    $419

  • Using an early 2011 15 inch macbook pro to watch a rented dvd. the screen displayed a skipping over damaged section message, then the dvd froze. first unable to eject the dvd, now it can't be inserted. Hardware prblm? reset the superdrive?

    I was viewing a rented dvd when a "skipping damaged area" message was shown and then the dvd froze. At first I was unable to eject the dvd with the eject botton though the superdrive made "ejecting" noises, and followed the cue "finder using dvd" and ejected it. Now the drive will not accept any dvds. Does this sound like a hardaware problem, or is it possible that some sort of "reset" needs to take place?

    Before wasting your time heading to your local Apple Store, try resetting your SMC.  It doesn't work all the time, but sometimes it's just the thing to save you time.

Maybe you are looking for

  • 16:9 problem from fcp- compressor- dvd studio.

    Using Compressor 1.2.1 I shot mini-dv(xl-2) in 16:9 mode. I tried using the widescreen Compressor preset but when I import the my assets to DVD studio 2.0 the aspect ratio is squished to 4:3. Using the display tab I changed it to 16:9, looks fine. Bu

  • Identify parent region id in oracle adf

    Hi, Can any please answer me how to identify parent region from which the child region being invoked or rendered. For Ex : I have 2 parent regions and 2 child regions. //Start parent1_region.jsp      child1_region.jsp      child2_region.jsp parent1_r

  • How to create OSS note for SAP?

    Hi, How do I create OSS for SAP? Any step by step or notes related? appreciate your help!!!!!! Thanks,

  • Premiere Elements 7 Basic Editing Question for DV

    Hello all, I have PE7, a Q6600 quad-core, and Windows 7 64bit. I have captured about 6 hours of Standard Definition 16:9 DV footage from my church's grand opening ceremony.  Video was captured from an old Pana PV-GS320. The church wants a dynamic vid

  • Log in option using Work Group Manager to see all network users

    I am getting different login options with my network of 20 iMacs, yet they are all set-up the same way using WorkGroup Manager. I would like the option of having all of the user names displayed on the login screen. I work at a small high school, and