Has this ever been done before?

Main report with numberous subreports but most of the subreports are using very similar or the same parameter prompts. How to combine all these prompts into just 4 parameters.. of the numerous prompts 4 were identified as the same. any suggestions?

Hi,
Yes, this can be avoide by linking Main report parameter to sub report parameter. 
Example : Main report contains a 'Country' parameter and also some of your sub reports were also using the same parameter. 
Right click on your sub report and go in Change sub report links and select main report parameter and select your sub report equalent parameter ( here we are linking main report parameter to sub report parameter). 
Now your report will not askuser for your sub report parameter, it will pass your main report parameter value to sub report parameter.
thanks,
Sastry

Similar Messages

  • Context-sensitive FlashHelp from a Client App - Has it EVER been done?

    We are trying to call context-sensitive FlashHelp from a .NET client application. I've found posts from people with the same problem - they can't get it to work. The help window and main topic appear, but the topic context-sensitive portion of the address (pound sign and after) is ignored.  In the comments at the end of the online help topic "Program Help for .NET" (http://help.adobe.com/en_US/RoboHelp/8.0/RoboHTML/WS5b3ccc516d4fbf351e63e3d11aff59c571-7f3 9.html) the administrator states that the information will be updated in April, 2009. Still nothing. Any solutions out there?
    Regards,
    Joseph

    The updating of the help topic is distinct from the problem you are encountering. I believe this is a bug in FlashHelp.
    The more people who report a bug or request a feature, the more likely it is to be actioned. Please follow this link.
    http://www.Adobe.com/cfusion/mmform/index.cfm?name=wishform&product=38
    See www.grainge.org for RoboHelp and Authoring tips

  • Is it or has it ever been possible to select multiple PDF's and print into a single print stream using Reader

    We have Multiple users who claim they have been able to select multiple PDF's and select print. It then would send to a single stream and end up as one document. These are reader users.
    We have tested under reader 10.1.4 and 11.0.06 and haven't been able to make it work. Has this ever been possible?

    Thanks everyone. That's what I needed to know.

  • I restarted my mac and many apps and files disappeared. It's like it booted to a state several months ago. My CS 5 apps are not in the dock or applications folder. Has this ever happened before and what can I do?

    It's like it booted to a state it was in several months ago. My CS 5 apps are not in the dock or applications folder. Has this ever happened before and what can I do?
    The files on my desktop are not the ones that were there when I shut down. It's like it's gone back in time.
    My display's power supply got fried (I think) in a power outage so I bought a new one. However, every time I restart the display usually stays black. I have found I need to keep rebooting until it kicks in and starts working. I unplug everything, wait a while (a few minutes to overnight) and try booting again.
    This last time the display finally came on but I'm faced with this problem. I used to use time machine, but I deleted everything and disabled it a couple months ago or more so I'm at aloss as to why the mac is booting into the state it was in sevearl months ago.
    What could I have done to cause this? Has this ever happened to anyone else and is there a solution?
    Note: I did a search for a file I knew was created today. I found it and it showed that it was a file I had saved on the desktop this morning--even though that file's icon is not appearing on the desktop now.
    I did a search for photoshop and saw my CS5 version listed.
    However, I did a couple more searches and these files no longer appear in the search. I don't know if they're there or not. This is bizarre!
    I'm on a Mac Pro, 10.6.2.

    Thanks for the obvious question. I mean it. The very same thought came to me this morning and, sure enough, I had booted into another drive--my old one that, of course, had the old desktop, etc.
    It didn't dawn on me that this was the case since I hadn't set it as a boot drive but I guess in the course of all the restarts I did, it got switched.
    I'm back to normal again.

  • My apple id stop working (this apple id has not yet been used before....

    Hi i have a problem, my apple id stop working after i purchase application at app store. Went i try to sign in it alway say "this apple id has not yet been used before in the itune store. Tap review to sign in, then review your accout information".

    Just ignore the message and carry on!

  • I just made my apple account today and when i tried hen i to install a app my email and my password didn't work it just said like '' this apple id has not yet been used before in itunes store''

    i just made my apple id today abut when i tried to install a app from my iphone it didn't work it just said  '' this apple id has not yet been used before in itunes store'' i hope u can help me ...thx

    If you haven't already created an account in the app store:
    Scroll down to the bottom of the FEATURED page touch APPLE ID and CREATE ACCOUNT
    If you have already created an account in the app store:
    First of all, double check you're spelling the password right.
    If you're sure it's not the password, scroll down to the bottom of the FEATURED page in the App Store on your iPhone, touch APPLE ID: and then VIEW ACCOUNT and make sure you have the correct card details and billing address on your account.
    Also, connect your iPhone to your computer, then log in to the iTunes store in iTunes on your computer and check all your details. After you've updated your details sync your iPhone.
    If you still can't get it to work, book an appointment with a genius at your nearest Apple Store. They should be able to solve whatever the problem is.

  • Has this bug been fixed in 1.3 and beyond?

    There is a problem with adding a Mnemonic to a JLabel and linking it to a JTextField (I haven't tried other JTextComponents). Copy the following code, and try to run it:
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    public class SwingProblem
       public static void main( String [] args )
             Create labels and text fields.
             You can use the keyboard mnemonics to switch
             between the fields: ALT-S and ALT-J.
          // For the top of the frame
          JLabel jlTop = new JLabel( "Swing" );
          jlTop.setDisplayedMnemonic( KeyEvent.VK_S );
          JTextField jtfTop = new JTextField( 20 );
          jlTop.setLabelFor( jtfTop );
          JPanel jpTop = new JPanel();
          jpTop.add( jlTop );
          jpTop.add( jtfTop );
          // Now, for the bottom of the frame
          JLabel jlBottom = new JLabel( "Jazz" );
          jlBottom.setDisplayedMnemonic( KeyEvent.VK_J );
          JTextField jtfBottom = new JTextField( 20 );
          jlBottom.setLabelFor( jtfBottom );
          JPanel jpBottom = new JPanel();
          jpBottom.add( jlBottom );
          jpBottom.add( jtfBottom );
          // Make the frame
          JFrame frame = new JFrame( "What's up with this?" );
          frame.setSize( 300, 150 );
          frame.addWindowListener( // stop the program already!!
             new WindowAdapter()
                public void windowClosing( WindowEvent evt )
                   System.out.println( "See ya later, alligator!" );
                   System.exit( 0 );
          // Now add the content
          Container cp = frame.getContentPane();
          cp.add( jpTop, BorderLayout.NORTH );
          cp.add( jpBottom, BorderLayout.SOUTH );
          frame.setVisible( true );
       } // main( args )
    } // SwingProblemThe problem: when you use the keyboard mnemonics to switch between the two text fields, the the character is entered into the first field before the focus is transferred to the other one.
    I am currently using JDK 1.2.2 on Micro**** Win****, and am waiting for the arrival of a disc with JDK 1.3 (I don't have the patience to wait for the download of the newer JDK over the telephone line...)
    For those who have JDK 1.3 or 1.4(Beta), has this problem been fixed? I wanted to know for sure before I added this to the Bug Report.
    Thanks

    It has been fixed in 1.3.
    Sorry for the post

  • Has there ever been a way/consideration to update an ipod shuffle by attaching it to an iphone or ipad?

    Has there ever been a way/consideration to update an ipod shuffle by attaching it to an iphone or ipad? With a small audio cord, would it be possible to update and charge an ipod shuffle via an iphone or ipad? This could be useful for people on the go who want to add music to a workout playlist or have forgotten to charge their shuffle before a run/ride.

    No, this is not possible. A computer has traditionally been a required part of the whole package, and only recently has become optional with iCloud and direct iTunes / app downloads.
    In any event an iOS device has to get its content directly from a computer or directly from Apple. There is no other way.

  • We run an iMac 3.4 GHz I7 for our church worship service; we haven't upgraded to Mavericks because we heard about issues with multiple screens crashing.  Has this issue been resolved?  Thank you!

    We run an iMac 3.4 GHz I7 in our church worship service; we have front screens and a stage display monitor ; we haven't upgraded to Mavericks because we heard about issues with multiple screens crashing.  Has this issue been resolved?  Now that we are 2 upgrades behind, I'm getting little concerned.  Thank you!

    Oh, well that was a whole other kettle of fish:
    Oh the G4 I attempted to install iLife '08 before Lepoard was available. About the only thing that installed cleanly was iPhoto. I ended up reinstalling everything back to iLife '06, and then upgrading back to the current stable version of the iLife '06 version. I didn't attempt a reinstall until after I upgraded to Leopard.
    When I did reinstall, I made a iLife '06 folder, copied all iLife apps into it, and upgraded. Seemed to work, except for the part where iMovie gets left behind and iDVD is only mostly functional.
    When I installed on the other 2 machines, it was after installing Leopard and all upgrades. On those 2 machines, I didn't bother with the copy, I just moved everything to the iLife '06 folder I created, and did a fresh install.
    I didn't have to do anything with the iPhoto Libraries, that I can recall.
    I always do an upgrade, never an archive and install. I've never had a problem with this back to 10.1 or 10.2.

  • Has anyone ever been quoted more than $500 to replace a failed logic board?

    Has anyone ever been quoted more than $500 to replace a failed logic board? A Genius buddy of mine swears that it'll never be over $500 but I' convinced he's high out of his mind.

    I doubt it. They don't even take the same kind of RAM.
    What makes you think a replacement "will most likely go bad in the future"? Some have had to go back more than once; many haven't. (And many have not gone in at all.) There are many iBook users out there, happily iBooking away without any knowledge of the iBook Logic Board Repair Extension Program because they've never had a problem.
    Get it replaced, free, NOW, and worry about the future when it gets here.
    http://www.apple.com/support/ibook/faq/
    P.S. When you make an error in a post, there is a little edit-pencil icon next to the "Reply" icon in your post. The edit pencil stays there for about 15 minutes to allow you to edit your post. Just click on it, and it takes you back to your message box so you can edit it to your heart's content.

  • My purchased download of Photoshop Elements did not work and I have been trying to reach a real person at Adobe.  Has anyone ever been able to do that.  If so can you tell me how to do that.

    My purchased download of Photoshop Elements did not work and I have been trying to reach a real person at Adobe.  Has anyone ever been able to do that.  If so can you tell me how to do that.

    Hi vision4success ,
    I would like to gather some information regarding your issue, So, please answer the questions below:
    What is the exact issue that you are facing?
    Do you get any error while installing Photoshop element?
    What is the Operating System that you are using?
    Since when you are facing this problem. Has it ever worked for you?
    What all steps did you try from your end?
    If you have any other details regarding the issue that might help us, please feel free to mention that as well.
    Waiting for you reply.
    Regards,
    Sarika

  • I was on a website all of a sudden my screen freezes I was able to get out of that screen after a few second and then noticed all my app icon disappeared  I have an IPhone 5.  Has this happened to anyone before?

    I was on a website all of a sudden my screen freezes I was able to get out of that screen after a few second and then noticed all my app icon disappeared  I have an IPhone 5.  Has this happened to anyone before?

    That is very strange! Have you been able to get your apps icons back now? Have you attempted a soft reset by holding the power button and home button at the same time until the phone restarts? Keep me posted with the results!
    BryanS_VZW
    Follow us on Twitter @VZWSupport
    If my response answered your question please click the �Correct Answer� button under my response. This ensures others can benefit from our conversation. Thanks in advance for your help with this!!

  • Flash player does not work with new ICS Android 4.0.4 OS. Has this problem been addressed?

    Flash player does not work with new ICS Android 4.0.4 OS. Has this problem been addressed? I am using Firefox Beta for android and I also tried just Firefox.

    Please check the Play Store app for any Flash updates and install them if present.

  • I go settings then store to sign in but I can't sign because it says my apple id has not yet been used before the iTunes store? That's why I cant download apps?

    I go settings then store to sign in but I can't sign because it says my apple id has not yet been used before the iTunes store? That's why I cant download apps?

    That means you have to sign into/view your account and review you account and make sure you have a valid payment method specified in your account.

  • HT201413 when i installed itunes in my old computer it would disable my CD burner and I was only able to burn through itunes. has this problem been resloved or will i have the same problem when i download it into my new computer?

    When I installed itunes into my old computer (loaded with Windows Vista) it deleated my CD burner and would only allow me to burn via itunes - I had to go in to Best Buy to have them fis the problem but was told not to download new updates for itunes or it would do the same. with this fix I am not able to burn CDs from itunes which is a bummer.  If I download itunes onto my new  computer (loaded with Windows 7) is it going to do the same thing or has  this problem been resolved?

    Copy them from your old computer, or your backuo copy of your old computer. to your new one.
    The music sync is one way - computer to ipod.  the exception is itunes purchases.

Maybe you are looking for

  • IPod nano locked with folder and exclamation

    I have received today a new iPod nano and it has worked just for an hour. In the middle of a transfer from my pc it got locked. I tried everything but to no avail. It doesn't reset pressing select and menu and it doesn't restore with iPod updater, be

  • Converting data to char in double quotes.

    I need to create a comma separated txt data load file. Each column has to be within double quotes. "Material","Plant","SOrg" ..... Currently I am doing something like this. .. Loop at table, for each field, concatenate " field value ". But I find thi

  • CR2 Files from 5D Mark II

    I have a new Canon 5D Mark II which came out of the box with firmware rev 1.0.7. When I upload RAW CR2 files from this camera these files are not recognized by Camera Raw CS4 ver 5.0. I tried to convert the CS2 files to DNG automatically using Bridge

  • Demand and receipts

    hi in SAP parlance we frequently come across two words Demands  and Receipts list of all demands as for as i know are  are  customer demand ,sales order demand,demand from MD61 (pir),demand created from planning book .would you please list out all de

  • The check digit of the IBAN is outside of the valid range 02-98

    Dear Gurus, My user has to create some master data for intermediate bank processing OR bank chain setup. From previous colleagues' manual and some historical samples, no IBAN is needed to put. However, when I create a new one or change the old one, I