Page Header and Footer in Printer Friendly mode

Hi,
I have a report which has more than 500 rows and I want to print them.
The printer friendly mode works fine, but is it possible that there is a page "header" and "footer" on every page which is printed?
For example, that the column headings are on every page which was printed?
Or that at the bottom of each page is the page number displayed?
Does anyone have an idea?
Thanks,
Tim

IE and Firefox are designed for WEB pages.
WEB pages are on Internet. Security is important and browser should not compromise user to use it.
Many users=Many printers!
If you want to write app for especially one printer and know users (Intranet application) then here is what you can do:
1) Use IE
2) write your own ocx with interface for your needs.
3) every user should implement this ocx in their browser.
4) When they accept your ocx, then in this "small app" you could do as much as this user can do on their own windows. So setting printer, orientation and size is a peace of cake.
5) make your report regarding this printer
And this is it!
And few other things...
If user choose larger font then your HTML is broken!!!
For that I think that PL/PDF or Mail merge is better solution!

Similar Messages

  • I want to remove the header and footer when printing from my mac, i can do this in the Page Setup on my PC but not on the Mac. I can do it each time I print but then it resets. How do I make a universal change?

    I want to remove the header and footer when printing from my mac, I can do this in the Page Setup on my PC but not on the Mac. I can do it each time I print but then it resets. How do I make a universal change?
    == This happened ==
    Every time Firefox opened

    Go to the "File" menu, then "Print." The window that appears will have three drop-down menus at the top.
    The first is labeled "Printer",
    The second is "Presets".
    The third is unlabeled but has "Copies & Pages" selected by default.
    Click on that third menu and select "Firefox" near the bottom of the list.

  • Master Page Header and Footer in Page Viewer Web Part

    Hi.
    I created a View in Pages Library to view specific folders.
    After that i added one Page Viewer web part to one of the aspx page.
    There in the Page Viewer web part properties Link i have provided the url of the view.
    It is displaying the folders but at the same time it is displaying the master page header and footer inside the web part.
    Now i need to display the folders alone inside the Page Viewer web part.
    Please let me know how to exclude the master page header and footer inside the Page Viewer web part?
    Regards,
    Sudheer
    Thanks & Regards, Sudheer

    I think that is the default behavior of the page viewer webpart.
    In the page viewer web part,your just enter the url of the website.So that is treated as webpage and it is displaying as per page.
    http://meritsolutions.com/meritmatters/archives/576-Displaying-a-File,-Folder-or-Web-Page-in-the-Page-Viewer-Web-Part.html
    If you want to display a folder, type in a network path to that folder under Link and the folder content will be displayed. 
    Find the more details about page viewer webpart in msdn
    http://office.microsoft.com/en-in/sharepoint-server-help/page-viewer-web-part-HA010024045.aspx

  • How to set a page header and footer of an excel file i'm creating

    Hello !
    SORRY MY ENGLISH is very BAD.
    I tried to set page header and footer in Excel sheet with ABAP  ole
    DATA : BEGIN OF enter,
    x(1) TYPE x VALUE '0D',
    END OF enter.
    DATA : format(255) TYPE c.
    FORM set_page_sheet.
    CALL METHOD OF excel 'ActiveSheet' = sheet.
    CALL METHOD OF sheet 'PageSetup' = pagesetup.
    SET PROPERTY OF pagesetup 'Orientation' = xllandscape.
    SET PROPERTY OF pagesetup 'PrintTitleRows' = '$9:$12'.
    CLEAR format.
    ERROR
    CONCATENATE 'PAGESHEET' enter-x 'PAGE &P/&N' INTO format.
    ERROR
    SET PROPERTY OF pagesetup 'RightHeader' = format.
    CLEAR format.
    CONCATENATE ' Text 1 ' enter-x 'Text 2'
    enter-x 'Text 3 ' INTO format.
    SET PROPERTY OF pagesetup 'RightFooter' = format.
    FREE OBJECT pagesetup.
    ENDFORM. " set_page_sheet
    Activate report -
    ERROR - The enter-x must by data type c or another then data type x
    Thanks for answer.

    Try to define ENTER this way & try
    class cl_abap_char_utilities definition load.
    DATA : BEGIN OF enter,
    x type c value cl_abap_char_utilities=>cr_lf,
    END OF enter.
    PS : I am not 100% sure about this.

  • Header and footer on print?

    How do I put header and footer in my print method? Can anyone plz help me with this, am stuck.... My method looks like this:
    public int print(Graphics g, PageFormat pf, int pageIndex) throws PrinterException
         Graphics2D g2 = (Graphics2D)g;
    g2.setColor(Color.black);
    Dimension d = scroll.getSize();
    double panelWidth = d.width;
    double panelHeight = d.height;
    double pageHeight = pf.getImageableHeight();
    double pageWidth = pf.getImageableWidth();
    double scale = pageWidth/panelWidth;
    int totalNumPages = (int)Math.ceil(scale * panelHeight / pageHeight);
    if(pageIndex >= totalNumPages)
         return Printable.NO_SUCH_PAGE;
    g2.translate(pf.getImageableX(), pf.getImageableY());
    g2.translate(0f, -pageIndex*pageHeight);
    g2.scale(scale, scale);
    scroll.paint(g2);
    return Printable.PAGE_EXISTS;
    }

    You have two options:
    1) Insert header and footer objects (which can be as simple as a panel with a label in it) - into your pages prior to printing.
    2) Insert header/footers into the pageables passed to your print routine.
    I used method one - worked nicely.

  • Conditional Header and Footer description print in Report

    Hello,
    Is it possible to print different header or footer of a report depend on condition.
    My requirement to change the header and footer description on a fly depend upon the parameter passed to the report.
    Any soultion ...
    Sam

    hello samar
    of course this is possible. paint your first desidered header/footer, place it in frame and add format trigger on this frame to display it when you want it, otherswise return false. the same is for other possible headers/footers. then place all those frames on same position. look at conditions to display only one header/footer at a time :)
    or seccond (in case of simplier structure) is to place in header/footer only one bolierplate text with value f.e. &p_footer and then send value you want to see in footer n parameter p_footer ...
    hth
    Petr Valouch, Brainbench MVP for Oracle Programming, http://www.brainbench.com

  • How to print (on paper) expected header and footer while printing Jtable

    Hello,
    I am printing jtable on paper using dot mtix printer.In header i want to print some name date and number like below
    Sun
    Date:12/8/20010 No.12334
    | col1 | col2 |
    | col1 | col2 |
    footer
    When i am trying to print header its Font size is very big and its in one line.How i can use expected font and expected text here.
    i am using jtable print method(which contin header and footer printing facility)
    Edited by: Ashtekar on Aug 12, 2010 5:18 AM

    I also once hoped for an easy way to modify a table's header and footer, but found no way.
    Yet it is possible.

  • Delete pages header and footer

    icloud pages...how do I delete header and footer

    Hello Gene,
    welcome to the Pages Discussions. On which pages do you want to delete the headers/footers. Pages gives you the option to have different headers/footers on the first page then on the following pages of a section. That means you can have a header/footer on the first page but not on the following or vice versa. You can find the settings in the layout inspector under the tab button "section". There you can set "The first page is different" and "Use previous header and footer". Like the placement of this options tells, this settings are for sections.
    But if you want to have different headers/footers in the middle of a section, you have to cover them like Magnus posted before. Or like John posted to insert new section breaks, but that breaks the text flow, too.
    Frank.

  • Last Page Header and Footer in XML Report

    Hi
    I have one requirement , where except last page for an invoice, all other pages should have one header.
    Last page should have nothing header and in Body some information(Total details) should be displayed and in footer terms and conditions should be displayed.
    if one page is there for invoice , in second page (total details) and terms and conditions should be displayed.
    Any one who already faced this issue please suggest how can proceed for requirements
    Advance thank you

    I need a large footer to appear at the bottom of the last page
    I have made a section break: new page
    I have created a field with the contents <?start@last-page-first:body?><?end body?>
    I have run the report to create an RTF file and the last page footer appears on all the pages
    But if I run it to PDF the footer does the right thing and only appears on the last page
    If I create a Powerpoint document it works OK
    It only fails in the format that I require, RTF?
    Any ideas how to fix this?
    Cheers
    Shaky

  • Repeating Header and Footer on each page in Sub-Report

    Post Author: Jimbob
    CA Forum: General
    I am formatting a report that has subreports.  I can get the header on every page, but the footer only appears on the last page. 
    How do I get a header and footer to print on each page of the subreport?
    Thanks for any help!

    Post Author: Guy
    CA Forum: General
    Hi,
    You should add a first level of grouping in your subreport on a fake formula field with a constant value.  Put your header and footer information in this group header and footer.  In the group option make sure to check the "repeat group header on each page option".
    This group will act as a page header + footer within your subreport.
    good luck!
    Guy

  • How to Suppress Header and footer.

    Hi,
    I have master-Detail report. Report prints One master and all detail records on a page. If detail records are more than to fit on one page, report prints master gaian on next page followed by detail records. For a master record If there are no detail records, I supress the master record also using format trigger.
    My problem is how to suppress the Header & Footer information that has to be printed on each page otherwise. When I suppress printing of master, All I get is Page header and footer. This happens only to the master records that fall in between. The pages related to last master records are not printed.
    How can I suppress printing of header and footer on blank pages.
    Thanks

    Thanks Santa & Rohit,
    As santa has suggested, I am already suppressing the printing of master record and its column headings based on the count of number of deatil records. If count of detail records = 0, I am suppressing master record.
    The problem is with Report header (TITLE etc.) and footer. I have to print TITLE and FOOTER on each an very page. So I have put these into Margins. The Count of master records at the report level, can be used to suppress the master records column headings and also TITLE and FOOTER. So if there is no master records, report does not print anything and that is fine.
    Problem comes when there are some master records with "No" detail records. Something like:
    -M1
    ----D1
    ----D2
    ----Dn
    -M2
    ----D1
    ----D2
    ----Dn
    M3
    M4
    M5
    ----D1
    ----D2
    ----Dn
    M6
    M7
    M8
    My report now produces pages for M1, M2 and blank data area (with Title and Footer) for M3, M4 and the M5. It suppresses pages for M6, M7, M8 etc. So if a master record has no detail records, but happens to be the last records that suppresses the TITLE and footer also.
    Any Ideas how to suppress TITLE/FOOTER for M3 & M4.
    Thanks

  • Header and footer of RTF template not getting carried over to Excel output

    We have Header and Footer in RTF template defined. The output of the report will be in Excel. When we run the report, the header and footer on the report are not getting carried over to excel has header and footer, instead the header and footer are printed as first line on the excel. Also, the RTF template is set to landscape but when the output is generated in excel, it is set to Portrait

    hi..
    chk this presentation...
    http://csc-studentweb.lrc.edu/swp/Berg/articles/NW2004s_what_is_new.ppt#352,3,Why NW 2004s?
    http://www.sap-hefte.de/download/dateien/1090/086_leseprobe.pdf'
    hope this helps...

  • Avoid printing Header and Footer in the last page

    Hi,
    Could anyone please let me know how to avoid print the header and footer in the last page?
    Note: I'm printing RTF template for publishing the output.
    Looking forward for your valuable inputs/suggestions.
    Thanks in advance,
    Regards,
    Muru

    Hai,
    My report got FROM PO & TO PO parameters and i need to print footer only in first page of each PO. Tried with section but now i am getting first page of all PO contionious and then all lines together.
    Please call me or sent replies to [email protected]

  • How to print Header and footer in same page

    Hi All,
    I am using Oracle Report 10g. How can I add header and footer on same page as my body? Right now when a generate a pdf file, it is printing individual pages instead of 1 one page. Please help me.
    Regards

    HI
    First of all,
    Unless otherwise you selected some option like page break after/before - both body and header/footer will print on same page in report, so in pdf as well.
    If you have difference on report and PDF that you should look into your setup.
    If you want more help, please be particular on your issue
    james. wrote:
    Hi All,
    I am using Oracle Report 10g. How can I add header and footer on same page as my body? Right now when a generate a pdf file, it is printing individual pages instead of 1 one page. Please help me.
    Regards

  • Is it possible to resize the header and footer on a webpage before you print the page you want the print?

    It seems to me the header and footer on every page I want to print is so darn small. If possible I'd like the header and footer size in Firefox to be close to the size of my other browser, Microsoft's IE8 browser.

    Glad I could help.
    But not all of us are gentiles.

