Suppressing certain pages of a report

I need to build a large report that contains multiple reports (30 or so reports in all). I want the user to be able to select from a parameter form which reports the large report will contain. Is there a way to set a trigger for each page that depends on the values passed from the parameter form. Someone please tell me what kind of trigger to use and how it should be coded.
Thanks,
Tripp

I'm not sure I understand: "Is there a way to set a trigger for each page". This seems to imply that you have one report and you want to restrict values displayed in that report. To do this you would just add a user parameter and reference it in the query to restrict the values returned. You wouldn't restrict the values in the layout.
However, if you do mean that you have a large report will contain 30 or so individual "reports" in it. Then each of these "reports" will have an independant section in the layout which should be surrounded by a variable sized frame - say M_1, M_2,.. M_30. In your output, you only want say "M_5" to be printed.
To do this, you need to create a format trigger against: "M_1", "M_2", .. "M_30". You would then have a user parameter "p_report" which you would reference in the format trigger as something like - for M_5:
function M_5FormatTrigger return boolean is
begin
return (nvl(:p_report, 'none') = 'M_5');
end;
To print only M_5, pass p_report=M_5 ont he command line.
You probably already have something more friendly than 'M_5' as the input value for the parameter.
You should also look at restricting the data retrieved by each of the other "reports" in your large report. You can do this by adding a lexical parameter to each of the queries so that they return no rows unless they are required by the "report".

