Header displaying in each page

Hi,
I need  header details to be displayed in each page. These header details with line items are  placed in a table  in  main window. So when line items exceed to second page and so on  then i have to display header details in each page.
Thanks in advance.
Regards,
Neelima.

Hi Chetan Gala  ,
Thanx for that its working but now format problem after  that
I have  to display header details in Bold . I have made a paragraph format as BOLD  but now header line in first page displaying normally and in page 2 bold. How can display In all pages as Bold for header details
Thank in Advance
Regards,
Neelima

Similar Messages

  • Header to be displayed on each page(I cannot use TOP_OF_PAGE)

    hi all,
    I am writing a classical report. My output has two types of records. One is stored in internal table ITAB1 and other in ITAB2.
    ITAB1 and ITAB2 don't have same header. I need to first display the records in ITAB1 and later ITAB2.
    The problem here is both the tables have records exceeding one page. I need to print corresponding headers on each page.
    For Ex: If ITAB1 has records which cover two pages, then ITAB1 header needs to be printed on each page. After that ITAB2 header needs to be printed on each page.
    Can you please help.
    Thanks,
    Aravind

    Hi Aravind,
    You can try the following, declare a flag variable an set its value as 1. Now in event top-of-page check the value of the flag , if it is 1 write the heading for ITAB1 else write the heading for ITAB2.. Assume that the page length is 25 rows, that would invoke top-of-page after 25 rows. Now the output that you are displaying would be using the loop at itab1. write. endloop.
    After the loop is completed increment the flag by 1 and call new page. Now the flag contains 2 hence the heading for ITAB2 will be called.
    top-of-page.
    if flag = 1.
      write <heading1>
    else.
      write <heading2>
    endif.
    start-of-selection.
    loop at itab1.
    write <data from itab1>.
    endloop.
    flag = flag + 1.
    <invoke new page by NEW-PAGE command>
    loop at itab2.
      write <data from itab2>.
    endloop.
    Hope this helps.
    Regards,
    Sachin

  • Check Print Header will not display on each page

    I am creating a check print template for R12 and it works great for single page remittances. However for multi-page remitttances the Header information does not want to display on all pages of the remittance. When it goes to a new remittance the first page of that remittance is correct. I have an @section in the first group and there are no page breaks, but it still ignores the header.
    Any Ideas?
    Thanks,
    Dan J

    this is the typical answer that everybody asks check he CFIDE
    folder, but guess what, the folder is accessable and all the script
    files can be loaded by the browser but still ... no cfform flash
    displayed.
    need more support for this issue, i can use all the cfform
    features accept when trying to enable the format=flash and this is
    what isnt processing correctly,
    the developement server works fine but production server
    doesn't and the CFIDE directory has the right file permissions and
    is assessable to the browser.

  • How to show header value in each page same as Page field value.

    Hi there
    It would be very helpful if anyone could tell us how to set header value based on the page field.
    To make it more clear.. i have a field in my Rtf (which is basically a group by) so in each page it'll differ.. My Header should reflect the same as field value.
    what my understanding is header wont change for each page. but ,my requirement is something like i have to show the header which is same as one of my filed value..
    for eg:
    HEADER: ABC page-1
    Field - ABC
    HEADER:XYZ page-2
    Field - XYZ
    Regards - Vijay
    Edited by: Vijay Santhanam on 23-Oct-2008 3:51 PM

    Hi Haiye ,
    The Pointer you gave would keep Header ABC through out all the pages in report right, actually i had tried this and got same header for all pages,
    but what i need is my first page Header should be based on one of the field of Page 1, second pge Header again based on the same field, but the value may differ... (coz the page field is group by ).
    Would appreciate your help on this issue!!
    Regards - Vijay

  • Stopping a header reloading with each page

    I've had loads of conflicting advice on this one. Someone
    must know surely. How do I stop a flash movie from reloading each
    time a link button is clicked. In other words I just want the movie
    to load once on the home page and the integrated buttons to work as
    links to other html pages without the movie reloading on each
    page.

    well, lets start with the top one, since its an interesting
    way to do things anyway.
    when you look at your html file, (or asp or php) you'll be
    able to see the .swf file embedded in there. If you attach
    variables to the back of that using a script...
    "yourflashfile.swf?VARIABLEA=yesssss"
    that will pass a variable to your _root timeline called
    VARIABLEA with the value of "yesssss". You can use that directly in
    your html, but if you want the variable to change, you'll have to
    use a script. I like to use php because its free and open source,
    and very easy to find online help.
    http://www.13studios.com/whatever.php?VARIABLEA=no
    ------ doesn't work, dont click.
    Would pass your php file VARIABLEA with a value of no. So you
    see we can now connect the two by using a php echo command...
    <?php echo "$VARIABLEA" ?> or <?=$foo?>
    can you put that jumbled mess of answer together
    successfully? :D Lemme know!

  • Continued Header Display in Multiple pages

    Hi All,
    I am working on a print form. The requirement in body of the form is like this...
    Header with 10 columns
    Subsequent Items with 10 columns
    The above Header and Item both are dynamic.  There may be multiple Headers and Multiple Items. I am able to display the multiple headers with multiple Items. But the problem is when the data flows to multiple pages and if the page break occurs then the line items flowed into next page should be followed by its header. I have achieved that. Now the header which is coming in the next page should come with concatenated value page contd.. in the second column of the header... What would be the possible way to achieve the same..
    Regards,
    Mohammed Shukoor.

    Could you please eloborate the question. 
    as per my understanding, you need an extra line to be appended when pagination occurs with the page value and contd...
    Please let me know, if my understanding is right.
    thanks
    Rakesh.

  • How to display a header on each page of the smartform?

    Hi,
    I have a main window with a header and a table.I want my header to be displayed on each page of the form when the table streches on several pages.In my case,my header is a template and i want it to be displayed every time my table is longer than the first page.
    thanks

    Hi
    Yes,i know that the header is displayed on every page,but i cannot insert a template into the table.
    I also cannot use a flag,because only the content of the table is processed until all the data from the table is displayed.I have to force that window to be displayed on each page if the table has overflow.
    Any other ideas?
    later edit:
    I gues the option Sravathni gave me,is the only possibility.I have to declare rows  exactly like the one from the template and move the whole template into the header of the table.
    But isn't there an easier way to do that?
    Edited by: seba seba on May 18, 2009 12:16 PM

  • How to repeat table header on each page of PDF using Coldfusion

    Hi all,
    Can anybody help me in resolving this issue. The details are mentioned below.
    I am generating PDF using <cfdocument> tag of Cold Fusion.
    I have a header and footer to be displayed on each page. I am rendering data in a table.
    If rows in the table exceed a page , and continue on the next page , I want the table headers to be repeated on each of the page.
    Example :
    Currently this is happening:
    Page Header
    Sr No
    Name
    Occupation
    1
    A
    A
    2
    B
    B
    3
    C
    C
    Page Footer : Page No 1
    Page Header
    4
    A
    A
    5
    B
    B
    6
    C
    C
    Page Footer : Page No 2
    What I want is :
    Page Header
    Sr No
    Name
    Occupation
    1
    A
    A
    2
    B
    B
    3
    C
    C
    Page Footer : Page No 1
    Page header
    Sr No
    Name
    Occupation
    4
    A
    A
    5
    B
    B
    6
    C
    C
    Page Footer : Page No 2

    Hi Dan ,
    Thanks for your inputs.
    This way wont work beacause , am displaying other text and table both, and the table will be diplayed based on some conditions. If the conditions are true , table will be diplayed , else not.
    I missed to illustrate text in the example. The scenario is something like this :
    Page Header
    Text .........
    Table [Displayed conditionaly]
    Page Footer
    Please suggest me some way to do this.

  • How to display column headings only once in each page with repeated blocks

    Hi,
    I have a report with 1 block on one column. The block has a table in it and will repeat in one page.
    I need to display the column headers only in the beginning of each page. Can someone share your experience in implementing this ?
    Thanks for your help.

    >
    andyhchsu wrote:
    > Hi,
    > I mean in each block within section, I only need to display the table header once in each page.
    > However if I check table header, it will display repeatedly. Any way to get around this ? Thx.
    The trick I use to do that is turn off all the headers on the block (table and break) and put the header information in its own block above the section and set the new header block to repeat on each page.  You just have to remember to resize the columns in the header block if you make changes to the column sizes in your data block.

  • Header on each page in  a CrossTab Report

    Hi,
    I created a cross tab report. The only place I can place it is the Report header. I have a heading that should be displayed on each page of the report, how can I do this.
    Because the cross tab is in the Report Header I placed my heading in the Report Header only so it appears on the first page only. How can I make it appear on each page.
    Thanks,
    Reena

    Hi Reena,
    Have you tried placing the Crostab in Report Footer? This way you can keep the heading in Page header and the Crosstab in Report footer so that the heading appers on each page. Rest all section which are not required can be suppressed.
    Let us know if this helps.
    Cheers!

  • Common Header in each page in WP8

    Hi,
    I am creating a Windows Phone application.I have a common header that I have to display in each page.Is there a way to create a common UI that could be included
    in every xaml page.If yes, then how can I do it?

    keep the section that needs to be repeated in a inline template block
    <?template:header?>
    your header section block
    <?end template?>
    then use this code in header <?call:header?>or <?call@inlines:header?><?end call?>
    then u will get the block needed repeated in every page of report.

  • Header row repeat for each page?

    Hi all. I have a rtf template with a table with 4 rows and lets say there 4 rows are headers but doesnot have any formfields....
    I have a seperate table with form fields beneath it. I need my header tbale to be displayed on each page in output.
    I am unable to do it.
    It is really urgent.
    Can any one please help.
    I searched for solutions in this forum. It didn't work.

    Hi ,
    Check this i think it will helpful for you
    http://winrichman.blogspot.com/2008/09/repeat-table-header-in-all-pages-in-bip.html
    see the comments also in that link...
    Thanks,
    Ananth

  • Dw, css, and a template, what is the best way to create a 20 page website with a different header in each page?

    dw, css, and a template, what is the best way to create a 20
    page website with different header content on each page? i am
    trying to insert a specific image and background color for each
    header on every page. what is the easiest or best way to do this?
    thanks, bryan

    "mediastream13" <[email protected]> wrote in
    message
    news:f47bes$9om$[email protected]..
    > ok, murray, here is the site.
    http://www.helphotline.org
    > in I.E. 6 i can't see the background color behind the
    header images,
    I'm seeing a hot pink background (which is my browser default
    - so that I do
    remember to declare a background color). You need to add:
    body { background-color: white;} to your stylesheet, or into
    the imbedded
    styles on your page.
    In Firefox, the very top black section, #headertop is hidden
    behind the
    header image.
    > background of the date/time isn't stretching the full
    length of the
    > screen, and
    > the margins aren't working in the main content area. how
    can i put a
    > background
    > color behind the header images?
    I can see the header image stretching right across the page..
    so not sure
    what color is missing there.
    > is there anyway to download i.e. six on my computer if i
    already have
    > i.e.7? i
    > just want to be able to preview the site before i upload
    the changes. it
    > seems
    > everything works in i.e. 7.
    Yes, I used this and it works really well.
    http://tredosoft.com/Multiple_IE
    Nadia
    Adobe® Community Expert : Dreamweaver
    CSS Templates |Tutorials |SEO Articles
    http://www.DreamweaverResources.com
    ~ Customisation Service Available ~
    http://www.csstemplates.com.au

  • Do paging with header on a JSP page

    Hi:
    We have a data report displayed as a JSP page. The report displays 200 rows of data. We need to print these 200 rows report with a header/title on each page. And our user only wants to hit he Browser print button once. This would have been easy if we don't have to insert the header on each print page. But how can we print this multiple page report with a header? Do we need to use CSS? any help will be appreciated.
    reportPrinter

    Okay bear with me:
    Step 1: determine how many rows in a table with a header will print on a single page
    Step 2: Create a jsp that breaks your data down into tables of the row size determined above.
    For example if the data consists of 1000 rows and 50 rows w/ headers will fit on a page
    then the jsp will create 20 tables of 50 rows w/ headers each.
    Step 3: Use CSS to put page breaks between the tables.
    http://www.htmlgoodies.com/beyond/css_print.html
    Step 4: In the original JSP use the HTML LINK tag to link it to the JSP you just created
    http://www.gself.com/xbas/head/linking.htm
    <link rel="alternative" href="{new JSP url}" type="text/html" media="print" />
    Step 5: On the original JSP provide a button that when clicked on will call the JavaScript print function.
    Now what should happen is that when the button on the original JSP is clicked the JavaScript print function will be called but instead of the page displayed in the browser being printed the alternative page
    in the LINK tag will get printed. This alternative JSP page is formatted to print one table with headers per page.
    The only part of this that I have not used in a production web app iss the CSS page break part. The rest of it I know will work.

  • Repeat group footer on each page

    Hi all,
    I have a regular report with 1 Group. My problem is that my report doesn't repeat group footer on each page. I know that in Grouping options there is an option for "Repeat Group Header on each page" checkbox which makes the Group Header print on each page. I've found that Header and Footer both work together and that if you print Header it will print footer as well. The thing is I have paging functionality (<a href='http://www.crystalreportstrainingbootcamp.com/resources/trainers_talk_detail.asp?Title=03'>click here for paging details</a>) in my report in the Group, so once it reaches 14 lines in Details it goes to the next page, prints the GROUP HEADER but not the GROUP FOOTER on each report page.
    Does anybody know why?
    I found the following topic: <a href='http://technicalsupport.businessobjects.com/KanisaSupportSite/search.do;jsessionid=90BF3D79A308CCF6B58F1E2656225CDD?cmd=displayKC&docType=kc&externalId=c2004981&sliceId=&dialogID=360384&stateId=1%200%20356275'>Creating a fake group header for orphaned group footers</a> but it's for CR 7. Was it resolved in newer releases of CR or it still needs a work around? I'm not even sure if that will fix my problem...
    Thank you,
    Tatyana

    Hello,
    please give us the verison of your Crystal Reports product that we can investigate
    Regards,
    Falk

Maybe you are looking for

  • Melting memory

    hello everybody i have a serious problem with a java application which drains memory and does not release a single byte. my java.exe is growing until approx. 40 -45 mb are reached - then my dispatcher-servlet is slowing down until, after a while, it

  • Use of policy file to connect to remote server

    I am trying to use the socket.connect(serverURL, portNumber) to connect to a server through telnet port 23. I am unable to connect through port 23. please advise

  • Everytime I click on a link, instead of loading it on the same page it opens a new tab.

    Suddenly every time I click on a link, it opens it in a new tab i.e.; if I search yahoo from my home page, it opens yahoo in a new tab, then when I click on yahoo mail, it opens yahoo mail in a new tab, and then when I sign in, it opens yet another n

  • Essbase Defrag and Calc Issue

    I have a calcscript will runs against a BSO cube with 11 dimensions and it runs for 15 mins. The script does some calculations and rollups (AGG and CALC DIMS etc). I can see the blocks go from 15k blocks to 500k blocks at the end. And then when I re-

  • Data input via keyboard

    I'm considering an iPhone, I'm using a Palm now and like inputting with handwriting directly onto the screen. Does anyone have an opinion about how it is to input with the keyboard... Thanks! Lori