Show prompts before opening a new report using action links

Hi,
I have a report that's grouped on a particular GROUP_ID and the current month. On clicking the GROUP_ID on the report, I need to open a new report that displays data for that month but on date level. Since we have a lot of data at date level (>100,000), I wanted a drop down on the top of the report that has all dates in that month and clicking on a particular date, the data in the pivot table is fetched.
I tried using the pivot table prompt but that seems to fetch all the data first and then creates a drop down prompt. Is there a way where we could fire the query only on choosing a particular date.
Is there any other way we could do this?
Regards.

You're saying to add a dashboard prompt for Month and Date? When opening reports using Action links, I am not able to see the prompts.
I am using Go URLs in Action links and that data for a month is >100,000. So, I want to show the data for the month and the first date of that month.
I really don't know whether such thing is possible or not. I just want to restrict the data to the first day of the month. Rest of the data is queried when user selects a different date from the drop down.

Similar Messages

  • Open Page in new window using action link

    How do I open a page in a new window, using action link ?
    If I put javascript window.open in OnClick event, the action event ins�t called.

    Hi,
    The window.open method can be used with the hyperlink component. So please try it with a hyperlink component.
    Cheers
    Giri :-)
    Creator Team

  • Cannot open a new tab using + button. I was able to do it before.

    When I try to open a new tab using + button nothing happens. I used to be able to do it.

    That is a problem with the Ask<i></i>.com toolbar (Tools > Add-ons > Extensions)
    See:
    * [[Troubleshooting extensions and themes]]

  • Waiting a JInternalFrame to be closed before opening a new one

    Hello all
    I would like to wait a JInternalFrame to be closed by the user before opening a new one.
    Here is the sample code :
                   openRemote.getWindow().show();
                   Thread t = new Thread(new Runnable() {
                             public void run() {
                                  try {
                                       synchronized(openRemote.getWindow()) {
                                            System.out.println("Wait");
                                            openRemote.getWindow().wait();
                                            System.out.println("Closed");
                                       System.out.println("1111");
                                       //ChoosePhantomAction cpa = new ChoosePhantomAction();
                                       //cpa.actionPerformed(null);
                                       String phant = (String)JOptionPane.showInternalInputDialog(iFrame,"Phantom's name:", "Phantom selection",JOptionPane.PLAIN_MESSAGE,null,null, null);
                                       System.out.println("2222");
                                  } catch (java.lang.InterruptedException ie) {
                                       ie.printStackTrace();
                                  } catch (Exception exp) {
                                       exp.printStackTrace();
                   t.start();The first code line shows a JInternalFrame.
    I can see the JOptionPane on screen when i close the first frame but the message "22222" is never displayed. And i really can't understand why. Can it be due to the thread that uses Swing objects or the event dispatcher ?
    Thanks

    There are 2 files.
    The main one :
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    import javax.swing.event.*;
    public class SSCCE extends JPanel {
        static JFrame frame;
         private JDesktopPane desktop = new JDesktopPane();
         private JInternalFrame iFrame = new JInternalFrame();
         public SSCCE() {
              setLayout(new BorderLayout());
              add(desktop, BorderLayout.CENTER);
              setPreferredSize(new Dimension(800,600));
              iFrame.setPreferredSize(new Dimension(300,200));
              JPanel panelCentre = new JPanel();
              panelCentre.setLayout(new BorderLayout());
              panelCentre.add(getMenusBar(), BorderLayout.NORTH);
              iFrame.getContentPane().add(panelCentre, BorderLayout.CENTER);
              iFrame.pack();
              iFrame.setVisible(true);
              desktop.add(iFrame);
        public JMenuBar getMenusBar() {
              JMenuBar menuBar = new JMenuBar();
              JMenu clickMenu = (JMenu) menuBar.add(new JMenu("Click here..."));
              createMenuItem(clickMenu, "...and now here", "click", new ClickAction());
              return menuBar;
        public JMenuItem createMenuItem(JMenu menu, String label,
                                                 String accessibleDescription, Action action) {
            JMenuItem mi = (JMenuItem) menu.add(new JMenuItem(label));
              mi.getAccessibleContext().setAccessibleDescription(accessibleDescription);
              mi.addActionListener(action);
              if(action == null) {
                   mi.setEnabled(false);
              return mi;
        public static JFrame createFrame() {
              JFrame frame = new JFrame();
              WindowListener l = new WindowAdapter() {
                        public void windowClosing(WindowEvent e) {
                             System.exit(0);
              frame.addWindowListener(l);
              return frame;
        class ClickAction extends AbstractAction {
            public void actionPerformed(ActionEvent e) {
                   final InternalPopUp ip1 = new InternalPopUp(desktop, "Please close to open 2nd window");
                   ip1.show();
                   Thread t = new Thread(new Runnable() {
                             public void run() {
                                  try {
                                       synchronized(ip1) {
                                            System.out.println("Wait");
                                            ip1.wait();
                                            System.out.println("Closed");
                                       System.out.println("1111");
                                       String phant = (String)JOptionPane.showInternalInputDialog(iFrame,"Enter something", "Enter something and check if 2222 is displayed in the console",JOptionPane.PLAIN_MESSAGE,null,null, null);
                                       System.out.println("2222");
                                  } catch (java.lang.InterruptedException ie) {
                                       ie.printStackTrace();
                                  } catch (Exception exp) {
                                       exp.printStackTrace();
                   t.start();
        public static void main(String s[]) {
              frame = createFrame();
              SSCCE sscce = new SSCCE();
              frame.setTitle("Sample test");
              frame.getContentPane().add(sscce, BorderLayout.CENTER);
              frame.pack();
              frame.setLocation(0,0);
              frame.setResizable(true);
              frame.setVisible(true);
    }The second one :
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    import javax.swing.event.*;
    import javax.swing.border.TitledBorder;
    class InternalPopUp extends JInternalFrame {
        private int PREFERRED_WIDTH = 250;
        private int PREFERRED_HEIGHT = 80;
         private JDesktopPane desktop = null;
         class PopupListener implements InternalFrameListener {
              JInternalFrame parent = null;          
              public PopupListener(JInternalFrame parent) {
                   this.parent = parent;
              public void internalFrameClosing(InternalFrameEvent e) {
              public void internalFrameClosed(InternalFrameEvent e) {
                   desktop.repaint();
                   synchronized(e.getSource()) {
                        e.getSource().notifyAll();
              public void internalFrameOpened(InternalFrameEvent e) {
              public void internalFrameIconified(InternalFrameEvent e) {
              public void internalFrameDeiconified(InternalFrameEvent e) {
              public void internalFrameActivated(InternalFrameEvent e) {
              public void internalFrameDeactivated(InternalFrameEvent e) {
         public InternalPopUp(JDesktopPane desktop, String text) {
              this.desktop = desktop;
              addInternalFrameListener(new PopupListener(this));
              setPreferredSize(new Dimension(PREFERRED_WIDTH,PREFERRED_HEIGHT));
              JPanel panelCentre = new JPanel();
              JButton close = new JButton(text);
              close.addActionListener(new ActionListener() {
                        public void actionPerformed(ActionEvent e) {
                             hidePopup();
              panelCentre.add(close);
              getContentPane().add(panelCentre);
              pack();
              desktop.add(this, JLayeredPane.POPUP_LAYER);
         public void hidePopup() {
              //super.hide();
              try {
                   setClosed(true);
              } catch (Exception e) {
              desktop.repaint();
    }I never see the "2222" sting in the console ...

  • All of a sudden I can no longer open a new tab using either the icon on the tab bar, the keyboard short cut or the File menu option. I can open a new tab ONLY by clicking on a bookmark or link.

    All of a sudden I can no longer open a new tab using either the icon on the tab bar, the keyboard short cut or the File menu option. I can open a new tab ONLY by clicking on a bookmark or link

    This issue can be caused by the Ask<i></i>.com toolbar (Tools > Add-ons > Extensions)
    Your system details show that toolbar in the user agent as AskTbAD2/3.12.2.16749
    * https://support.mozilla.com/kb/Troubleshooting+extensions+and+themes

  • Using Firefox 5 in Windows 7, once I have Firefox open, I can no longer open a new window using the start button. How do I fix?

    As I stated, I have Windows 7 on my laptop and have installed Firefox 5. I sometimes like to have multiple windows of the browser open. But, unlike any previous version of Firefox, now when I have the browser open, when I try to open a new window using the Start menu, it will not open one. I have to use Ctrl+N. Why did this change?
    This may seem insignificant but it really hampers my work flow. For one, with other applications, Shift+N is what opens a new window. For two, I've been doing with with my browsers for years now and it's like second nature for me - having to remember that in Firefox it's Ctrl+N is a pain in my tuccus.
    Firefox is my go to browser and I would like it to stay that way. Please find the solution for me! I have tried looking using Tools, Options, as well as looking at my start menu and taskbar options, and no dice.

    Start Firefox in <u>[[Safe Mode]]</u> to check if one of the extensions is causing the problem (switch to the DEFAULT theme: Firefox (Tools) > Add-ons > Appearance/Themes).
    *Don't make any changes on the Safe mode start window.
    *https://support.mozilla.com/kb/Safe+Mode
    *https://support.mozilla.com/kb/Troubleshooting+extensions+and+themes

  • Open Page in new window using hyper link

    I put the window.open method on OnClick event of outputlink to open a page in new window, but the page is started in a old window.
    How do I start the page in a new window.
    My sintaxe of outputlink:
    <h:outputLink binding="#{P0110.hyperlink1}" id="hyperlink1"
    onclick="WindowObjectReference = window.open('about:blank', '','menubar=yes,location=yes,resizable=yes,scrollbars=yes,status=yes');" value="http://www.sun.com/jscreator">
    </h:outputLink>

    Hi,
    Following are the steps to open a new window using the window.open method for the hyperlink component:
    1. Drag and drop a hyperlink component onto the page
    2. In the properties sheet go to the Value property and delete the value present there
    3. Click on the ... button next to the onclick property
    4. Enter the line of code given below:
    window.open("http://www.yahoo.com","New window");
    5. Save and run the project
    On clicking on the hyperlink a new window will open with the www.yahoo.com page.
    Hope this helps
    Cheers
    Giri :-)
    Creator Team

  • How can I set or reset the page that is loaded when I open a new tab using Ctrl t ?? by

    I recently downloaded a program that has, as an undesired additional action, apprently setup Yahoo as the page that opens by default when I open a new tab using <Ctrl> <t> (or the <+> symbol on the tab bar). This is aggravating to me, particularly as I have not been able to find a way to stop it occurring.
    I expect that it is buried somewhere in my profile, but I also have not found a way to explore or edit the contents of my profile.
    There is a JScript script file called "user" in ...\profiles\4g4vpust.default that I suspect is associated with the behaviour, but renaming it achieved nothing.
    Prior to this, my new tabs used to open as blank pages, i.e. did not load any URL and I was happy with that. How can I get back to that state?

    Did it add the freeze net assistant add-on? That add-on is known to do this. If you have that add-on you can uninstall it Firefox should revert to the default behavior.
    If you do not have that add-on, another add-on will be causing this, you can use the procedure in the following link to identify what one - https://support.mozilla.com/kb/Troubleshooting+extensions+and+themes

  • I can't open a new tab using Ctrl+T or by clicking on the + symbol. I can, however, open a new tab when holding down Ctrl and clicking on a link. How can I fix this please?

    I used to be able to open a new tab using Ctrl+T but that has stopped working. Having I accidentally changed something?

    Disable the Ask Toolbar.

  • When I try to open a new tab using the "+" on the toolbar, nothing happens. Even trying to use the cntl t to open a new tab does not work. To open a new tab, I must right click on a hyperlink. how can I correct this? Using Firefox 3.6.18

    When I try to open a new tab using the "+" on the toolbar, nothing happens. Even trying to use the cntl t to open a new tab does not work. To open a new tab, I must right click on a hyperlink. how can I correct this? Using Firefox 3.6.18

    The Ask Toolbar is causing that in the Firefox 3.6.13+ versions. Uninstall that extension.
    There are a couple of places to check for the Ask toolbar:
    * Check the Windows Control panel for the Ask Toolbar - http://about.ask.com/apn/toolbar/docs/default/faq/en/ff/index.html#na4
    * Also check your list of extensions, you may be able to uninstall it from there - https://support.mozilla.com/kb/Uninstalling+add-ons

  • How can I open a new page (using "Pages") when I already have another page open?  It just keeps reverting to the page I have opened already and won't let me open another one?

    How can I open a new page (using "Pages") when I already have another page open?  It just keeps reverting to the page I have opened already and won't let me open another one?

    To make a new document, go to File > New From Template chooser and choose the type of document you wish to create.
    To add a new page to an existing document go to Insert > Sections > Blank.

  • Opening XIR2 webi reports using C# code

    Hi all,
             Is it possible to open Xir2 webi reports using C# code.If so can u throw light on the same.Thanks in advance

    Check out the Dev Library:
    http://devlibrary.businessobjects.com/BusinessObjectsXIR2SP2/en/devsuite.htm
    You will find a scheduling Webi sample under the BusinessObjects Enterprise|Tutorials section.
    You will the viewing code under the Report Engine .NEt Developers guide section under Application Essentials.
    Jason

  • Firefox is set to open a new page when a link is selected, however it opens underneath/behind

    Firefox is set to open a new page when a link is selected, however it opens underneath/behind the page containing the link. In other words I can't see the new page because it is beneath the one I'm looking at.
    75% of the time this happens, 25% of the time it works as it should.

    Do you mean that it is opening links in a new window? If you would rather have a new tab instead, you can set that in Options > Tabs. Some links are set up so that they will open in a new tab or window. I know of no way to make those open in the same tab, short of changing the code on the page.

  • Adobe Reader: PDF  to open a new browser or cross links?

    Is there a way when we click an image link within the PDF page on IE browser to open a new browser or cross link I've tried to uncheck the open cross links in same window, but it seems not working...is there another settings in the IE7 browser or in Adobe Reader8 I need to change??

    I´ve got the same problem.
    I want to open a link to a website from a PDF stored in MS Sharepoint. This PDF is opened in a browser window (IE7), and the link always open the linked URL in the same window.
    I tried to change the same options as you too, but nothing changes.
    I can't believe that there is no way to do such a simple thing.
    Could anyone tell us if exists a way to include some option in the link like the "target='_blank' in HTML?
    Thanks in advance.

  • While browsing in Releaselog, I can't open a new Tab from a link(Ctrl left button). It opens in the same Tab and has just started happening

    While browsing in Releaselog, I can't open a new Tab from a link(Ctrl left button). It opens in the same Tab and has just started happening this week. All other websites are ok.

    You're welcome

Maybe you are looking for

  • What is new in iOS 5.1

    I was wondering, what is new in iOS 5.1? And does it fix the battery?

  • Can't install OSX after I installed new hard drive

    Okay so my 2009 MacBook pro would not start up, took it to the genius bar and they said I need a new hard drive. I installed a Western Digital blue Scorpio one from Best Buy and now when I turn on the computer I just get a flashing folder with a ques

  • EVERY-TIME I close photoshop I get this message "Photoshop quit unexpectedly"

    This just started today after running cs5 for months with no problems, I am not sure what I changed to cause this. Every-time I close the software I get this message "Photoshop quit unexpectedly". I have tried repairing permissions as well as trashin

  • S-Video Or connecting to a Tv

    Hello i have the Macbook pro 2.53ghz. I have many videos and stuff like that and i want to connect my laptop to the tv. I was wondering if there were attatchments or anything like that could let me connect my MacBook Pro to my Tv. Thank you very much

  • DTW Template

    Which template in DTW can be used to import 'Hierachies and Expansions' price data?