Issue : OBIEE applying default prompt values when pressing return button

Hi All,
On my dashboard, I am showing a summary report. This summary report has a link to detail report. I have provided a link for detail report just below the summary report on dashboard. Following is the issue which I am facing
[1] I run the dashboard for a particular prompt value on the dashboard. Let's say a date value = '1/1/2010'.
(There is no default value for the prompt).
[2] Now my summary report is updated according to the prompt value which I selected.
[3] I click on any value on summary reports and it drill down and recalculated the metrics
[4] Now when I click on the detail report, i get the detail report too ( in a new window). The issue starts from here.
[5] When I click on return link from the detail report page, it takes me back to the summary report page ( I land on the report which I got from step 3)
[6] I click on the return button under the summary report (rememeber I had drilled down) to see the report which i get in step 2
But, when I click on the return button under the summary report, it changes the prompt value too and applies the default value to the prompt and provides me the initial summary report with default promt value. The report which I got in step 2
Whereas what i want is when I click on the return link then I should get the report which I got in step 3.
Why does OBIEE applies the default value when I try to return back to my original summary report. Is this an OBIEE feature or I have some setting issue ?
Hope I have been able to explain the scenario!
Can anyone please reply on this. Any help would be much appreciated.
Thanks,
Ronny

hey kart,
the issue is not about going back to the summary report ...the issue is when i click on the return link below the summary report after returning from the detail report ( which opens in a new window) then it takes me to the initial summary report ( which was loaded by default when the dashboard was loaded) with all the default prompt filters whereas my requirement is to go back to the summary report with the filters which users selected from the prompt ....
Please let me know.
Thanks,
Ronny

