Header in second page

Hi Experts
I have prepared a report A/R Invoice in PLD. In that report there are 30 items which spans  in 3 pages..
Now in every page the header and footer is repeated....I don't want that.. how to prevent the header in 2nd and 3rd page.
warm regards
anand

Hi Anand,
Try this,
->> Open the Document PLD (or) Report PLD.
->> Right Clcik in PLD and Select the Display Hidden Fields.
->> Select the All Fields(including Hidden Fields) in Repetetive Area Header and Copy Paste to Start of Report.
->> Reduce the Height in Repetetive Area Header. Select the Repetetive Area Header on Index Window.
Ex. put the Height = 0 in General Tab on Properties Window.
->> Select the All Fields(including Hidden Fields) in Repetetive Area Footer and Copy Paste to End of Report.
->> Reduce the Height of Repetetive Area Footer. Select the Repetetive Area Footer on Index Window
Ex. put the Height = 0 in General Tab on Properties Window.
SAVE it and run the Preview.
Regards,
Madhan.

Similar Messages

  • Issue with last-page-first Body (header of second page repeating)

    Hi,
    I am generating some invoice document and there is tax section at the end of document.Invoice can be one page document or it can be multiple pages document.I also have separate header and footer for first page and then for subsequence pages.
    Assume that it is only one page and there is sufficient space left to display Tax tables. I am using
    ------Section Break (Continuous)--------
    <?start@last-page-first:body?><?end body?>
    <?call tax template?>
    This approach works fine when document is more than one page. Moment I get only one page for my invoice it uses the header of second page.
    I already tried <?start@last-page:body?><?end body?> tag but it moves it to the next page and I want it in continuation.
    Below is the snippet of template
    <?start:body?>
    first page header
    <?if:ITEM = 'PARTS'?>
    <?call-template: pt_template?>
    <?end if?>
    <?if:ITEM = 'TM'?>
    <?call-template: tnm_template?>
    <?end if?>
    <?end body?>
    ---SECTION BREAK (CONTINUOUS)-----
    <?start@last-page-first:body?><?end body?>
    <?call-template: tax_template?>
    <?template:tax_template?>
    Please advise if any option is available.

    Hi
    1.Check the Paragraph FOrmat . Character Format  ( the smartstyle) that you have assigned to the last page.
    2. if it is the Terms and conditons page , check the text module (SO10) and its corresponding SmartStyle (paragraph format,character format).
    See if u have used Underline in the  style..
    surya

  • No column heading in second page in alv report when save in excel file

    Hi Expert,
    How can i remove the column header from Alv report when program execute in background and save in excel file right now
    its comming column header in each page. Client dont want header column in excel from second page. is this possible?
    with regards
    chandan_viji

    Hi Ravi,
    thanks for reply i have solved this problm throug line count and NEW-PAGE LINE COUNT 10000 bcoz client want output in excel file only one page header.
    with regards
    chandan_viji

  • How to set the header for second page

    Hello all,
    I'm trying to set different header for first page and page number should starts from second page.
    Below is the sample code to set the header for each and every page.
    DECLARE
    hApplication OLE2.OBJ_TYPE;
    hWindow OLE2.OBJ_TYPE;
    hPane OLE2.OBJ_TYPE;
    hView OLE2.OBJ_TYPE;
    hDocuments OLE2.OBJ_TYPE;
    hDocument OLE2.OBJ_TYPE;
    hSelection OLE2.OBJ_TYPE;
    hParagraphFormat OLE2.OBJ_TYPE;
    hRange OLE2.OBJ_TYPE;
    hFields OLE2.OBJ_TYPE;
    hFont OLE2.OBJ_TYPE;
    args OLE2.LIST_TYPE;
    wdAlignParagraphLeft CONSTANT number(3) := 0;
    wdAlignParagraphCenter CONSTANT number(3) := 1;
    wdAlignParagraphRight CONSTANT number(3) := 2;
    wdSeekCurrentPageHeader CONSTANT number(3) := 9;
    wdSeekCurrentPageFooter CONSTANT number(3) := 10;
    wdSeekMainDocument CONSTANT number(3) := 0;
    wdFieldPage CONSTANT number(3) := 33;
    wdFieldNumPages CONSTANT number(3) := 26;
    wdPageBreak CONSTANT number(3) := 7;
    wdStory CONSTANT number(3) := 6;
    myTab CONSTANT varchar2(1) := chr(9);
    myBlue CONSTANT number(8) := 16711680; --FF0000
    myGreen CONSTANT number(8) := 65280; --00FF00
    myRed CONSTANT number(8) := 255; --0000FF
    myDkGreen CONSTANT number(8) := 32768; --008000
    myBlack CONSTANT number(8) := 0; --000000
    myText varchar2(2000);
    BEGIN
    hApplication:=OLE2.CREATE_OBJ('Word.Application');
    OLE2.SET_PROPERTY(hApplication, 'Visible', 1);
    hDocuments := OLE2.GET_OBJ_PROPERTY(hApplication, 'Documents');
    hDocument := OLE2.INVOKE_OBJ(hDocuments, 'Add');
    -------- Create Header and Footer --------
    hWindow := OLE2.GET_OBJ_PROPERTY(hApplication, 'ActiveWindow');
    hPane := OLE2.GET_OBJ_PROPERTY(hWindow, 'ActivePane' );
    hView := OLE2.GET_OBJ_PROPERTY(hPane, 'View' );
    ---- Header Section ---
    OLE2.SET_PROPERTY(hView, 'SeekView', wdSeekCurrentPageHeader);
    hSelection := OLE2.GET_OBJ_PROPERTY(hApplication, 'Selection');
    hFont := OLE2.GET_OBJ_PROPERTY(hSelection, 'Font');
    OLE2.SET_PROPERTY(hFont, 'Name', 'Times New Roman');
    OLE2.SET_PROPERTY(hFont, 'Size', 10);
    OLE2.SET_PROPERTY(hFont, 'Bold', FALSE);
    OLE2.SET_PROPERTY(hFont, 'Color', MyBlue );
    hParagraphFormat := OLE2.GET_OBJ_PROPERTY(hSelection, 'ParagraphFormat');
    OLE2.SET_PROPERTY(hParagraphFormat, 'Alignment', wdAlignParagraphCenter);
    OLE2.RELEASE_OBJ(hParagraphFormat);
    args := OLE2.CREATE_ARGLIST;
    OLE2.ADD_ARG(args, 'This is a');
    OLE2.INVOKE(hSelection, 'TypeText', args);
    OLE2.DESTROY_ARGLIST(args);
    OLE2.INVOKE(hSelection, 'TypeParagraph');
    OLE2.SET_PROPERTY(hFont, 'Size', 16);
    OLE2.SET_PROPERTY(hFont, 'Bold', TRUE);
    OLE2.SET_PROPERTY(hFont, 'Color', MyDkGreen );
    args := OLE2.CREATE_ARGLIST;
    OLE2.ADD_ARG(args, 'Test Header');
    OLE2.INVOKE(hSelection, 'TypeText', args);
    OLE2.DESTROY_ARGLIST(args);
    ---- Footer Section ----
    OLE2.SET_PROPERTY(hView, 'SeekView', wdSeekCurrentPageFooter);
    hParagraphFormat := OLE2.GET_OBJ_PROPERTY(hSelection, 'ParagraphFormat');
    OLE2.SET_PROPERTY(hParagraphFormat, 'Alignment', wdAlignParagraphCenter);
    OLE2.RELEASE_OBJ(hParagraphFormat);
    hFields := OLE2.GET_OBJ_PROPERTY(hSelection, 'Fields');
    args := OLE2.CREATE_ARGLIST;
    OLE2.ADD_ARG(args, 'Page ');
    OLE2.INVOKE(hSelection, 'TypeText', args);
    OLE2.DESTROY_ARGLIST(args);
    hRange := OLE2.GET_OBJ_PROPERTY(hSelection, 'Range');
    args := OLE2.CREATE_ARGLIST;
    OLE2.ADD_ARG_OBJ(args, hRange);
    OLE2.ADD_ARG(args, wdFieldPage);
    OLE2.INVOKE(hFields, 'Add', args );
    OLE2.DESTROY_ARGLIST(args);
    args := OLE2.CREATE_ARGLIST;
    OLE2.ADD_ARG(args, ' of ');
    OLE2.INVOKE(hSelection, 'TypeText', args);
    OLE2.DESTROY_ARGLIST(args);
    hRange := OLE2.GET_OBJ_PROPERTY(hSelection, 'Range');
    args := OLE2.CREATE_ARGLIST;
    OLE2.ADD_ARG_OBJ(args, hRange);
    OLE2.ADD_ARG(args, wdFieldNumPages);
    OLE2.INVOKE(hFields, 'Add', args );
    OLE2.DESTROY_ARGLIST(args);
    OLE2.RELEASE_OBJ(hRange);
    OLE2.RELEASE_OBJ(hFields);
    OLE2.SET_PROPERTY(hView, 'SeekView', wdSeekMainDocument);
    OLE2.RELEASE_OBJ(hView);
    OLE2.RELEASE_OBJ(hPane);
    OLE2.RELEASE_OBJ(hWindow);
    -------- Insert Text --------
    hFont := OLE2.GET_OBJ_PROPERTY(hSelection, 'Font');
    OLE2.SET_PROPERTY(hFont, 'Name', 'Arial');
    OLE2.SET_PROPERTY(hFont, 'Size', 12);
    OLE2.SET_PROPERTY(hFont, 'Bold', FALSE );
    OLE2.SET_PROPERTY(hFont, 'Color', myBlack );
    OLE2.INVOKE(hSelection, 'TypeParagraph');
    myText := myTab || 'This text is on the ';
    args := OLE2.CREATE_ARGLIST;
    OLE2.ADD_ARG(args, myText);
    OLE2.INVOKE(hSelection, 'TypeText', args);
    OLE2.DESTROY_ARGLIST(args);
    OLE2.SET_PROPERTY(hFont, 'Bold', TRUE);
    OLE2.SET_PROPERTY(hFont, 'Color', myRed);
    args := OLE2.CREATE_ARGLIST;
    OLE2.ADD_ARG(args, 'first ');
    OLE2.INVOKE(hSelection, 'TypeText', args);
    OLE2.DESTROY_ARGLIST(args);
    OLE2.SET_PROPERTY(hFont, 'Bold', FALSE);
    OLE2.SET_PROPERTY(hFont, 'Color', myBlack );
    args := OLE2.CREATE_ARGLIST;
    OLE2.ADD_ARG(args, 'page.');
    OLE2.INVOKE(hSelection, 'TypeText', args);
    OLE2.DESTROY_ARGLIST(args);
    args := OLE2.CREATE_ARGLIST;
    OLE2.ADD_ARG(args, wdPageBreak);
    OLE2.INVOKE(hSelection, 'InsertBreak', args);
    OLE2.DESTROY_ARGLIST(args);
    ----page 2
    myText := myTab || 'This text is on the ';
    args := OLE2.CREATE_ARGLIST;
    OLE2.ADD_ARG(args, myText );
    OLE2.INVOKE(hSelection, 'TypeText', args);
    OLE2.DESTROY_ARGLIST(args);
    OLE2.SET_PROPERTY(hFont, 'Bold', TRUE);
    OLE2.SET_PROPERTY(hFont, 'Color', myBlue);
    args := OLE2.CREATE_ARGLIST;
    OLE2.ADD_ARG(args, 'second ');
    OLE2.INVOKE(hSelection, 'TypeText', args);
    OLE2.DESTROY_ARGLIST(args);
    OLE2.SET_PROPERTY(hFont, 'Bold', FALSE);
    OLE2.SET_PROPERTY(hFont, 'Color', myBlack );
    args := OLE2.CREATE_ARGLIST;
    OLE2.ADD_ARG(args, 'page.');
    OLE2.INVOKE(hSelection, 'TypeText', args);
    OLE2.DESTROY_ARGLIST(args);
    ---- go to the top of the first page
    args := OLE2.CREATE_ARGLIST;
    OLE2.ADD_ARG(args, wdStory);
    OLE2.INVOKE(hSelection, 'HomeKey', args);
    OLE2.DESTROY_ARGLIST(args);
    OLE2.RELEASE_OBJ(hFont);
    OLE2.RELEASE_OBJ(hSelection);
    OLE2.RELEASE_OBJ(hDocument);
    OLE2.RELEASE_OBJ(hDocuments);
    OLE2.RELEASE_OBJ(hApplication);
    END;
    Please help me out
    Thanks,
    Bhavana

    Click on --
    Edit link for Page> Click "Edit Default" link on Banner >
    Under the "Banner Links"
    provide value something like this:
    Label = Help
    URL = /pls/portal30/docs/myhelp.html
    Icon = U can upload any icon here.
    For Application Components = See the Second Last tab on "Edit Component".
    Thanx,
    Chetan.

  • How to repeat row header in all pages in Financial Reporting?

    Hi,
    I have created a simple Financial Report with landscape mode, I could not able to view the row header in second page. Please help me out , how to repeat row header in all pages?
    Edited by: Awesome on Dec 13, 2012 2:04 PM

    Hi,
    Refer following link which states how to change the Page Setup setting (just an addition to above poster's explanation):-
    http://docs.oracle.com/cd/E12825_01/epm.111/fr_user/frameset.htm?1900.html
    Regards,
    Edited by: 918547 on Dec 14, 2012 6:17 PM

  • How to print main window data in second page without header

    hi friends.,,,,,,,,,,,,,,,,,,,,
    I am printing billing docu details in main window ,the data is coming in two pages but there is problem in printing as the tables is continuing in second page the line is not coming for the table for first row,space is also coming for second page for header .
    my issue is to remove space before printing table and line should come for the table for 1st row in second page.
    please help .
    thanks in  advance.

    Hi Raghukumar,
    1. For the line not coming on the top row of the second page, check if the rowtype u have used in the table has been given a border on the upper side.
    2.For the space issue in the second page, I assume you might have used only a single Page in your smartform and the same page is called again.Hence as per the main window size and length data will be displayed in all pages of the smartform.
    You may need to create a second page with the Main window length occupying the compete page so that data display starts from the top of the page. next Page attributes of the smartforms should be entered accordingly.
    Please try to elaborate your query to help us understand your issue.
    Regards,
    Rijuraj

  • Repeating Header from the Second Page

    Hi All,
    i want to Repeat the Header from the Second page but it is not repeat. i tried in the following ways
    1.I have given "Repeat as a header row" in the table properties
    2. I Tried with Start Body and End Body(here i am using a this from first page also)
    can any please help me on this?
    regards
    boopat

    I think that you may find that the stuff in the header is set to print on First Page rather than All Pages. Try looking at the items and change.
    Dave

  • Header row in a table is overlapping when it goes to the second page

    Hello,
    I have a header row in a table that I need to repeat on new pages if there is enough data to make it go to a new page. It is repeating on the second page, but when it does it all overlaps and is squashed to the left. It is 5 columns long and each column goes on top of the others to the left.
    I am hoping someone might be able to help.
    Thanks!

    Hi,
    I am facing the same issue.
    My table header has 2-3 rows of data...the data is populated dynamically. The text fields are set to expand, so I have to make the subforms to flowed.
    As soon as I set the subforms to Flowed...evrything overlaps on the second page.
    Please help.
    Regards
    Neha

  • How can I delete an image that is being repeated as a heading on a second page of a document?

    I have a pages document that has a formal heading with a logo, and on the second page, it automatically repeated, so I was hoping that someone had some insight on how to stop the repeated logo, because I only want it on the first page. When I try to delete it from the second page, it deletes it from the first page as well. Please and thank you for your help!

    About… is always under the thing it is about.
    So for Pages it is under the Pages menu.
    In Pages 5.1 you can not insert images into the Header, so I assume you have put it in the Section Master.
    click at the end of the first page text > Menu > Insert > Section Break
    Then delete the logo in the subsequent section/s. Section Master objects repeat for every page of the section they are in. As the name suggests.
    Peter

  • Exposing the header info on the second page

    Hello, I need help exposing the header information on the second page when the child IO component has more records on the succeeding second page. I have tried looked up the bookshelf and didn't find info on how to get this done. Can anyone please help?
    I have the XML data file and the RTF template when needed.
    Thank you

    can you send me your template and xml . i can try at my side . email: [email protected]

  • On the pages app on my IPad, how do I start my header on the second page?

    On the pages app on my IPad, how do I start my header on the second page?

    You can't. The iOS and Mac OS X versions of the same application are separate products, and where applicable, purchases.
    (65818)

  • On iCloud pages how can you put a header on only the first page and not the second page?

    I'm trying the do a visual report and every time I put a header on the first page it goes to the next page and if I try to delete it on the second page it deletes on the first page too.

    bump

  • XML second page output overlap with predefind Header

    Hii
    XML Report second page output in overlap with Predefined Header (Paper Header) . so in second page how can i put down the row from Predefined Header.
    Thanks

    Hi 563093
    Hit same issue and, thanks to KlausFabian, fixed by following this one shot step.
    - Edit the template .rtf with notepad search and replace "headerr" with "header".
    Should works great.
    Source:
    Re: anything in header/footer section not coming in the output.
    L.

  • While Printing on Second Page the Space for Header is not considered

    Dear All
    we are using LIPI Line Printer and First page is Printed Correctly but at the time of Printing second page (for another invoice or same invoice second copy) the Space for invoice Header is over written by the Content of the smart form.
    In smartform that space for the Invoice Header is left blank.
    Please Suggest how to remove the Problem.
    Virandra Sharda
    9427630630

    Hello,
    I can't see any relation to DB2 therefore you should ask your question the ABAP Development » Form Printing forum (for any reason I cannot move the thread).
    Regards,
    Thomas

  • Blank space in the header part from the second page onwards.

    Hi,
    I am having a 16 pages report where there the header part comes in only first page and the data flows to 16 pages
    from second page onwards i am getting a empty space in the top portion (header part of the first page).
    the property of repeating frames are
    vertical elasticity=Yes
    page protect =no
    Base printing on =enclosing object.
    keep with ancoring object=no.
    please advice.

    I think that you may find that the stuff in the header is set to print on First Page rather than All Pages. Try looking at the items and change.
    Dave

Maybe you are looking for