How do i create a report that has drill-down with class?

How do I create a report that has drill-down levels so that I can have summary information at the top level but then view specific records at a more detailed level?

can i know ur email address.
this is my other one coding
but problem is very very slow when i 1 see my output
TABLES: proj, coep.
*&            TYPES DECLARATION                                        *
*TYPES: BEGIN OF tb_coep,
         wtgbtr TYPE coep-wtgbtr,
      END OF tb_coep.
DATA : int_proj TYPE proj OCCURS 0 WITH HEADER LINE.
DATA : int_coep TYPE coep OCCURS 0 WITH HEADER LINE.
DATA : gd_date(10). " FIELD TO STORE OUTPUT DATE
TYPES : BEGIN OF t_date,
          year(4)  TYPE n,
          month(2) TYPE n,
          day(2)   TYPE n,
       END OF t_date.
*&            SELECTION-SCREEN                                         *
SELECTION-SCREEN BEGIN OF BLOCK b01 WITH FRAME TITLE text-001.
SELECT-OPTIONS: so_pspnr FOR proj-pspnr OBLIGATORY.
SELECTION-SCREEN ULINE.
SELECTION-SCREEN END OF BLOCK b01.
*&            TOP-OF-PAGE                                              *
*&            fetch the data for the list                              *
SELECT * INTO int_proj FROM proj where
         pspnr in so_pspnr.
append int_proj.
CLEAR int_proj.
ENDSELECT.
SELECT * into int_coep FROM coep WHERE
         wtgbtr in so_pspnr.
append int_coep.
CLEAR int_coep.
ENDSELECT.
LOOP at int_proj.
  write : / int_proj-pspnr, int_proj-post1.
ENDLOOP.
LOOP at int_coep.
  write : int_coep-wtgbtr.
ENDLOOP.
Edited by: Dickson on Jul 10, 2009 10:53 AM