Similar Messages

  • Default prompt values in webI report???

    I am using BO XI 3.1 on BW universe, I have a prompt A in the prompt window which has many Lov's but user will freequently use only three values out of it.
    So I want to make those three values to be default for that promp A when ever the report gets refreshed, so that it will be easy for user not to search in the big list for those 3 values.
    Any inputs please.
    Thanks,

    Hi,
    You can make some values as default prompt values by webi report.
    1) Open the webi report.
    2) Edit the query then go to the prompt
    3) Go to the prompt properties checked the chekcbox "Set default values" and type the three values and ok.
    So next time user refresh the report all three values come in the filter  default.They can remove or add more values in the list.but every time all values come in the filter.
    Thanks,
    Amit

  • How to when press the button and can change the value in the table?

    this is my code so far with a table and a button..how can i make it when press the button and the data in table change..
    * SimpleTableDemo.java is a 1.4 application that requires no other files.
    import java.awt.BorderLayout;
    import java.awt.Button;
    import java.awt.Color;
    import java.awt.Dimension;
    import java.awt.event.MouseAdapter;
    import java.awt.event.MouseEvent;
    import javax.swing.JButton;
    import javax.swing.JFrame;
    import javax.swing.JPanel;
    import javax.swing.JScrollPane;
    import javax.swing.JTable;
    public class SimpleTableDemo extends JPanel {
    private boolean DEBUG = false;
    private JPanel button;
    private JButton enter;
    public SimpleTableDemo() {
    super(new BorderLayout());
    //button.setBackground(Color.pink);
    //setForeground(Color.pink);
    String[] columnNames = {"First Name",
    "Last Name",
    "Sport",
    "# of Years",
    "Vegetarian"};
    Object[][] data = {
    {"Mary", "Campione",
    "Snowboarding", new Integer(5), new Boolean(false)},
    {"Alison", "Huml",
    "Rowing", new Integer(3), new Boolean(true)},
    {"Kathy", "Walrath",
    "Knitting", new Integer(2), new Boolean(false)},
    {"Sharon", "Zakhour",
    "Speed reading", new Integer(20), new Boolean(true)},
    {"Philip", "Milne",
    "Pool", new Integer(10), new Boolean(false)}
    final JTable table = new JTable(data, columnNames);
    table.setPreferredScrollableViewportSize(new Dimension(500, 70));
    if (DEBUG) {
    table.addMouseListener(new MouseAdapter() {
    public void mouseClicked(MouseEvent e) {
    printDebugData(table);
    //Create the scroll pane and add the table to it.
    JScrollPane scrollPane = new JScrollPane(table);
    enter = new JButton("Press me");
    //Add the scroll pane to this panel.
    buildButton();
    add(scrollPane, BorderLayout.NORTH);
    add(button, BorderLayout.CENTER);
    private void buildButton(){
    button = new JPanel();
    button.add(enter);
    private void printDebugData(JTable table) {
    int numRows = table.getRowCount();
    int numCols = table.getColumnCount();
    javax.swing.table.TableModel model = table.getModel();
    System.out.println("Value of data: ");
    for (int i=0; i < numRows; i++) {
    System.out.print(" row " + i + ":");
    for (int j=0; j < numCols; j++) {
    System.out.print(" " + model.getValueAt(i, j));
    System.out.println();
    System.out.println("--------------------------");
    * Create the GUI and show it. For thread safety,
    * this method should be invoked from the
    * event-dispatching thread.
    private static void createAndShowGUI() {
    //Make sure we have nice window decorations.
    JFrame.setDefaultLookAndFeelDecorated(true);
    //Create and set up the window.
    JFrame frame = new JFrame("SimpleTableDemo");
    frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    //Create and set up the content pane.
    SimpleTableDemo newContentPane = new SimpleTableDemo();
    newContentPane.setOpaque(true); //content panes must be opaque
    frame.setContentPane(newContentPane);
    //Display the window.
    frame.pack();
    frame.setVisible(true);
    public static void main(String[] args) {
    //Schedule a job for the event-dispatching thread:
    //creating and showing this application's GUI.
    javax.swing.SwingUtilities.invokeLater(new Runnable() {
    public void run() {
    createAndShowGUI();
    }

    Cross-post:
    http://forum.java.sun.com/thread.jspa?threadID=676105

  • Submiting requests when pressing a button.

    I have a button that when pressed should fire an HTMLDB After Submit process and just after the process has finished, it should trigger a javaScript function to call a pop-up page.I've tried to do that in three different ways:
    1)Using the button optional URL redirect, and as the URL target I send first the request to run the After submit process and then the request to open the pop-up window.
    The problem with that solution is that the pop-up window opens before the
    process is completed, which is an inconvinience for me.
    2)Running the After submit process when pressing the button and running an after processing braching to call the javaScript function. It didn't work as HTMLDB redirect the application to an error page saying that no branch is specified...
    3)Inside the After submit process after a call to a procedure that resolves the logic of the process I've tried to call the pop-up using webtoolkit's tag htp.p as follows:
    htp.init;
    htp.p('<script language = "javascript">');
    htp.p('callMyPopup2("480",'+l_aux+');');
    htp.p('alert("entre");');
    htp.p('</script>');
    But it didn't work neither.
    The HTMLDB version I'm using is 1.5.0.00.33. Is there a way to accomplish that when pressing a button a process is ran and just after its execution is finished call a javascript function that opens a pop-up page?
    Thanks in advance.
    Best Regards.
    Larissa.

    Vikas,
    The question is interesting. I remember trying something similar without success and would be interested in an answer. I could imagine the following situation:
    1. I start a process that runs a procedure which fills in a table with values
    2. after the process is completed a pop-up window opens and runs a report on that table...
    This could be practical since a user that started the procedure doesn't have to wait for it to complete in order to click another button to see the result. This is just one possible example.
    Denes Kubicek

  • My mini ipod appears off and not respond to any commands when pressed the buttons to reset, apple logo appeared and then the apple support site and it shuts down. already tried all the steps, but none worked, and when I plug it into my computer it does no

    My mini ipod appears off and not respond to any commands when pressed the buttons to reset, apple logo appeared and then the apple support site and it shuts down. already tried all the steps, but none worked, and when I plug it into my computer it does not appear in the iTunes bar. what do I do?

    If MacKeeper corrupted the Recovery partition then even I underestimated its potential for damage. Garbage "cleaning" apps will cause misery but I have not found that the Recovery partition to have been affected by using MacKeeper or anything like it. I doubt that it did so, but I have learned not to underestimate the potential for such things to result in system corruption.
    Before concluding your Mac has a hardware failure, try booting OS X Internet Recovery by holding command option r on startup (three fingers). That will force your iMac to bypass the Recovery partition altogether, and convey the ability to create a new one.
    An Internet connection will be required (wired or wireless).
    At the Mac OS X Utilities screen, select Disk Utility. Select your startup volume (usually named "Macintosh HD") and click the Repair Disk button. Describe any errors it reports in red. If Disk Utility reports "The volume Macintosh HD appears to be OK" in green then you can be reasonably (though not completely) assured your hard disk is in good working order.
    Assuming the HD remains usable you can then use Disk Utility to erase it. Reinstall OS X, restore your essential software and other files, and don't reinstall the junk.

  • Malfunctioning printer call to DLBAPRP,DLL FOR DELL PRINTER A940, ERROR 126. This error occurs when pressing properties button. Is there a patch to fix this?

    This error does not occur with any of my other programs employing this printer when pressing properties button. The complete error message I get is as follows:
    '''DELL PRINTER A940 PROPERTIES'''
    Function address 0x0 caused a protection fault (exception code 0xc0000005). The application property sheet page(s) may not function properly.
    |OK|

    Perform the suggestions mentioned in the following articles:
    * [[Firefox prints incorrectly#w_reset-firefox-printer-setting|Reset Firefox Printer Setting]]
    * http://kb.mozillazine.org/Problems_printing_web_pages
    Check and tell if its working.

  • Macbook pro not opening when press power button

    my mac book pro not opening when press power button even battery is full.

    I already tried with the Battery in and without but no luck. I'm sure it's not that kind of problem unfortunally

  • HT4211 My i pad hang on with information of icloud back up with informtion of "this ipad hasn't been backed up in three weeks. backups happen when this pad is plugged in, locked and connected to wifi"  and doesn't close when press ok button. I am not able

    My i pad hang on with information of icloud back up with informtion of "this ipad hasn't been backed up in three weeks. backups happen when this pad is plugged in, locked and connected to wifi"  and doesn't close when press ok button and still hangon. I am not able to switched off also. How to remove popoup note and entering into ipad applications.

    Hold down the sleep and home keys for about 20 seconds or so and see if it reboots.

  • How to enable the InputField when press the Button

    My sceanrio is by default the InputField is in disable .when ever i press the button it should enable.

    Here is the sample code for HTMLB :
    <hbj:inputField
        id="InputText"
        jsObjectNeeded="true"
        type="string"
        maxlength="30"
        value="Text" >
    <% String text = myContext.getParamIdForComponent(create_group); %>
    <SCRIPT> var jsText = '<%=text%>'; </SCRIPT>
    </hbj:inputField>
    <hbj:button id="Enable_Button"
           text="Enable"
           tooltip="Enable InputField"
           onClick="onEnableClick"
           onClientClick="enableInputField()"
           width="30px" >
    </hbj:button>
    </hbj:page>
    </hbj:content>
    <script language="javascript">
         function enableInputField()
              var funcName = htmlb_formid+"_getHtmlbElementId";
              func = window[funcName];
              var inputfield = eval(jsText);
                                    inputfield.setEnabled();
    </script>
    Refer to the following links for more info...
    http://help.sap.com/saphelp_nw04/helpdata/en/53/9d0e41a346ef6fe10000000a1550b0/content.htm
    http://help.sap.com/saphelp_nw04/helpdata/en/43/067941a51a1a09e10000000a155106/content.htm
    Regards,
    Rajiv

  • Supressing the effect of causing a submit when pressing Return

    We have hit a problem with a JSP application that we have written. It
    consists of a number of JSP pages.
    The pages render data from Java Beans which in turn are populated by various database (ORACLE) querys. Once the data is rendered the user
    can update the data in the fields.
    The problem we are having is that when the data is held in a text field
    and the user changes its value and then presses 'Return' (as opposed to 'TAB') the form is submitted and the database record is written
    back to the database.
    What we would look to do is to supress that action from happening, i.e
    when the user presses 'Return' it does NOT submit, but rather navigates
    to the next field. We would only want the submit to happen when
    the user presses the 'SAVE' button.
    Is there a way to override this default behaviour of HTML ?
    Thanks
    Chris

    JSP and various other languages can easily state what's supposed to be on the page, but they can't tell the browser what to do in certain circumstances. You'll have to use a browser-programming language (well, client side programming) and the only "common" language out there right now is JavaScript.

  • Ps4 noise when pressing a button. speaker noise

    Hey guys. I have an issue with a ps4. I left my ps4 on rest mode for a couple of hours. Anf now i have a weird noise on main ps4 menu when i press a button on the controller. The noise comes from the ps4 but you can hear it through the speaker.
    i went to options and i turned on the music that you hear at the main menu but even that sounds distorted. I turned of button noise and music and everything is fine now. Please dont tell me that my ps4is damaged.

    Actually i solved the issue. It was from my stereo system. Dont know what happened with it. I had clear sound from tv but the surround sound was distprted. I just turn off my stereo system. So glad that my ps4 is alive. Thx for the replies though.

  • Acrobat 9 (CS4) Freezes when pressing 'Print' button

    Hi all,
    I am having a problem with Acrobat Pro 9.0.0 in that when I go to print (with any setting/printer etc) selected, the dialog freezes after pressing the 'Print' button. Therefore I must force-quit to start Acrobat again.
    I have tried trashing the preferences, removing Acrobat 9 altogether & re-installing and nothing seems to be helping.
    I have also tried all sorts of different PDF files both created by myself as well as random PDF's from elsewhere.
    What also seems to happen is that the blue 'Print' button pulses while waiting to be pressed and then when pressed goes blue and stops pulsing and that is where it stays frozen.
    Please let me know if you need any more information or details of the configuration I am using.
    ps. I have Acrobat Professional 8.1.3 also installed which works fine including printing.
    Regards,
    Ross

    Hi Mike,
    I do have some startup items;
    EyeTV Helper
    AdobeResourcesSynchroni
    I Love Stars
    GrowlHelperApp
    NikePlusUtil
    EEvent Manager
    EPSON Scanner Monitor
    I don't have any haxies on anything.
    I made a new user account and tried to replicate the problem but it seems to work fine when logged in as a different user which leads me to think it is a preference in my current user>library
    Ross

  • How to suppress the showing up of the menu when press soft buttons...

    I'm writing a game with fullscreen mode. When I press soft buttons in fullscreen mode, the menu shows up. How can i suppress it when i press the soft buttons for my own executions.
    I have tested a game on Nokia 6600.

    U missed understand my mine.
    I want to suppress the system menu when i press soft buttons in fullscreen mode. I want to execute my own codes when i press soft buttons.
    thanks

  • How to invoke plsql block when press a button

    new to htmldb,
    let's say i have a form with some items , after i press a button, i want to invoke a plsql block, how can i do that?
    Cheers,

    I have only played a bit with this. I had a region with search criteria’s and a region based on a procedure. I created a page button on the first region that branched to the same page. When I press the button the page is refreshed and the procedure is re-executed with what ever search criteria’s the user has keyed in. That is as far as I have come :-)

  • Error when pressing the buttons in ALV

    Hi all,
    I have written a report using ALV by using FM REUSE_ALV_GRID_DISPLAY
    layout-coltab_fieldname = 'FARBE'.
    layout-f2code = 'DISPLAY'.
    layout-zebra = 'X'.
    layout-box_fieldname = 'BOX'.
    event_exit-ucomm = '&XP1'.
    event_exit-before = 'X'.
    APPEND event_exit.
    variant-report = repid.
    CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
         EXPORTING
              I_INTERFACE_CHECK  = check_flag      
              I_CALLBACK_PROGRAM = repid
              I_STRUCTURE_NAME    = 'ITAB'
              is_layout             = layout
              it_fieldcat           = fieldcat
              it_excluding          = excluding
              it_special_groups     = gruppen[]
              it_sort               = sorttab[]
              it_filter             = filttab[]
              i_save                = 'X'
              is_variant            = variant
              it_events             = events[]
           TABLES
               T_OUTTAB             = ITAB
           EXCEPTIONS
               program_error        = 1
               OTHERS               = 2.
    The ALV grid is shown successfully after executing the program. But when I press the button like 'Print Preview', 'SpreadSheet' which are provided by the ALV. I got the following error:
    Assignment error: Overwriting a protected field.
    What happened?
    Error in ABAP application program.
    The current ABAP program "SAPLSLVC_FULLSCREEN" had to be terminated because one of the statements could not be executed.
    This is probably due to an error in the ABAP program.
    Any one has idea how to solve it? Thanks!

    Gundam,
    I feel the problem is in line in BOLD.
    excluding[] must be an Internal Table.
    CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
    EXPORTING
    I_INTERFACE_CHECK = check_flag
    I_CALLBACK_PROGRAM = repid
    I_STRUCTURE_NAME = 'ITAB'
    is_layout = layout
    it_fieldcat = fieldcat
    <b>it_excluding = excluding[ ]</b>
    it_special_groups = gruppen[]
    it_sort = sorttab[]
    it_filter = filttab[]
    i_save = 'X'
    is_variant = variant
    it_events = events[]
    TABLES
    T_OUTTAB = ITAB
    EXCEPTIONS
    program_error = 1
    OTHERS = 2.
    Please have a check and let me know.
    Thanks
    Kam

Maybe you are looking for