Repeat as header row at the top of each page --- in Footer of the table

I have a table
1st row contains column description.
I need the same column description in the last row of the page.
Is it possible
Thanks

Column names are hard coded in the first row ?
if so, create anther row after the "end for-each" put these columns description in that row.

Similar Messages

  • My address bar is gone. How do I get to show up at the top of each page? I thought I was deleting a link and it deleted the address bar instead.

    My address bar was accidentally deleted from the top of each web page. I thought I was deleting a bad link but instead deleted the whole address bar. Need advice. Thanks.

    View: Customize Toolbar.....
    Drag address box BACK up into position....

  • Printing a multipage spreadsheet is cutting off the top of each page.

    I am trying to print a multipage spreadsheet in numbers that I have been using for a couple of years with no problems. Since converting to Numbers 3.1 and upgrading the spreadsheet to this new format I cannot get the spreadsheet to print properly. The top row of every page of the 20 page spreadsheet get cut off by about 75% making all the information in that row unreadable. I have tried the fit to page function, I have tried reducing the size but nothing works. Any ideas?

    Hi Denois,
    A couple of tips to help with layout now that Print View is reduced to the non-editable Print Preview.
    Numbers > Preferences > Rulers > Tick every box
    View > Show Rulers
    You can drag Alignment Guides from the rulers too.
    The rulers show the borders of the printed page a 0,0 (but they don't print).
    Regards,
    Ian

  • How do I make text start at the top of each page?

    Hello,
    If a paragraph ends on the preceding page, and I've inserted a line break after it, the line break applies at the top of the subsequent page, therefore the text is not at the absolute top. I need to keep the line break there in case I add text earlier in the document, to keep the paragraph spacing uniform.
    Is there a way to set it so that text always justifies to the top - yet if additional lines are added to earlier text, it keeps the line break? I hope that made sense, if not let me know and I'll clarify. Thanks.
    Be Well,
    Timothy

    Instead of using using line breaks after paragraphs, use the After Paragraph option to add extra space between paragraphs.

  • How to print a value at the top of each page in the detail section of a rpt

    Thanks for helping, I will try to get right to the point.
    I have RTF template. Very simplistic template. I have the Group at the top (there is only 1 per XML file) and several DETAIL lines with like 10 columns.
    The first displayed field is "ACCOUNT_NUMBER". The user wished that if the ACCOUNT NUMBER for line 2 was the same as line 1, that it be suppressed, for example:
    Acct No other other other other
    1234 XX XX XX XX
    YY YY YY YY
    This was not a problem, I was able to accomplish it with the following code:
    <?if:position()=1 or ACCOUNT_NUMBER!=preceding::ACCOUNT_NUMBER[1]?><?ACCOUNT_NUMBER?><?end if?>
    But what happens is that IF THE FIRST line on a page has the same ACCOUNT_NUMBER as the last line on the previous page, the ACCOUNT NUMBER is not displayed.
    What I would like is for the ACCOUNT NUMBER to be displayed anytime we are at the first record on a page, AND anytime it is different from the previous record's value.
    I do not know how many lines per page are possible, because there are other line breaks which exist which put a space between lines when values change too. So I cannot just count how many total lines and divide it by lines per page.
    My thought was that there must be a way I could store a variable called LAST_PAGE, and at the end of each record, copy the current page number to that variable. Then in my ACCOUNT_NUMBER code, I could check if current page is NOT equal to last page along with my other conditions.
    1. Is this the best way to do this? If so, please help, I am new to BI and am having trouble figuring out where to put variables and stuff like that.
    2. If not, how can I do this?
    3. If your recommendation is going to be to group my items by Account Number, I may not have time to redo the report that way. I will happily supply the rtf and xml if that will help you help me.
    Regards:
    Michael Coughlin

    Here ya go. Obviously you can duplicate the G_DETAILS blocks to get enough for 2 pages. I have the data pre-sorted before the output is generated because I had trouble getting the RTF to work if I didn't, just so you know.
    <?xml version="1.0" encoding="UTF-8" ?>
    <!-- Generated by Oracle Reports version 6.0.8.28.0 -->
    <XXDIPICK_RPT>
    <LIST_G_HEADERS>
    <G_HEADERS>
    <SHIP_FROM_ORG_CODE>202</SHIP_FROM_ORG_CODE>
    <LINE_STATUS>Picked</LINE_STATUS>
    <LIST_G_DETAILS>
    <G_DETAILS>
    <SHIP_FROM_ORG_CODE1>202</SHIP_FROM_ORG_CODE1>
    <ACCOUNT_NUMBER>1000</ACCOUNT_NUMBER>
    <DELIVERY_NUMBER>8062</DELIVERY_NUMBER>
    <ORDER_NUMBER>103049</ORDER_NUMBER>
    <CUST_NAME>DIAMOND INNOVATIONS INT SALES - NEWCO</CUST_NAME>
    <DELIVERY_DETAIL_ID>12474</DELIVERY_DETAIL_ID>
    <LINE_NO>1.1</LINE_NO>
    <ITEM_NO>4087401</ITEM_NO>
    <ITEM_DESCRIPTION>HPD M SD-CTO-0 Pot</ITEM_DESCRIPTION>
    <OPEN_FLAG>Y</OPEN_FLAG>
    <CANCELLED_FLAG>N</CANCELLED_FLAG>
    <BOOKED_FLAG>Y</BOOKED_FLAG>
    <ORDERED_QUANTITY>1</ORDERED_QUANTITY>
    <ORDER_QUANTITY_UOM>EA</ORDER_QUANTITY_UOM>
    <SHIPPED_QUANTITY></SHIPPED_QUANTITY>
    <SCHEDULE_SHIP_DATE>2011-01-31T23:59:00+00:00</SCHEDULE_SHIP_DATE>
    <NAME>INTERNAL ORDER - US</NAME>
    <CUST_ACCOUNT_ID>16404</CUST_ACCOUNT_ID>
    <HEADER_ID>6446</HEADER_ID>
    <LINE_ID>7926</LINE_ID>
    <ORG_ID>84</ORG_ID>
    <SHIP_TO_ORG_ID>16050</SHIP_TO_ORG_ID>
    <INVOICE_TO_ORG_ID>16052</INVOICE_TO_ORG_ID>
    <SHIP_SET_ID></SHIP_SET_ID>
    <INVENTORY_ITEM_ID>63927</INVENTORY_ITEM_ID>
    </G_DETAILS>
    <G_DETAILS>
    <SHIP_FROM_ORG_CODE1>202</SHIP_FROM_ORG_CODE1>
    <ACCOUNT_NUMBER>1000</ACCOUNT_NUMBER>
    <DELIVERY_NUMBER>8062</DELIVERY_NUMBER>
    <ORDER_NUMBER>103049</ORDER_NUMBER>
    <CUST_NAME>DIAMOND INNOVATIONS INT SALES - NEWCO</CUST_NAME>
    <DELIVERY_DETAIL_ID>12475</DELIVERY_DETAIL_ID>
    <LINE_NO>2.1</LINE_NO>
    <ITEM_NO>3732307</ITEM_NO>
    <ITEM_DESCRIPTION>NV MBS 2325 Bushing Asm</ITEM_DESCRIPTION>
    <OPEN_FLAG>Y</OPEN_FLAG>
    <CANCELLED_FLAG>N</CANCELLED_FLAG>
    <BOOKED_FLAG>Y</BOOKED_FLAG>
    <ORDERED_QUANTITY>1</ORDERED_QUANTITY>
    <ORDER_QUANTITY_UOM>EA</ORDER_QUANTITY_UOM>
    <SHIPPED_QUANTITY></SHIPPED_QUANTITY>
    <SCHEDULE_SHIP_DATE>2011-01-31T23:59:00+00:00</SCHEDULE_SHIP_DATE>
    <NAME>INTERNAL ORDER - US</NAME>
    <CUST_ACCOUNT_ID>16404</CUST_ACCOUNT_ID>
    <HEADER_ID>6446</HEADER_ID>
    <LINE_ID>7927</LINE_ID>
    <ORG_ID>84</ORG_ID>
    <SHIP_TO_ORG_ID>16050</SHIP_TO_ORG_ID>
    <INVOICE_TO_ORG_ID>16052</INVOICE_TO_ORG_ID>
    <SHIP_SET_ID></SHIP_SET_ID>
    <INVENTORY_ITEM_ID>67865</INVENTORY_ITEM_ID>
    </G_DETAILS>
    <G_DETAILS>
    <SHIP_FROM_ORG_CODE1>202</SHIP_FROM_ORG_CODE1>
    <ACCOUNT_NUMBER>46711</ACCOUNT_NUMBER>
    <DELIVERY_NUMBER></DELIVERY_NUMBER>
    <ORDER_NUMBER>102980</ORDER_NUMBER>
    <CUST_NAME>VAREL EUROPE</CUST_NAME>
    <DELIVERY_DETAIL_ID>12356</DELIVERY_DETAIL_ID>
    <LINE_NO>1.1</LINE_NO>
    <ITEM_NO>11004002</ITEM_NO>
    <ITEM_DESCRIPTION>TYPE I 100/120 MISC</ITEM_DESCRIPTION>
    <OPEN_FLAG>Y</OPEN_FLAG>
    <CANCELLED_FLAG>N</CANCELLED_FLAG>
    <BOOKED_FLAG>Y</BOOKED_FLAG>
    <ORDERED_QUANTITY>75</ORDERED_QUANTITY>
    <ORDER_QUANTITY_UOM>CT</ORDER_QUANTITY_UOM>
    <SHIPPED_QUANTITY></SHIPPED_QUANTITY>
    <SCHEDULE_SHIP_DATE>2011-01-27T23:59:00+00:00</SCHEDULE_SHIP_DATE>
    <NAME>STANDARD ORDER - IRE</NAME>
    <CUST_ACCOUNT_ID>5004</CUST_ACCOUNT_ID>
    <HEADER_ID>6234</HEADER_ID>
    <LINE_ID>7312</LINE_ID>
    <ORG_ID>85</ORG_ID>
    <SHIP_TO_ORG_ID>18929</SHIP_TO_ORG_ID>
    <INVOICE_TO_ORG_ID>4995</INVOICE_TO_ORG_ID>
    <SHIP_SET_ID></SHIP_SET_ID>
    <INVENTORY_ITEM_ID>42032</INVENTORY_ITEM_ID>
    </G_DETAILS>
    <G_DETAILS>
    <SHIP_FROM_ORG_CODE1>202</SHIP_FROM_ORG_CODE1>
    <ACCOUNT_NUMBER>76127</ACCOUNT_NUMBER>
    <DELIVERY_NUMBER>7608</DELIVERY_NUMBER>
    <ORDER_NUMBER>102981</ORDER_NUMBER>
    <CUST_NAME>LION ENGINEERING SERVICES LTD</CUST_NAME>
    <DELIVERY_DETAIL_ID>12357</DELIVERY_DETAIL_ID>
    <LINE_NO>1.1</LINE_NO>
    <ITEM_NO>11004002</ITEM_NO>
    <ITEM_DESCRIPTION>TYPE I 100/120 MISC</ITEM_DESCRIPTION>
    <OPEN_FLAG>Y</OPEN_FLAG>
    <CANCELLED_FLAG>N</CANCELLED_FLAG>
    <BOOKED_FLAG>Y</BOOKED_FLAG>
    <ORDERED_QUANTITY>200</ORDERED_QUANTITY>
    <ORDER_QUANTITY_UOM>CT</ORDER_QUANTITY_UOM>
    <SHIPPED_QUANTITY></SHIPPED_QUANTITY>
    <SCHEDULE_SHIP_DATE>2011-01-27T23:59:00+00:00</SCHEDULE_SHIP_DATE>
    <NAME>STANDARD ORDER - IRE</NAME>
    <CUST_ACCOUNT_ID>5614</CUST_ACCOUNT_ID>
    <HEADER_ID>6235</HEADER_ID>
    <LINE_ID>7318</LINE_ID>
    <ORG_ID>85</ORG_ID>
    <SHIP_TO_ORG_ID>18429</SHIP_TO_ORG_ID>
    <INVOICE_TO_ORG_ID>5605</INVOICE_TO_ORG_ID>
    <SHIP_SET_ID></SHIP_SET_ID>
    <INVENTORY_ITEM_ID>42032</INVENTORY_ITEM_ID>
    </G_DETAILS>
    </LIST_G_DETAILS>
    </G_HEADERS>
    </LIST_G_HEADERS>
    </XXDIPICK_RPT>

  • I want to remove the Links at the top of each page

    How can i remove the links at the top of the page. When i publish to a folder, and I preview my site in SAFARI or Explorer, the links shows up at the top like a directory.

    gman... if it's the navigation menu you're talking about. You deselect them by going to the inspector window found in the VIEW menu in iWeb.
    Wen you get the inspector window, click on the page you want to edit in the SITE ORGANIZER on the left of the screen. Then, in the INSPECTOR WINDOW click on the page organizer, it looks like a page at the top of the window. There will be a box there that says "include page in navigation menu"... if you don't want this page to appear at the top of the pages in iWeb, make sure it's not checked.
    Save your changes and republish.
    Jim

  • Get the run date and pages to appear at the top of a BI Answers report

    Hi,
    I'm trying to get the page number to appear at the bottom of each page.
    It should say eg. Page 2 of 10 pages'.
    I'm also trying to get the run date to appear at the top of each page.
    Thanks,
    Sally

    You can't get "page x of y" out of the box, but you can enable "Footers" and use the Page # variable to display the pages. To get the total number of records, you can use this method:
    http://oraclebizint.wordpress.com/2008/01/23/oracle-bi-ee-101332-total-number-of-rows-and-pagination/
    The other thing you can do is use pagination for pivot tables. See this link:
    http://oraclebizint.wordpress.com/2008/01/17/oracle-bi-101332-pagination-in-pivot-tables/
    And of course, displaying the run date and time is built in as a variable in the Header (of Header and Footer), which will appear on every page (unlike the Title View the previous poster pointed out, which will only appear on the first page). There you go.

  • Company Logo at top of each page in report

    We want to put our company logo on the top of each page in a multi-page printed report (which is already in production and is very complicated).  I don't think you can do this with a standard list abap.  I'm guessing I need to change the abap to a dialogue program and output to a screen?  Can anyone describe the process necessary?  For example will I need to have two containers on the screen, one for the report where I do a leave to list processing, and the other for the logo?  But how would this print - could I do it so the logo appears at the top of each page?
    Certainly SAP provides some (non-alv, non-sapscript) solution to putting a logo at the top of each page?
    Thanks,
    Mike

    Hi,
    I am guessing , that if you are saying non-sapscript, even SMARTFORMS is out of question. Well you don't give many choices, (non-alv, non-sapscript), now do you ?
    As far as I know, I don't think, it is possible to put images using dialog programming or list processing.
    Check out Report Painter if it supports images.
    Regards,
    Subramanian V.

  • Repeat a header row in ADG

    I have a really long list in my advanced data grid. I was
    wondering if it is possible to repeat a header row. Does Flex have
    this build-in function? Otherwise, I would need to insert a extra
    row and make it look like a header.

    Hi,
    I don't think Flex has this feature in built, but you can
    visit the URL below to see and implementation of a footer for ADG.
    You can also try lockedRowCount option. Please find more details at
    the URL below.
    http://blogs.adobe.com/aharui/2008/03/flex_3_datagrid_footers.html
    http://livedocs.adobe.com/flex/3/langref/mx/controls/AdvancedDataGrid.html#lockedRowCount
    Hope this helps.

  • How to keep a table "header" stuck at top of each page

    Okay. This will probably be impossible to explain, but here goes.
    I have a document template that consists of a table (4 columns and variable number of rows depending on the content).
    I would like the columns to have their "headers" (meaning here the first row) appear on each page. So, as the first page gets filled up, when page 2 appears, the headers are duplicated from page one (so that the contents of the columns are evident on each page).
    Hope that makes sense. Can this be done with pages? (I can't use the regular page header for this since it's got different info that needs to be there.
    Thanks.

    I was just fooling around with a table trying to solve a different problem when I came up with a different solution to your question (assuming I understood what you wanted).
    In the Wrap Inspector choose Moves with Text and your table will continue to successive pages. (If you want to center the table, or position it anywhere other than all the way left, click on the table and grab the little triangle in the Ruler and drag it to the right to move the table.)
    If you don't already have the "Header Row" box checked, do so now. (In the Table Inspector.) Any text in the Header cells will repeat on each page just like a regular page header.
    If you don't want the default gray, highlight the Header and go to the Object Inspector and in the Fill menu select None or any color you like. You can even select each header cell separately and make each one a different color.
    Happy Paging,
    Walt

  • Can't get rid of the space at the top of my page!

    can't get rid of the space at the top of my page!
    http://www.songsaboutthenews.com
    Real simple table, centered, with background image. Can't get
    the space at the top of the page to go away. Much mucking with the
    inline style sheets to no avail. Help is appreciated!

    mixmasterdsr04 wrote:
    > can't get rid of the space at the top of my page!
    >
    >
    http://www.songsaboutthenews.com
    >
    > Real simple table, centered, with background image.
    Can't get the space at the
    > top of the page to go away. Much mucking with the inline
    style sheets to no
    > avail. Help is appreciated!
    >
    Hi,
    Edit the background image to remove the white at the top or
    adjust your
    css like so......
    body {
    background-color: #FFF;
    background-image: url(bk.jpg);
    background-repeat: repeat-x;
    background-position: center -20px;
    margin: 0;
    padding: 0;
    chin chin
    Sinclair

  • Table header row to show only on even pages

    Within a table I have made few of the rows as header row. Is there any way I can make this header row to show only on even pages..I tried doing this at the beginning of each header row <?if:(fo:page-number) mod 2=0?>..but its' not showing me anything..

    Thanks that helped..But I am having another problem. I want to call different templates in the even header section... based on the page number...for example..for
    page 2 of 2, I want to call template1 in the even page,
    page 2 of X, I want to call templete2 in the even page,
    Can you please help..?

  • The bar at the top of each document?

    What is that bar at the top of each document?
    Is there any way to put something in the bar on the first page and not have it appear in the bar on the second page?
    It's very annoying to have that happen all the time.

    Clear as mud.
    What bar in what document?
    If I am guessing right, you are referring to the Header?
    If so:
    +Inspector > Layout (2nd tab) > Section > Configuration > check First page is different+
    Download the Pages09_UserGuide.pdf from under the Help menu to read how it all works.

  • My macbook is less than a year old. I am very careful with it, but it has developed a crack on the top lid. Is this covered by the regular warranty?

    My macbook is less than a year old. I am very careful with it, but it has developed a crack on the top lid. Is this covered by the regular warranty?
    Jo

    I had a MacBook which cracked several times over the three years I had it.  Each time it was repaired under warranty without quibble.
    I had to use Windows XP quite a lot, and though I can't be certain I think that the excessive heat generated by XP was partly to blame for the repeated cracking.  There's no doubt that OS X is "cool" in every sense of the word!

  • There's a black space at the top of my window, and when I open the browser, my home page comes up but the address line is blank. How do I fix this?

    There's a black space at the top of my window, and when I open the browser, my home page comes up but the address line is blank. How do I fix this?

    -> Tap ALT key or press F10 to show the Menu Bar
    -> go to Help Menu -> select "Restart with Add-ons Disabled"
    Firefox will close then it will open up with just basic Firefox. Now do this:
    -> Update ALL your Firefox Plug-ins https://www.mozilla.com/en-US/plugincheck/
    -> go to View Menu -> Zoom -> click "Reset" -> Page Style -> select "Basic Page Style"
    -> go to View Menu -> Toolbars -> select Menu Bar and Navigation ToolBar -> unselect All Unwanted toolbars
    -> go Tools Menu -> Clear Recent History -> '''Time range to clear: select EVERYTHING''' -> click Details (small arrow) button -> place Checkmarks on '''Cookies, Cache, Site Preferences''' -> click "Clear Now"
    -> go to Tools Menu -> Options -> General -> When Firefox starts : select "Show My Home Page" -> Type the address of the website which you want to be your HomePage e.g. http://www.google.com
    -> go to Tools Menu -> Options -> Content -> place Checkmarks on:
    1) Block Pop-up windows 2) Load images automatically 3) Enable JavaScript
    -> go to Tools Menu -> Options -> Privacy -> History section -> '''Firefox will: select "Use Custom Settings for History"''' -> REMOVE Checkmark from '''"Permanent Private Browsing mode"''' -> place CHECKMARKS on:
    1) Remember my Browsing History 2) Remember Download History 3) Remember Search History 4) Accept Cookies from sites -> select "Exceptions..." button -> Click "Remove All Sites" at the bottom of "Exception - Cookies" window
    4a) Accept Third-party Cookies -> under "Keep Until" select "They Expire"
    -> '''REMOVE CHECKMARK from CLEAR HISTORY WHEN FIREFOX CLOSES'''
    -> '''When using the Location Bar, suggest: select "History and Bookmarks"'''
    -> go to Tools Menu -> Options -> Security -> place Checkmarks on:
    1) Warn me when sites try to install add-ons 2) Block reported attack sites 3) Block reported web forgeries 4) Remember Passwords for sites
    -> Click OK on Options window
    -> click the Favicon (small drop down menu icon) on Firefox SearchBar (its position is on the Right side of the Address Bar) -> click "Manage Search Engines" -> select all Unwanted Search Engines and click Remove -> click OK
    -> go to Tools Menu -> Add-ons -> Extensions section -> REMOVE All Unwanted/Suspicious Extensions (Add-ons) -> Restart Firefox
    You can enable your Known & Trustworthy Add-ons later. Check and tell if its working.

Maybe you are looking for

  • CONFIRMATION OF PROCES ORDER

    What do we confirm during confirmation of proces order?

  • Audio in OS 3.0

    Since upgrading mg iPhone 3G to OS 3.0, I have had the following bug: Audio on Music and movies won't play after being stopped. If I reset the device or power down and then back on again, the first video or song I play works just fine, even an entire

  • LINE IN COLUMN

    Hi, I have two tables : - test (id_test, test) - val_test (id_val_test, val_test, id_test) id_test is the foreign key My data are : test : 1 test1 val_test : 1 val1 1 2 val2 1 3 val3 1 So if i made a joint, i have 1 val1 1 1 val2 2 1 val3 3 And i wan

  • Error PENDING state, err(0) installing clusterware 10.2.0.4

    Hi, I'm installing oracle clusterware 10.2.0.4 in Windows server 2008, when finish setting up proccess, It run some configuration, the first config failed(Oracle Clusterware Configuration Assistant). the error is : Step 5: Starting up CRS stack on al

  • RoboHelp Indexing

    Hello every one, I am new to using RoboHelp. My recent project has me building a Mega file from three smalled files used by individual departments at my job. The mega file will be used by all departments and each department will have there own drop d