Similar Messages

  • Printing report that has a parameter with multiple values crashes jvm

    I am using BOE XI 4.0 as an unmanaged RAS.
    I am able to preview a report that has a string discrete parameter that can have multiple values.  If I give it a single value.  It previews fine.  If I give it an empty string it prints all values which is fine.  If I give it two discrete values, it displays just those two.
    However, if I try printing the report to a printer:
    1 parameter value - prints fine.
    2 parameter values - crashes jvm
    empty string parameter value - crashes jvm
    I would appreciate some direction on how to do this.  It works in crystal reports for eclipse.
    The test jsp I am using is based off of the samples.  The print test jsp is the same as the preview test with the exception of the following code differences.:
    preview report.jsp code
    // Create a Viewer object
    CrystalReportViewer viewer = new CrystalReportViewer();
    // Set the report source for the  viewer to the ReportClientDocument's report source
    viewer.setReportSource(clientDoc.getReportSource());
    // Process the http request to view the report
    viewer.processHttpRequest(request, response, getServletConfig().getServletContext(), out);
    // Dispose of the viewer object
    viewer.dispose();
    print report jsp code
      PrintReportOptions printOptions = new PrintReportOptions();
      printOptions.setPrinterName("DELL");
      try {
          clientDoc.getPrintOutputController().printReport(printOptions);
      } catch (ReportSDKException ex1) {
          System.out.println("Message - " + ex1.getLocalizedMessage());
      } catch (Exception ex2) {
          System.out.println("Message - " + ex2.getLocalizedMessage());
      clientDoc.close();

    I am using BOE XI 4.0 as an unmanaged RAS.
    I am able to preview a report that has a string discrete parameter that can have multiple values.  If I give it a single value.  It previews fine.  If I give it an empty string it prints all values which is fine.  If I give it two discrete values, it displays just those two.
    However, if I try printing the report to a printer:
    1 parameter value - prints fine.
    2 parameter values - crashes jvm
    empty string parameter value - crashes jvm
    I would appreciate some direction on how to do this.  It works in crystal reports for eclipse.
    The test jsp I am using is based off of the samples.  The print test jsp is the same as the preview test with the exception of the following code differences.:
    preview report.jsp code
    // Create a Viewer object
    CrystalReportViewer viewer = new CrystalReportViewer();
    // Set the report source for the  viewer to the ReportClientDocument's report source
    viewer.setReportSource(clientDoc.getReportSource());
    // Process the http request to view the report
    viewer.processHttpRequest(request, response, getServletConfig().getServletContext(), out);
    // Dispose of the viewer object
    viewer.dispose();
    print report jsp code
      PrintReportOptions printOptions = new PrintReportOptions();
      printOptions.setPrinterName("DELL");
      try {
          clientDoc.getPrintOutputController().printReport(printOptions);
      } catch (ReportSDKException ex1) {
          System.out.println("Message - " + ex1.getLocalizedMessage());
      } catch (Exception ex2) {
          System.out.println("Message - " + ex2.getLocalizedMessage());
      clientDoc.close();

  • How can i copy a picture that has been installed with the flash player

    how can i copy a picture that has been installed using the flash player

    You can't. You can take a screen cap of it, but the container doesn't allow access to the individual images used in a SWF or FLV.

  • HT1212 how can i restore a ipod that has been disabled with a different computer

    how can i restore a ipod touch that has been disabled with a different computer

    Restore it in Recovery Mode: http://support.apple.com/kb/HT1808

  • How can I create a subVI that has state?

    I'm trying to simplify a VI that I inherited and I noticed a recurring pattern that IMHO should be a subVI.  The pattern is that we have a digital output line that is controlled by a timer.  Each output has a start time for it to activate and a duration after which it is turned off.  When the state changes, a single line entry is added to a common log file and an indicator shared variable is set so that the remote host VI updates.  We have a big while loop that checks the current time against each of the activation conditions.  To detect when the state has changed, we're using a shift register (for each actuator).  It's one thing to see the same pattern 3 times, but it's worse -- we want to sometimes use a different number of actuators.  If I was writing this in C++ (with which I'm far more comfortable than LabView), I'd write a class for the actuator and instantiate it N times.  The class would have member data to keep track of its state.  I can create a subVI that does the meat of the design pattern, but I can't figure out how to store the previous state in the subVI without requiring it to be passed in.  How do I keep the state and behavior of a VI together?  Surely there's a way to do this because otherwise I can't see how you could implement state-ful algorithms like, say, a PID controller.  But I'm at a loss to figure it out ...
    Thanks.
    Keith.

    To save state in a subVI and not use that state in other subVI calls, make the subVI reentrant.  When a subVI that is reentrant is called it creates a unique memory space for that subVI.  This is called a clone.  That memory space is where state is held for that subVI.  Keep in mind that it also means that the memory footprint is going to be larger.
    To set a subVI to be reentrant, open it and go to File -> VI Properties and select execution.  It will be a choice on the bottom left.
    Hope that this helps,
    Bob Young
    Bob Young - Test Engineer - Lapsed Certified LabVIEW Developer
    DISTek Integration, Inc. - NI Alliance Member
    mailto:[email protected]

  • How do you create a form that has user permissions per form field for different user?

    I need to create a form that is used by multi people but each user needs to fill out different fields within the form. I need the first user to make selections from a list and save it to send to another (the selection fields then need to be locked). Then the other user checks one of the selections made by the first user and saves the document to send back to the first user. Not sure if this is possible. I would like the first form field selections not to even show as a highlighted field to the other user (like just be more like a text field). I want the document to be able to be used more than once. The list selections will change and need to be sent to the other user at least once a month or more. Has anyone done this?

    There's no built-in way to do that, but it's probably doable using a custom-made script to hide and/or lock the fields.

  • How do you create a part that has two through holes with a single net connecting to both.

    I attempted to create a part that contained 2 through holes with a copper strip between them so they would connect to a single net, but one of the holes (pin 2) gets rejected by Ultiboard as an unconnected entitiy. Is there a way to define the second hole (pin 2) in such a way as to mitigate the problem?
    Thanks, Tod
    Solved!
    Go to Solution.

     Hi
    It is quite simple to do so:
    when making the footprint, you just put your two TH pins where you need them. name them 1 and 2.
    Then in Multisim, when making a new component with the component wizzard,in step 2 make a 1-pin component, and select your desired footprint(which has two pins).
    thenin step 3, make/choose your 1-pin symbol.
    In step 5 you can map the footprint to the symbol , just use both footprint pins for the same symbol pin.
    When using it in your schematic, you'll see one pin, in the layout, there will be two pins connected together..
    Good luck
    stressed user..

  • How can I create an application that has no menu bar?

    I have an application which has all of its functionailty available on screen as buttons or fields. This works very well at the moment. However when I create and run the application I see a men bar appears nuch the same as when deisgning the application namely, "File, Edit, Operate, Tools,, Browse, Windows, Help". I really don't want them to appear at all as everything is already catered for on screen. I have looked at the menu vi's but it is not clear how I can simply not have a menu bar.
    Any suggestions?
    Regards
    Kevin

    Many thanks,
    I have asked a similar question to this before but for some reason I always think I need to do these sort of things programmatically in the code rather than in a settings.
    Thanks in any case.
    regards
    Kevin

  • How can we create a form that has a pay now (via paypal) or pay later option for events

    Hi we have people that attend events that do not like to pay online they pat at the door - so they are not completing the registration form so we are getting emails for RSVPs as well as form data so this has created more of an issue for us than solved our registration process.

    Check out this post: http://forums.adobe.com/message/4399918#4399918
    You can use skip logic to get the desired effect. If you have problems do it just reply back.
    Randy

  • How do you create a shot that has several different video "layers"?

    I saw an episode of Workaholics where Adam stays up all night and there is a part where he is sitting on the kitchen floor but there is a "second" Adam running around the house at the same time. I would like to try and recreate this but I'm new to Premiere and I don't know the exact terminology that would explain this better. For reference, it is episode 12 "telamerican horror story" of season 3.
    Thanks!

    That scene could be a problem.
    The guy through the doorway is easy as is one of the two guys at the refridgerator.
    But as soon as one of those two guys crosses the other, a 30 minute edit just became an hour of pain and suffering, or more, to edit each and every frame individually. If you are practiced at it, then fine. Otherwise, plan to devote an hour per frame for the first few frames.
    Also, when you shoot the scene, you must, I repeat, MUST have your lighting under control. No sunshine, no stars, no Moon, nothing external coming in anywhere. Otherwise, if your lighting changes, you will spend a LOT of time fixing it, and it still won't be perfect.
    One other thing. Your tripod has to be very sturdy and locked down absolutely tight. The slightest movement will completely ruin the scene.
    However, with proper lighting, a steady tripod, and an actor/actress who hits their marks and never crosses over the boundaries between characters, it is a pretty easy job to get two, three, or even more instances done in just a few minutes.

  • How do i wipe a phone that has been registered with another itunes account?

    I have several users who have upgraded their company phones from 4/4S to new 5/5S devices.  They used their personal iTunes account to register the phone.  Now when I try to do a restore and wipe the device of the device, it won't let me without the previous user's Apple ID.  Is there a way around this?  One of the phones I am trying to wipe, the user is no longer with the company and I don't know how to get ahold of them.  Is that phone just useless now?

    You will need the user's Apple ID and password, or you will need to get them to go into iCloud and erase the iPhone. If you can't get in touch with a user, then your only hope will be to contact Apple Support. I've read from others that with proof that your company owns the iPhone there is something they can do to help, but that's not confirmed.
    This is the problem with allowing users to set up Find My iPhone with personal Apple IDs. You should set them up with a company-controlled ID for iCloud so as to avoid this problem.
    Regards.

  • How to Avoid Printing the data twice when the sub report has drill down?

    Hello,
    I have a sub report that has drill down which is placed in report footer.When i run the report sub report displays the data but when i tried to drill down it displays the same data again.After that i can able to drill down on sub report.Is there any way to avoid
    printing the same data twice.
    Thanks in advance.

    Hi,
    If the subreport you're referring to does not grow in size and it does not span multiple pages and you know the size of it, here's what you can do to stop drilling into subreports :
    1) Create a text object as large as the subreport (perhaps bigger than it) and fill it with spaces or new lines
    2) Place it 'over' the subreport such that it covers the entire area occupied by the subreport
    3) The subreport at all times should be smaller than the text object in all dimensions
    Now, when you hover the mouse over the subreport, there isn't any magnifying glass for you to drill down into.
    If the subreport has further drill-down functionality, then this isn't for you! Because, it just wouldn't allow you click on any objects in the subreport because of the text object eclipsing it. This is the only workaround I know at this point in time and I know a lot of users are looking for this.
    I would suggest that you log this as an Enhancement Request at http://ideas.sap.com for our developers to have a look into this.
    And finally, I also found an old forum post where Jamie has suggested a way to get this working on the Business Objects Environment. Give it a shot, if that's where the reports are eventually run.
    How to disable subreport view
    Hope this helps!
    -Abhilash

  • How do I create a report of what is run and when on Crystal Server

    In crystal server, how do I create a report that will tell me the name of all of my reports and the time it is scheduled to run?
    I get the feeling it is in the Query Builder,  but I have no idea what the names of all of these tables are.
    Anyone ever done this or know of another way to do this?

    Please download https://www.sdn.sap.com/irj/boc/index?rid=/library/uuid/404170c1-59ae-2b10-b19f-c86764e759a5#rating and read the section titled "Auditing Reports".

  • Creating a PDF that has editable fields and replaceable images

    I've been trying to figure out how I can create a PDF that has editable texts and replaceable images. I'm working for a company in which all computers only have Adobe Reader as means to view or edit a PDF file. So far I have managed to create a file that has editable text fields with customized appearance, which is great! The next step however was to create 'fields' that can be filled by an image. Is there a way to create replaceable images with LiveCycle or any other prorgram for that matter.
    My goal is simple: Create a PDF that has editable textfields and replaceable images. All of which should be done in Adobe Reader.
    I'm using Adobe Acrobat X Pro to create this file and I'm wondering if Live Cycle can help me with this problem, or if this is even possible to begin with. Thanks in advance.

    Your goal is very simple with the LCD. You are have to use only an Image Field (important no Image) from the object library.
    Any time you can click on it and select a new picture.
    Hope this information is helpful?
    Kind regards Mandy
    PS: Oh I opened this tab and there are no answers at this time

  • Can you create a template that has a header and footer to forms?

    Can you create a template that has a header and footer to forms?

    Yes but how are they going to create the Landscape versions?
    The problem with doing it in Pages '09 as rotated content is that the Headers and Footers are not rotated and there is inherent clumsiness in the rotated content usually being too large for the page when viewed at 90°.
    Best to make it in two or more separate documents.
    Peter