Maybe you are looking for

  • Email existing file as an attachment

    Hi all, After executing the function 'SO_DOCUMENT_REPOSITORY_MANAGER' I get a dialog box which asks the recipients e-mailaddress.If I enter a correct mailing address everything is fine... Anyone who knows how ik can skip the dialog box en automatical

  • Only black an white prints with iphoto 6.06

    Hi, i got a problem with iphoto 6.06 since it won´t print color pictures. My screen shows it in colors, but when it comes to the printing job only black & white pictures will come out of my printer. Every button or mark is set on color before printin

  • How do I convert qcp audio file (from cell phone) to mp3 file?

    I moved a recorded cell phone conversation from my phone to my computer. The file is 982498.qcp and iTunes, VLC, Quicktime, or Windows Media Player will not play it. iSoundFile is an application that can convert many different audio files to many oth

  • Re windows based Acs-4.2.1.15.3 Submit button does not show up

    Interface Configuration>Tacacs+ submit button page shows error page cannot be displayed i am not able to submit it Anyone has any idea this is after the upgrade to Acs-4.2.1.15.3. I have tried with almost all the browsers and different java version.

  • Is there a way to place this music player on top of my nav bar?

    Is it possible to embed or place this little flash music player somewhere on the 8-track tape image on my navigation bar? The tape image itself isn't part of the javascript of the navigation, just an image. I would like to attach a different song to