How to suppress a section that a blank subreport appears in?

Post Author: MikeA-ICE
CA Forum: General
I have a series of subreports inside of a main report (each one in a different Group Header like GH2a, GH2b,etc. ) and there are certain times where there are no records in a particular group. The Subreport and the section it is housed in still appear though and I'd like  to suppress the section that  subreport appears in. I found the "Suppress if Subreport is Blank" option which works well but the main report section still displays and takes up space. How can I suppress a section in a report if the subreport it contains doesn't have any records and doesn't need to show?

Post Author: MikeA-ICE
CA Forum: General
Never Mind! I had forgotten about the "Suppress Blank Section" option in the Section Expert. Works like a charm!

Similar Messages

  • How to suppress a section that depends on a total variable?

    I have a 4 variables and I need to suppress the section where they are if they are = to 0. Those variables are initialized in 0 every time the group change.
    please see attached.
    I went to section expert and I wrote there {@formula1}=0 and that suppressed the section(I did the same for the other 3 sections), it works fine for the footer, but for the header it is suppressing the previews one, not the header where they are.
    Can someone help me with that. 

    Hi Otto,
    You won't be able to suppress a header section using a formula that is evaluated in the later sections.
    Your options include:
    1) Pass the calculation to the database by using a Stored Proc, Command Object etc
    2) Use a Subreport to initialize shared variables. This would have a huge performance impact though.
    -Abhilash

  • How to print monthly calendars that are BLANK?

    Hi. I would like to use Oracle Calendar to print a monthly calendar that does NOT display my existing meetings within each day. In other words, I want to print a BLANK monthly calendar. Can anyone please explain how to do this?
    I'm using Oracle Calendar 10.1.2.3.0.398.
    Thanks in advance!

    Hi
    If you try this command:
    Get-MailboxPermission MyUser

  • I forwarded a message using my iPhone 5. Now, every time I send a new message (through Send A Message in the Contacts section), that forwarded message automatically appears in the message box (as if it were a template). How do I fix this?

    If I send a message directly through Messages, that forwarded message does not appear in the message box.
    But I would like to not have that message as the template for my texts.
    How do I take this "template" out?
    Thank youu!

    I have taken it back to the Apple store genius bar, but they say they don't see anything wrong. Well unless you use it all day and experience the problems when they happen, you wont see anything wrong. But there are lots wrong with it. But this would be the same store as I purchased the phone. And they backed up my old Iphone 4, but were not able to get anything to load back onto my new phone. So, I lost pretty much everything. But over time, some of my contacts have started showing up, although i am still missing over 800 of them.

  • Suppress Section with blank Subreport.

    I am trying to suppress a section when the subreport in that section is blank. Supposedly this is described in knowledgebase article c2005853. However I do not know where the knowledgebase is located. Any help will be appreciated.

    Hi Brent
    Try to search for  SAP note # 1211338 - How to suppress a section in the main report that contains a blank subreport.
    Hope this helps you.
    Regards
    Ankeet

  • How to suppress a blank section in crystal report

    how to suppress a blank section in crystal report. although i have set the property
    "suppress blank section "=true ,still i m unable to suppress my section
    please help me to cope up this issue.
    thanks in advance

    One recommendation I make, when troubleshooting suppression issues, is to put a visible border of the section, area or object to be suppressed, and borders for all objects contained in the section or area.  This will help isolate what's suppressed, and whether the section is truly blank or has content that's blank.
    Furthermore, I recommend indicating which SDK and what version you're using when posting.
    Sincerely,
    Ted Ueda

  • How about a 'suggestions' section? or something like that?

    How about make a section where users can suggest features that they wish implemented on apple products?
    For a start, I would like to make a suggestion to itunes. How about give an option to choose which part of the ipod/iphone/ipad to sync? For example sync only the videos, but not the music, applications, etc.
    This solves my dilemma for example, because I store my music and video files on an external hard drive. So when I wish to sync my iphone, I have to connect the external hard drive to the PC first. It becomes a problem to me when I brought my external hard drive to some other place, but I want to sync my iphone.
    If I can choose which particular part to sync on the iphone, I can sync my videos without losing the other files like music, applications, etc.

    How about give an option to choose which part of the ipod/iphone/ipad to sync? For example sync only the videos, but not the music, applications, etc.
    You can do this already. Just opt select the items you want to sync.
    Regards
    TD

  • My iMac is connected to a Brother printer. I have Snow Leopard 10.7.3 As of yesterday, when I try to print a PDF it prints as a blank black page. Does anyone know how to correct this so that the PDF will print as I see it on screen?

    My iMac is connected to a Brother printer. I have Snow Leopard 10.7.3 As of yesterday, when I try to print a PDF it prints as a blank black page. Does anyone know how to correct this so that the PDF will print as I see it on screen?

    If you are running Mac OS X 10.7.3 then you have Lion installed, not Snow Leopard. It's probably not important to this discussion, but something you should be aware of.
    What application are you printing the PDF files from? Have you tried opening the PDF file using the Preview application that can be found in the Applications folder? Does the issue still occur? Have you tried other PDF files from a different source?
    Another poster in the following discussion thread reported that this method resolved their black blank PDF issue when viewing (and presumably printing) PDF files from Safari.
    https://discussions.apple.com/thread/3890509?start=0&tstart=0
    This solved my question by mcbuffy  on Apr 20, 2012 11:29 AM 
    There's a solution if you want to see the PDF inside Safari's window :
    Go to the folder : Your Hard Drive / Library / Internet Plug-ins.
    If you see a file with PDF in its name drag it to the trash.
    Quit and restart Safari to test with a PDF.
    If it works you can empty the trash.

  • How do I deal with Tokenized strings that are blank?

    I'm writing a little application that writes data to a file. It sends data to the file as a "|" delineated string. Then I use tokenizer to break up the string as follows:
    try {
                                  String searchtext = SearchTxt.getText();
                                  String tokenString = "";
                                  String[] returnData = new String[8];
                                  File filedata = new File("bigbase.txt");
                                  BufferedReader in = new BufferedReader(
                                  new FileReader(filedata));
                                  String line = in.readLine();
                                  while ( line != null) {
                                  Pattern pat = Pattern.compile(searchtext);
                                  Matcher mat = pat.matcher(line);
                                       if ( mat.find() ) {
                                       StringTokenizer t = new StringTokenizer(line, "|");
                                       maintextArea.setText("");
                                       int count = 0;
                                            while (t.hasMoreTokens()) {
                                                 tokenString = t.nextToken();
                                                 returnData[count] = tokenString;
                                                 maintextArea.append(tokenString + " ");
                                                 System.out.println(tokenString);
    etc etc etc
    The problem is that when the tokens are blank, I get an endless loop when I try to print out the data on that last line. How do I deal with Tokens that are blank so they don't endlessly loop my output?
    Thanks
    MrThis

    Most people would probably tell you to use:
    String.split(...);
    But I'm not most people and I wrote this class before regex support was added to the String class which is based on StringTokenizer but supports empty tokens:
    http://www.discoverteenergy.com/files/SimpleTokenizer.java

  • How do I get rid of the blank space after one paragraph and before the next paragraph startsin Pages '09?  I understand that I should not have a page break mid paragraph but that is what I want.

    How do I get rid of the blank space after one paragraph and before the next paragraph startsin Pages '09?  I understand that I should not have a page break mid paragraph but that is what I want.

    Hi stephanie,
    These are unrelated questions/statements.
    Space before and space after a paragraph are controled in the Text Inspector, as you've found out.
    Pages will create a page break whenever there is no room for another line on the page. That break can come anywhere in a paragraph.
    You may be thinking of Widow and Orphan prevention, and the other Pagination controls, found under the More button in the Text Inspector. (If that's what you found, then thanks for the refresher! I hadn't been to that pane for awhile, and had forgotten the variety of pagination controls available.
    Regards,
    Barry

  • 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

  • TS3276 When responding to an email, how do I suppress the "line" that appears on the left side of the originations email text?

    When responding to an email, how do I suppress the "line" that appears on the left side of the originations email text?

    Would you post a screen shot of a message so people can see what you are seeing? Make sure you cover any personal information using Preview. Post the screen shot in a Reply using the camera icon. Copy and paste doesn't work.
    Screen shots

  • How can I suppress a message that remains stuck when I open my lap ?

    How can I suppress a message that remains stuck when I open my lap ?

    What sort of message?
    Are you really still running 10.6.2, as noted in your profile? You really should update your system to 10.6.8 -> http://support.apple.com/kb/DL1399.
    Clinton

  • Does anyone know how to remove the sections in pages so that I can work with individual pages?

    Does anyone know how to change the sections in pages to individual pages so that I can move them about as in the demo?

    What version of Pages and what demo?
    Peter

  • How do I remove the "recent" section that shows up when I right click firefox on my taskbar?

    When I right click on firefox window in my taskbar it shows a "recent" section that displays my recent downloads above the "close this window" and other options. I find this annoying and I would like to remove it. I already have set firefox to not remember my download history, but that didn't help.

    # In the FF address bar, type "about:config", without the quotes
    # Press the enter key
    # In the filter, type "taskbar", without the quotes
    # Double-click the value for '''browser.taskbar.lists.frequent.enabled''' to change from true to false
    # Double-click the value for '''browser.taskbar.lists.tasks.enabled''' to change from true to false

Maybe you are looking for

  • Crystal Report not pulling over user prompts

    I am having issues with a Crystal Report that is pulled over into a third party CRM db. I've already checked the Forums and the SAP notes but have had no luck in finding any help. Our Crystal Report pulls up fine on the client, but it is missing the

  • Airplay on iMac

    Hi! I have problem with streaming music/video on my iMac. I'm use itunes and boxee box by d'link. p.s. iphone and ipad airplay on boxee box work.

  • DAQMX error 200452

    I am getting error 200452 on a channel that is not active.  The DAQMX task includes channels from three different devices, I specify only channels from one device as active and it is returning the 200452 error on a channel that was not selected.  Que

  • Company Name

    Hi Experts, I am facing an issue in the system with the company name. I had registered a company A B C in the system, however on request of the client i had to change it to ABC. The changes have taken place and the name appears as ABC in the company

  • Web service to IDOC scenario

    Hi, I'm defining Web service (through the configuration builder) and the message interface that i'm using to publish is based on idoc. when i'm trying to check the WSDL which was generated, in the wsnavigator i'm getting the following error: "cannot