Maybe you are looking for

  • Active Sync not Working - Exchange 2013 with Exchange 2007

    Hi Recently we introduced Exchange 2013 servers to our existing Exchange 2007 organization. The servers are just configured with default self-signed certificate and URLs are pointing to server FQDNs. Everything is at default as far as configuration i

  • Payment Recommendation layout - missing vendors

    Good Day Experts, After going through the Payment Wizard, there the step where SAP will Recommendation which vendors to pay and how much. My customer usually prints this out for some internal procedures. I have 3 Vendors listed on screen, the first v

  • PageCheckSeconds (precompile jsp, stored in war file) (Weblogic 6.1)

    Hi,           I'm trying to stop the webserver from trying to recompile/check my jsp pages. I have set the pageCheckSeconds param to -1 but that doesn't seem to work. Looking at the weblogic.log file I get:           [WebAppServletContext(601285,kcs,

  • Problem downloading windows support software -- boot camp

    Attempting to download windows support software on MacBook Air 13.3" running version 10.7.4. The download is just hanging up. I was able to install Windows 7 with the boot camp and now don't have any drivers in the windows environment.

  • Regarding ECC 6.0- CRM and BW. URGENT....Please help!!

    Dear All, I have a small query- Are CRM and BW an integral part of ECC 6.0? I mean, if I install ECC 6.0, will CRM and BW also get installed OR Do I need to explicitly install CRM and BW after installing ECC 6.0? If CRM and BW are an integral part of