How to supress page footer conditionally

Hi All,
I need report with structure like below
Page header
Report header 1a
Report header 1b
Report header 1c
Detail
Report footer 1a
Report footer 1b
Report footer 1c
Page footer
There are few details in the Page Footer and is repeating in each page.
Now I want to suppress Page Footer when ever Report Footer 1c is displayed.
How can I do that ?
Looking for your help.
Thanks,

Put the following formula on the detail format (basic syntax):
WhilePrintingRecords
global showFooter as string
showFooter = "show"
formula = ""
Place the following formula on Report Footer 1c format:
WhilePrintingRecords
global showFooter as string
showFooter = "suppress"
formula = ""
Suppress the page footer on
WhilePrintingRecords
global showFooter as string
formula = ( showFooter = "suppress" )
HTH,
Carl

Similar Messages

  • Supressing page footer

    Post Author: AJDuck1
    CA Forum: General
    Hi,
    When I supress a page footer in my report, it only blanks it out and does not supress it allowing for details to flow over.  Consider my page footer is half the size of the report, this creates too much uneeded white space.
    Feel free to log a bug on my behalf, as I am a VS developer without registration code.
    Yes, I have tried every option available in Section Expert.  Almost appears if "Relative Position" is being enforced when it shouldn't be.
    ThanksJared Sullivan

    Post Author: Marg
    CA Forum: General
    Hi Jared
    I had this problem with Crystal 10 where I wanted to suppress a page footer on the first page. In Crystal 9 and 10, there is an option in the section expert for page footers called 'Reserve Minimum Page Footer'. This should allow suppression of the page footer on the first page, with no space appearing 'reserved' for it. Biz Objects advised this was a bug, the issue was being tracked and there were no other workarounds they could offer.
    Cheers, Marg

  • When I Conditional Supress the page footer. It occupy space in report

    I am designing Crystal report with multiple page footers.Initially I have suppressed all page footer. Each page footer is un suppressed against a specific Test Id (db Field). I have done this with formula for each page footer.
    The problem is when Page footer is suppress it occupy space in report.
    Provide solution plz.

    Can you recreate the entire footer as a formula field?  If so:
    1.  create the formula field using an if-then-else statement to poplulate the field:
    WhilePrintingRecords;
    IF PageNumber = 1
    THEN 'text' + text data + (chr(9) + totext(numeric/date data) + chr(13) + 'text data'  + etc...
    Chr(9) = tab
    Chr(13) = next line
    2.  Place the formula field in the page footer using as little space as possible. 
    3.  Enable the formula field's "Can Grow" property.
    4.  You could try setting the formula fields conditional suppression to PageNumber <> 1.  Not sure if this is necessary, but it can't hurt.
    This may do the trick for you.

  • How to supress a blank page in smart forms

    Hi,
    I am using a command in Smartforms to trigger a new page whenever a new BELNR(Accounting document). My problem is in the output i am getting a first page is blank and remaining pages are ok.
    What i did Is In conditions tab i written as temp NE belnr. So first time temp is nothing so blank page is coming. and in the following text elements i am passing a belnr value to the temp.
    Temp = belnr and in general attributes go to new page check box has been activated. Then how to supress a blnk page.
    Regards
    Ramakrishna .P

    Hi,
    I am not using loop.
    In main window i have the contents as
    Header---- Headers for table
    Main Area---- text elements ( i have fileds slno, belnr,glaccount,cost center,gtext,description,dmbtr,wrbtr)
    In belnr field i have created the command there i am comparing the condition temp ne Belnr and go to new page on conditions tab
    wrbtr text element i am passing the g_temp =belnr
    My requirement is whenever new belnr comes new page has to trigger and corresponding gl accounts need to be displayed and end of the belnr i want to display the footer.
    For your information passing the belnr values from the print program (select options) to smart form
    Footer---footer

  • How to supress blank page in scripts?

    Hi gurus.
    can any one let me know how to supress blank page in scripts? When one of my condition satisfies it should print two pages and its working fine. When condition fails, it should print one page but its printing blank page as second page.
    Waiting for your answer.
    Urgent
    Regards,
    surya.

    hi,
    1. By providing the control commands in scripts,u can supress the blank pages.
    2.write the data between protect and end protect.
    3.Enclose the text that you want to prevent page-break in PROTECT... ENDPROTECT
    SAPscript will ensure that each line of this text is printed together on the same page.
    /: PROTECT
    Text
    Within
    The same page
    /: ENDPROTECT
    Regards,
    SHIVA(reward if helpful).

  • Removing extra space in page footer after conditional suppression

    Hi,
    I have two page footers.  One of them is conditionally suppressed, the other is always present.  When the conditionally suppressed page footer is present, the other footer appears above it.  But when the conditionally suppressed page footer is being suppressed, the other footer should occupy the bottom of the page.  Instead, it appears that, despite the suppression of the page footer, there is still space reserved at the bottom of the page for it.  Any ideas on how to resolve this?
    Thank you.
    Edited by: plynch on Dec 29, 2011 9:50 PM

    Hi,
    So, you have a 'PageFooter a' and 'PageFooter b'. The conditional suppression logic has been applied on Footer b. When Footer b is suppressed, you wish to 'push' the Footer a section down to where Footer b would appear?
    Well, when Footer a is suppressed, Footer b takes its place, however it is not the same when the last Page Footer section is suppressed as there is nothing that can take its place and Footer a is already showing up where it should be!
    -Abhilash

  • Conditional Formula to supress page header in 1st page of the report

    hi,
    how to programatically add a conditional formula to supress a section only on the first page of the report.
    i am using CR XI R2 RAS server.
    thanks in advance
    Padmanaban V

    Try it first in CR Designer, then when you get the formula collect you'll see how it's done. If you can't do it in the designer then you can't do it in code, same set of API's.

  • Conditionally Suppressed Page Footer - Blank Space

    I am working on a purchase order (PO) form. A PO may be one or more pages. I have two page footers. The first one is conditionally suppressed if pagenumber = 1. The second is conditionally suppressed if pagenumber > 1. However, while the objects within the suppressed page footer are not visible, the entire blank page footer space remains reserved., creating unnecessary and unusable white space after page one.
    I am somewhat familiar with this problem. I have experimented with different techniques such as conditionally suppressing each object rather than the entire section, and then choosing Suppress Blank Section for that section.
    I have also read SAP BO Notes 1212488.
    This seems like a serious problem. Many standard multipage forms require special language (such as legal terms) that appear only at the bottom of the first page.
    Any ideas?
    Thanks,
    Art

    Salah,
    I tried your suggestion. It did not help, but perhaps I am doing something wrong.
    Here is how I have set it up:
    Page Footer a
    Contains a text object 1 inch tall.
    Also contains print date and page n of m
    Entire section is 1.5 inches tall.
    Conditionally Suppressed if pagenumber > 1
    Underlay Folllowing Sections is checked on
    Page Footer b
    Contains only page n of m
    Entire section is 0.5 inches tall
    Conditionally Suppressed if pagenumber = 1
    Results:
    Page 1 prints correctly.
    Page 2 and on .... PFa is suppressed as intended
    However, page n of m appears about 1.5 inches above bottom of page
    In Design, I tried reversing PFa and PFb to see if that matters. It does not.
    I hope you or someone else has othre suggestions.
    I think I will try placing the large text object into a subreport.
    Thanks,
    Art

  • Pages 5.5.1: When opening a document created with Pages '09 (Version 4.0) with Pages 5.5.1 the page header and the page footer are deleted. How can this be prevented? Or is this a bug in Pages 5.5.1?

    Pages 5.5.1: When opening a document created with Pages '09 (Version 4.0) with Pages 5.5.1 the page header and the page footer are deleted. How can this be prevented? Or is this a bug in Pages 5.5.1?

    Same problem here (no graphics in header or footer) and the problem has been reported months ago. It is another bug/feature lost when Apple moves from 09 to the iCloud-compatible versions.  Complain to Apple, you may have better chance than me and they may finally listen to their users....

  • How to print date/time in report page footer?

    Hi
    I have a report which users can print as PDF.
    However, I like to display current date/time in report footer.
    I can see the Page Footer in section but can't figure out how to print date/time there.
    Thanks for help.

    hi movilogo
    Please try this.
    Create hidden item P1_DATE
    Create On load process in page 1 and put this code
    begin
    :P1_DATE:=TO_CHAR(SYSDATE,'DD-MON-YYYY HH:MM:SS');
    end;
    Open your region in Page 1 put this code in Footer area
    *&P1_DATE.*
    Refresh your page.
    you will get the output like this.
    16-SEP-2009 11:09:17
    thanks
    Mark Wyatt

  • Blank space between Detail section and Page Footer - How to remove it ?

    below is the problem.
    We make  report as followspage header Section details
    Employee Information    
    Report Footer
    Page Footer                   
    Other Information
    whenever we run this crystal report it leaves space in between  after employee information (Detail Section) and before Page Footer.We don't know its a problem  of footer or any other else.
    When i preview and print out the reports
    it showing Detail section 10 Rows (which satisfying condition) and then Blank space and then at the bottom of page shows Page Footer (which contain 2 subreports).
    Let me know if you need aditional information on this.
    pls provide suggestions.

    Try with this
    1. Suppress any unused sections in both sureports and in the mainreport.
    2. Check all the fields fits the sections. Select all the fields in the section and give align top and make all the fields of same height and make it fit to the section.
    Hope this solves your problem.

  • How to set a foot in a scrolling page site, that it remains visible even when scrolling, using PC

    how to set a foot in a scrolling page site, that it remains visible even when scrolling, using PC

    Hello,
    Please select the footer items and Pin them to the bottom like the screenshot below.
    Regards
    Vivek

  • How to fit the footer always to bottom page

    How to fit the footer always to bottom page.
    Regards

    Well, this is relatively simple. There are blue lines on your page with little blue squared arrows on each side. Hover your mouse over them to find out which ones define "Bottom of Page" and "Footer" (you will also see some towards the top of the page for Header). Adjust these so that the "Bottom of Page" line is quite literally the bottom of the page and move the footer one higher about 2 inches or so, depending on how big you want your footer to be. This automatically will define a footer to stay consistantly on the bottom of your page(s) throughout the site even when expanding or shrinking window sizes. Just another great feature of Adobe Muse

  • How we can use footer window in a last page?

    I m making SAP SCRIPT..
    How we can use footer window in a last page?

    Hi vikas,
    is it that you want to use footer window to be printed in last page...then do like this,
    command to be used:
    /: IF &NEXTPAGE& EQ 0
    whatever footer you want.
    /: ENDIF
    and go thru the link and revert back if any quiries r present..
    http://sapscriptcode.blogspot.com/2007/05/print-footer-notes-only-on-last-page.html
    pls reward if helps,
    regards.

  • Crystal 6.0 : How to hide the Page footer and Page Header of the Main Report on the Sub report.

    Post Author: pranay
    CA Forum: Crystal Reports
    Hi ,
    I have a Main report and a Sub report .  When a subreport spans across multiple pages , the page header and page footer of the main report gets displayed along with it . I want to hide the Page Footer and Page Header of the main report when a sub report is displayed . Is there any way it could be acheived in Crystal Report 6.0.

    I am assuming you are talking about the JSControl dropdown menu navigation. The easiest way to hide Community pages is to disable the Below Banner View for that navigation scheme, although it also disables the Subcommunties, Related Communities and Go up to Parent Community links. If you still want these in below the banner menu you could not display Community Pages in the "In this Community" tab and only leave the "Community Members and Knowledge Directly" link in there.
    You would think that it would be better to remove the "In this Community" tab althogether but it is tricky to remove it due to the fact that there needs to be a default horizontal menu displayed all the time. Not all Communities will have a Subcommunities or Related Communities tab so these communities would not display any below banner menus at all if there is no "In this Community" tab, which could be confusing.

Maybe you are looking for

  • Field "Mat Slip" (MTSNR) of MB03 is empty after i run BAPI_GOODSMVT_CREATE

    Hello, I'm doing BAPI_GOODSMVT_CREATE for moviment '315'. After i run the BAPI, when i go to MB03, the field "Mat. Slip" is empty and does not appear on the screen! I'm using the following parameters: code= '04' ITEM: t_saida-matnr TO t_bapiitem-mate

  • Can't install itunes on windows 7 64bit

    I tried to reinstall itunes on windows 7 64bit but this error keeps coming out and have no idea what to do. anyone got any solutions?

  • Additional photo folders take too much iphone space

    Hi there, I have a problem with my pictures and the way iPhone handles them. I have an iPhone 4S and a PC. The problem I have is that I have 2 additional camera folders on my iPhone: I have the standard "Camera roll", and after updating iTunes last t

  • 2LIS_06_INV : No data with oli6bw in ECC

    Hi experts, I execute transaction (oli6bw) for recompilation of Invoice Documents for use 2LIS_06_INV, but recompilation has not selected anything. In the error log V_MRMRBBW_ERR : -     Recompilation started -     Recompilation ended successfully - 

  • Exporting from premiere pro CS4

    I download a trial version of Adobe Premiere Pro CS4. I am thinking about purchasing one. I was going through some video tutorials on Adobe TV and on the tutorial when they were exporting, they had quite a few more formatting options than it shows on