Similar Messages

  • Printing certain pages in a report

    Hi all,
    I want to know how can i make the ABAP report to print certain pages in a report.
    Say, my abap report has 3 pages. The second page is blank. How can i code it so the printing skip the second page and continue to the third page?
    Additional Info: When user click the print button, it starts printing. When it reach the second empty page, it should be skip and resume printing the third page.
    Thanks
    William Wilstroth
    Message was edited by:
            william wilstroth

    i had found solution to this problem. You should use GET_PRINT_PARAMETER and NEW-PAGE PRINT ON/OFF.

  • PRINTING: Keynote will only print to a certain page # then stops

    Just to get this out of the way: iWork '08/Keynote 4.0, Mac OS 10.4.10 and everything has been updated. I also looked for other strings relating but could not find any.
    I have a few reports created in Keynote that will only print to a certain page. Each report prints the same page every time, but the page # differs for each report. For instance, one report will print to page 32 out of 64, another to 42 out of 70, etc...
    Further, if I select the pages that were missing, they will not print at all.
    I have tried different printers, networks and printers. Other programs (Word/Excel) will print in total.
    Has anyone heard of this problem/have any advice?
    Much thanks,
    Matt

    Not Charge
    - See:      
    iPod touch: Hardware troubleshooting
    - Try another cable. Some 5G iPods were shipped with Lightning cable that were either initially defective or failed after short use.
    - Try another charging source
    - Inspect the dock connector on the iPod for bent or missing contacts, foreign material, corroded contacts, broken, missing or cracked plastic.
    - Make an appointment at the Genius Bar of an Apple store.
      Apple Retail Store - Genius Bar 

  • Is it possible to suppress the Page Header of the Main Report based on the Section Name?

    Hi,
    I am fairly new to Crystal Reports XI.  Is it possible to suppress the Page Header of the Main Report based on the Section Name?  Thanks.

    In the section expert you can enter a formula on the suppress function.
    You just need something to check against if it is section name you say
    {section name} ="Suppressme"
    I have used it more in drill level to display headers based on how far you have drilled into a report.
    Hope this helps
    Eric
    Via Christi Health System

  • I need a section to display at the bottom of the first page of my report

    My report displays a number of records, but at the bottom of the first page of the report, I need a section (a remittance slip) that would only appear at the bottom of the first page.
    I've tried using a page footer with conditional suppression.  This is fine for the first page, but in subsequent pages, the footer space is reserved, so the records in my details section only go 2/3's of the page.  "Reserve minimum page footer" seems pretty useless.
    I've looked into using a details section that uses "Print at bottom of page".  But since my report contains groupings, this messes up my report structure and leaves a lot of extra space as well.
    I can't guarantee that a group footer section will always be on the first page, since it is found at the end of each group.
    Any suggestions?  Anything I'm missing?
    Thank you.

    hello plynch,
    i would use the method that Abhilash suggested.
    " I guess if we have a section (other than the Page Footer, perhaps another Details section) that is always suppressed except when the record count reaches x numbers and have it printed at the bottom, this could be achieved"
    if you
    1) create a new formula for every section that counts the height of the section...
    whileprintingrecords;
    numbervar lines:= lines + .2 
    //use the above for a details section that is .2 inches in height
    whileprintingrecords;
    numbervar lines:= lines + 2.2
    //use the above for a group header section that is 2.2 inches in height
    2) do the above for every section (yes it's painful but it works) and you'll see how the sections add to the running total
    3) create a new details section that is conditionally suppressed if the page is not equal to 1 and if the running total count is not within a certain height range
    4) make this new details section the height that you want the remittance slip and also have a New Page After forced for the section conditional on it being page 1
    the above takes a bit of finicky work but if it's worth getting rid of the blank space...
    cheers,
    jamie

  • How to give no of lines per page in alv report

    hi
    could anybody tell me
    how to give no of lines per page in alv report
    i need bottom of page too
    if possible plz send the code too
    it ll be very helpful to me
    thanx
    kals.

    Hi,
    This is possible, using some of the events in the ALV.
    You could use AFTER_LINE_OUTPUT event and call you form after say, a certain line count is reached on the list output.
      MOVE 'AFTER_LINE_OUTPUT' TO gw_event-name.
      MOVE 'AFTER_LINE_OUTPUT' TO gw_event-form.
      APPEND gw_event TO gt_events.
      CALL FUNCTION 'REUSE_ALV_LIST_DISPLAY'
           EXPORTING
                it_events                = gt_events[]
    and define the form for each event as follows - this would be a dynamic call by the ALV.
    *&      Form  after_line_output
    *       Form for the After Line Output Event in the internal table
    *      --> rs_lineinfo
    FORM after_line_output USING rs_lineinfo TYPE slis_lineinfo.
      IF sy-linno eq v_linno.          "Defaulted value for line count
        perform write_footer.
        NEW-PAGE.
      ENDIF.
    ENDFORM.                    " after_line_output
    For lines per page:
    rs_lineinfo-tabindex would give you the index of the current line in the list, which you could use to read the t_outtab table, and reduce the line count of items displayed on the earlier page.
    There are a few other events too, like BEFORE_LINE_OUTPUT and END_OF_LIST which you can use as required and print the data.
    Regards,
    Anil.

  • How to suppress blank page before side-by-side subreports

    Post Author: nv6525
    CA Forum: General
    I'm having a problem with a primary report forcing a page-break before sub-reports display data.Here's the side-by-side (newspaper-column style) report I'm trying to build:   Report Header      Report title   Page Header        Suppressed   Details                 Suppressed   Report Footer       Subreport 1     Subreport 2     Subreport3     Subreport4     Subreport5   Page Footer         Footer with page numbersThe primary report is intended to be a shell for the subreports.  The subreports contain unrelated, unlinked, independent data from separate data sources.  Each subreport, which must be in-place (not on-demand), contains 2 or 3 columns of data.  The result set yields about 250 pages of data, which is OK.  I'm using Crystal Reports 10 on Windows XP.The problem is that the primary report is forcing a page break before the subreports begin displaying data.  I'd like the data to appear directly below the report header on page 1.  The Underlay option is checked on all sections of the primary report.  Can the page-break be removed?Thanks!

    Post Author: nv6525
    CA Forum: General
    I was able to find a solution.  It was in section C of KB article c2010715 for CR 8.5.  Basically, right-click a subreport in Design view, select Format Subreport, and on the Common tab uncheck "Keep Object Together."  This works great to begin displaying the subreports' contents on page 1 directly underneath the report heading.

  • Can I get a list of users that visits a certain page on a Sharepoint site on a daily, weekly and monthly basis.

    Hi, We need a list of users that visits a certain page on a SharePoint site on a daily, weekly and monthly basis.
    Now the question is, is that possible out of the box or through the custom web development.
    Thanks
    RRS

    Hi,
       Hope this will help you.
    http://sharepoint.stackexchange.com/questions/83640/how-to-check-user-has-visited-site-collection-first-time
    http://blogs.msdn.com/b/ecm/archive/2010/05/03/web-analytics-in-sharepoint-2010-insights-into-reports-and-metrics.aspx
    Regards,
    MS

  • Firefox stops working when I use the password manager on certain pages

    Hey.
    When I visit certain pages, Firefox will consistently crash. One of these pages for example is:
    betabrand.com
    The moment the password manager window jumps up, the window hangs and Firefox stops. It also happens randomly on other pages including
    gmail.com
    Sometimes, though not always, a script error will appear that says that googletag has stopped working. I don't know what that is and have tried debugging, stopping the script and just continuing. No real effect. Firefox still crashes after trying each in turn.
    Firefox will also crash if I try to access the options window.
    I have tried:
    1. uninstalling firefox and reinstalling fresh. No result.
    2. disabling all addons (addons I use are: addblock plus 2.6.5 - Clean Links 2.6.1.0 - Myibidder 1.3.7 and Web Of Trust 20131118). Firefox will function without crashing once I do this but I cannot identify whcih addon is causing the problem because it functions well on each occassion when I cycle through and disable them one by one.
    My system specs are:
    i7 @ 3.4g
    4gig ram
    Win7 32
    FF crashed while terying to install the troubleshooter addon.
    Thanks for any help.

    Do you have an ad blocker, firewall, or antivirus installed that may be blocking the google tag?
    [http://www.google.com/tagmanager/]
    We're sorry to hear that Firefox is crashing. In order to assist you better, please follow the steps below to provide us crash IDs to help us learn more about your crash.
    #Enter ''about:crashes'' in the Firefox address bar and press Enter. A Submitted Crash Reports list will appear, similar to the one shown below.
    #Copy the '''5''' most recent Report IDs that start with '''bp-''' and then go back to your forum question and paste that into the "Post a Reply" box. (Please don't take a screenshot of your crashes, just copy and paste the ID's. The below image is just an example of what your Firefox screen should look like)
    [[Image:aboutcrashesFx29|width=520]]
    <br><br>
    Thank you for your help!
    More information and further troubleshooting steps can be found in the [[Firefox crashes - Troubleshoot, prevent and get help fixing crashes]] article.

  • Suppress status-page reportserver 10g

    Is there a way to suppress the status (web)page from the report-server when a report is successfully called from Oracle's Application Express(2.2)?
    Within the application I branch to an URL, but there seems to be no command-line-parameter that prevents showing this status-page of the report-server (rwservlet 10g).

    hi,
    where you able to resolve this question?

  • Suppressing a Page

    Hello all,
    I have a mutiple page report that includes repeating frames. For the last page of the report, if there is no data, I don't want to print the page at all. But what I get is a blank page with the page number. Is there any way to suppress this page ?

    hello,
    there is a parameter called blankpages if you pass this parameter with value NO, the blank pages should be suppressed. you should at least use patch 1 of 6i to do that.
    regards,
    the oracle reports team

  • Need a formula to suppress the page header for multiple pages

    Hello Experts,
    I have a report where I need to suppress the Page Header on 4 pages that have charts.  There are two different charts that take up the full page, but my page header shows up at the top of the page. 
    I found a way to get the page header off of the first page with a formula in the Section Expert; Suppress; but I need to be able to do the same for the other 3 pages.
    My formula that worked for the first page is:  PageNumber = 2
    I tried everything I can think of to add page numbers 15; 21; and 35.
    Can you please tell me if this is possible and what I should do?  Thanks in advance for your help.
    Kathryn.

    Do you know what pages you want to suppress?
    If yes, can you use the suppress formula option in the Section Expert?
    pagenumber in [1,2,3,4]
    Hope this helps.
    Edited by: Sharma Hari on Nov 18, 2009 9:01 PM

  • How to suppress blank pages in 11i from printer output

    Hi All,
    We were working on Oracle Reports and registering in 11i thr concurrent program and while running thr concurrent request we are getting blank pages from printer output, please let me know how to suppress blank pages as i need to get printouts without any white pages.
    Say for example if we run concurrent request and o/p is 10 pages which consists of 3 blank pages so finally we need to get printer o/p with 7 pages which are having data as i need to stop printing which are having white pages.
    Please help as this a critical scenario.....
    Regards,

    Please post the details of the application release, database version and OS.
    We were working on Oracle Reports and registering in 11i thr concurrent program and while running thr concurrent request we are getting blank pages from printer output, please let me know how to suppress blank pages as i need to get printouts without any white pages.
    Say for example if we run concurrent request and o/p is 10 pages which consists of 3 blank pages so finally we need to get printer o/p with 7 pages which are having data as i need to stop printing which are having white pages.
    Please help as this a critical scenario.....Does this happen to all concurrent requests?
    Is the issue with all printers or specific ones only?
    What if you use the lp command from the OS to print the concurrent requests output files, do you still get blank pages?
    Do you use PASTA?
    Please see these docs/links.
    How To Investigate Printing Issues and Work Towards its Resolution? [ID 297522.1]
    Oracle Applications Postscript Printing [ID 99495.1]
    Only First Line Of Concurent Output Prints And Then Blank Lines/Pages [ID 452906.1]
    Apps Reports Generate and/or Print With Incorrect Page Break Points [ID 359716.1]
    https://forums.oracle.com/forums/search.jspa?threadID=&q=Blank+AND+Page+AND+Print&objID=c3&dateRange=all&userID=&numResults=15&rankBy=10001
    https://forums.oracle.com/forums/search.jspa?threadID=&q=Blank+AND+Page&objID=c3&dateRange=all&userID=&numResults=15&rankBy=10001
    Thanks,
    Hussein

  • Browser can't load certain pages

    I experience this problem with Safari, Firefox and Netscape. Certain pages -- ESPN is a good example -- load halfway and then stop, and all I get is the spinning rainbow ball. I always have to force quit. This started a few weeks ago. I assume it's a plug-in of some kind, but reinstalling Firefox didn't seem to help. Any ideas? Thanks!

    Hello there,
    Do you have a style sheet [ CSS ] you are using in Safari-> Advanced Tab? if yes set it to none, and see if that helps.
    Whilst in Advanced tab check your network settings & make sure you've no proxies checked on.
    In " View " Check your Text encoding try using Unicode.
    Have you tried a restart,if the puter that can help.
    Have you run permission repair and see if DU reports any errors.
    In Utilities Disk Utility, First Aid tab. do not bother with verify perm.
    do run repair permissions. Stay on the left side of the Disk Utility
    < [ not repair disk ] if you know already, sorry.
    Good Luck, I hope something helps..
    Eme: )

  • Firefox crashes when loading certain pages. ID: d9839212-23dd-4214-94a1-8a7db2100704

    Firefox crashes when loading certain pages. Often pages with video content
    == Crash ID(s) ==
    ID: d9839212-23dd-4214-94a1-8a7db2100704

    The crash reports indicates the crashes may be caused by a file named mcbrwctl.dll, that file is part of McAfee Site Advisor. Try disabling the McAfee Site Advisor to see if that stops the crashes.
    To do that, in the Tools menu select Add-ons to open the add-ons manager. Select the Extensions panel, then in the list of extensions select McAfee Site Advisor then click on the Disable button. Re-start Firefox to complete the process.
    For info McAfee Site Advisor has caused various problems with Firefox for quite a few people.

Maybe you are looking for