Repeating a Table footer

Hi,
I have a requirement to print the summary (amount totals) of the table on all the pages that the table spans. This summary is like the last row of the table.
For header I have set the "Heading Rows Repeat" property.
How do I do the same for the footer?
Hope i have made my requirement clear. Any help in this regard would be greatly appreciated.
Thanks,
Ashish

Hi,
This is a brand new table with 2 rows (1 header and 1 data) and 3 columns.
As i have said before, if I print something instead of the <?split-by-page-break:?> clause, it gets printed in the correct position.
XML Structure:
<?xml version="1.0"?>
<LIST_G_SHIPPED_QUANTITY>
<G_SHIPPED_QUANTITY>
<LINE_ID>99786</LINE_ID>
<PO>9/it/83427/vd /it-dis-ochw</PO>
</G_SHIPPED_QUANTITY>
<G_SHIPPED_QUANTITY>
<LINE_ID>99784</LINE_ID>
<PO>9/it/83427/vd /it-dis-ochw</PO>
</G_SHIPPED_QUANTITY>
<G_SHIPPED_QUANTITY>
<LINE_ID>99788</LINE_ID>
<PO>9/it/83427/vd /it-dis-ochw</PO>
</G_SHIPPED_QUANTITY>
</LIST_G_SHIPPED_QUANTITY>
Row Num     Line Id     PO
G_SHIP_QTY Row# Line Id PO# limit EFE:G_QTY_SHIP
Where G_SHIP_QTY => <?for-each:G_SHIPPED_QUANTITY?>
Row# => <?position()?>
Line Id => <?Line_ID?>
PO# => <?PO?>
limit => <?if: position() mod 2=0?><?split-by-page-break:?><?end-if?>
EFE:G_QTY_SHIP => <?end for-each?>
Should i paste the converted XSL file?
Thanks
Ashish

Similar Messages

  • How to print grandtotal in table footer only in the last page in SMARTFORMS

    Hello Experts,
    How do I print the GRANDTOTAL in the table footer only on the LAST PAGE in SMARTFORMS.
    What I have done is in the text element of CELL1 of the table footer i wrote the folowing logic but not working.
    /: IF &SFSY-PAGE& EQ &SFSY-FORMPAGES&.
    * V_SUM.
    /: ENDIF.
    I even tried this.
    /: IF &NEXT-PAGE& EQ 0.
    * V_SUM.
    /: ENDIF.
    but still it displays the grand total on all pages at table footer.
    How do i go for this experts.
    Regards,
    Ranjith N

    HI Nambiar,
    To print the grand total only on the last page then create the secondary window --> create the text node for the grand total -->In the condition tab check only after the end of the main window.
    This grand total will be displayed after all the items and end of the main window.
    Footer in the table displays as the subtotals i.e on every page total is displayed..
    Regards,
    Sravanthi

  • Unique row count in table footer

    JDev 11.1.1.6
    Hi,
    In my current table, I am able to show total row count at a table footer by using #{bindings.<myVO>Iterator.estimatedRowCount}.
    I have a request from my user to show unique total row count. For example rows below:
    1 A
    2 B
    3 A
    4 C
    The footer should show:
    4 3
    The second column has A, B, and C where A is counted only 1 (unique). Is there a way to achieve this?
    Thanks.

    Hi RRA,
    This may work for a static # of rows (no filtering). In the table I use, I can do filtering and that certainly will make the count result be different if I use another VO for distinct result.
    Thanks.

  • Sub total in table footer

    Hello,
    I am creating an Adobe form for SD invoices.
    I have a table which contains the list of invoice items.  I want to calculate a sub total per page in the table footer.
    For example :
    PAGE 1                                                                         
    Item1   10,00 euros                                              
    Item2   10,00 euros                                             
    Item3   10,00 euros                  
    Sub total : 30,00 euros  
    PAGE 2   
    Item4  10,00 euros
    Item5  13,00 euros 
    Item6   22,00 euros
    Item7  14,00 euros
    Sub total : 59,00 euros   
    PAGE 3
    Item8   23,00 euros 
    Item9   55,00 euros
    Sub total : 78,00 euros
    How can I calculate this ?
    I have found this code on SDN but I don't know if it matches with my problem and I don't know how to use it ....Do you have an idea ?
    var fields = xfa.layout.pageContent(xfa.layout.page(this)-1, "field", 0);
    var total = 0;
    for (var i=0; i <= fields.length-1; i++) {
    if (fields.item(i).name == "PRICE") {
    total = total + fields.item(i).rawValue;
    this.rawValue = total;
    Edited by: Laure VERE on Jul 1, 2010 9:11 AM

    Hi ,
    Search for the function "sum" in formcalc in the "Adobe Livecycle Designer Help". That will solve your problem.
    It is something like
    var total = sum( TableName.RowName[*].FieldName[*])
    Thanks,
    Omkar Mirvankar.

  • Subtotal in Table Footer Appears in Body on the Next Page - Smartform

    Hi experts,
    I have a subtotal row in my table footer. It works find (appears correctly for each page). But when I check the body of the table, in page 2, there is a line with the subtotal amount from page 1, appearing in line 2. Do you guys know why does this happen and how to solve it?
    Thanks,
    Sam

    Hi Sam,
    1. Can you cross check whether you have coded anything which will modify the internal table content with the subtotal value?
    2. Did you keep any condition like printing the sub total at each new value for a particular field
    (Eg: If there is a field f1 in your internal table with values a, a, a, b, b, b, d, d, d - is there any condition to print sub total when f1value changes from a to b or b to d ? )
    Regards,
    Swarna Munkoti.

  • REGARDING TABLE FOOTER IN SMARTFORMS

    hi
    i hav to pritn 6 items in page1 and 13 items in page2 and so on.
    but while calculating total for fields
    if pages exceed more than one i hav to fill with constant value'total' for corresponing fields in table in all pages except in last page
    in last page i hav to total all the values from page1 and so on and i hav to print in the last page in table footer.
    how to do this?
    and what code i hav to write and where i hav to write it?
    wether in code lines for text or in initialization of global definitions?

    Hi,
    Another idea is to have a structure declared in the smartform with the same type of the table being displayed.
    In the table body section in the end  you can insert program lines to add the required fields in another structure or simply some fields ( declared again in global definitions ) passing the table line data just got processed.
    Then use the footer at page break option checked and the option footer at the end of table in the events tab of the table node.
    And display the totals per page and also at the end of the table.
    Hope this solves your problem.
    Ram

  • WD Table:  Repositioning Paging Buttons in Table Footer

    Is it possible to reposition the paging buttons  to appear in the right hand side of the WD table footer?  Is it possible to reposition the paging to appear in the header of the Web Dynpro Table?

    See
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/1011818d-1abe-2910-5897-f72eb59c951a
    Armin

  • Button in Table Footer?

    I have a htmlb:TableView with a footer.
    In the footer, I display a pager (..."Page x of X"...).
    Now I'd like to add a button and a textfield
    (..."show [___] lines per page [Update]").
    Because I have not much space on my screen left, I would like to add this to the table footer right next to the pages. Is there a way to put it there?

    I have a htmlb:TableView with a footer.
    In the footer, I display a pager (..."Page x of X"...).
    Now I'd like to add a button and a textfield
    (..."show [___] lines per page [Update]").
    Because I have not much space on my screen left, I would like to add this to the table footer right next to the pages. Is there a way to put it there?

  • Table footer when page break in smartform

    I put a table component into a loop control, and in the table footer, there are some texts in several lines and a command component.
    the problem is that, when there's not enough space to print the whole table footer texts in one page, the extra part of will be output in the next 2 pages.
    for example, I suppose  there are 3 pages totally. and for the first page, it's all right about the main window. when there's no enough space, the footer is still output, the rest is printed on the 2nd page. but on the 3rd page, the footer texts in the 2nd page is output again and followed main windows on the 3rd page.
    Could anyone help? Thank you in advance.

    Hi,
    Create a folder for that window and set page protection.
    Regards,
    Prashant
    Message was edited by:
            Prashant Patil

  • Table footer printed in next page without upper border line

    Hi Experts
    I am faceing a problem regarding printing of smartform. I have 2 tables under one LOOP control, TABLE2 and TABLE1 respectivelity. TABLE2 display the Header data and TABLE1 displays the Item data under Main window.
    TABLE2 has no ROWs  under table Footer section. TABLE1 has footer and I want to print the TABLE1 footer according to the page size, for that I have added a Folder under TABLE1 footer section and then create the line type under that Footer, also check the Page Protection check box. I manage to print the Footer in next page according to the page size but when the Footer goes to next page for printing the upper line border of Footer section is not dislayed.
    Please give some tips or example, how to manage the Footer at print time.

    Hi,
    Yes your problem is common because of two different line types while you are selecting the pattren the
    pattern is assuming that the pattern is selected for the entire two line types.
    solutions are
    1). Use same line type for both footer and item
    2). create a window with a template and copy the same for both the pages and put a check box
        in the conditons of your window as only after end of main window.
    3). Create windows with the lines you required with the postions(but not advisible because page numbers or line items lenghts are dynamic) .
    Thanks,
    Phani.

  • Read_text no of line in a table footer

    Hi Expert,
           With the help of Read_Text FM we get many no of lines in internal table. I want to print these lines in Table footer at smart forms main window. But my problem is that itu2019s not printing all lines.  Is there any limitation for no of lines in table footer?
    Kindly let me know the limitation for no of lines in smart form footer.
    Regard
    Swati

    Hi all,
      I tried some more on this and found its only print first 355 lines. Itu2019s wonu2019t print if no of lines 366, in such case program comes out from smart forms with out any error message.
    Regards
    Swati

  • Displaying a total sum value in the af:table - footer

    Hello everyone,
    I have seen various threads on how to calculate a summary column based on a af:column in an af:table. I would like the value of this column to be displayed in the af:table -> footer (right undernead the af:column)
    I'm having trouble putting together the pieces. This is the last requirement I have on this page, so hopefully I won't have to start all over.
    Here this what I have:
    I have created my page. (jspx) I did not create the page with a "backing bean". I have seen in various threads that the backing bean can be used to programmatically populate the table.
    This is what I have done so far.
    For the DataModel:
    I have created my entity object, and I have a view assigned to the object. I assigned the view to my Application Module.
    For the UserInterface:
    On the layout, I dragged the instance of the view from the page definition. I created an af:table.
    My questions/train of thought are:
    I didn't create a "backing bean" when I first created my jspx page. From the various threads that I have seen, they all reference this. Can anyone explain how I can do this when the page has already been created? I'm using jdev version 10.1.3.3
    Within the backing bean, I assume this is where I would then create a method that would do the "sum" of my column.
    To display the column:
    I would then create an af:output_text and drag it to theh table footer. The binding section
    If anyone has a prior thread that I haven't found that can point me in the right direction with what I already I would really appreciate it.
    Thanks

    Kuba,
    By creating a managed bean against the page definition, you are able to access the "iterator". The iterator is an object that is based off of hte View object (which the page is build off of)... From there, you can then loop through the rows and add them together to come up with the total sum.
    You can then reference this method in the TEST.java class since it was created as a managed bean.
    I believe I got the gist of it now... Coming from an Oracle Forms perspecitive, it is actually pretty similar. Now I understand what Managed Beans are used for. Thanks again for the great example.
    Danny

  • How to repeat 2 table header rows in adobe form

    Can anybody suggest me how to repeat 2 table header rows .
    one header row is for displaying only columns header list
    second header row is for displaying 'from date' and 'to date'.
    and i want this to be done using layout tab(palletes) in the form.  will it be?
    Message was edited by:
            M Madhu

    loop at ot into wa.
    at first header one
    write second header.
    endloop.
    declear one internal table append both values in come internal table .
    pass the header in comen internal table.
    Message was edited by:
            Karthikeyan Pandurangan

  • Repeating rtf table bsaed on node value

    Hi,
    I'm trying to repeat a table in my RTF template based on the value of a node found in my xml. Does anyone know if this is possible?
    Ex)
    <start>
    <name>bob</name>
    <address>123 here</address>
    <email>[email protected]</email>
    <copies>2</copies>
    </start>
    Based on this example I would want 2 seperate tables with the same information in my rtf.

    Alright, I've found a looping template that doesn't crash on me when I run it :D
    BUT
    When I go to preview it in pdf format nothing shows up.
    The document is made up as follows ((in form field) means the text is in a form field's help text):
    (in form field)
    <xsl:template name="loop">
    <xsl:param name="count" select="1"/>
    <xsl:if test="$count > 0">
    <xsl:text>
    (/in form field)
    | BIG FANCY WORD TABLE |
    (in form field)
    </xsl:text>
    <xsl:call-template name="loop">
    <xsl:with-param name="count" select="$count - 1"/>
    </xsl:call-template>
    </xsl:if>
    </xsl:template>
    (/in form field)
    (in form field)
    <xsl:call-template name="loop">
    <xsl:with-param name="count" select="//COPIES"/>
    </xsl:call-template>
    (/in form field)
    What am I missing?

  • How to repeat a table etc.

    Hello,
    I would like to know if there is any way in BI Publisher to repeat a table for a given number of times in the layout. The only information i got is the variable that tells me how many times i should repeat that table. IF conditional formatting is not an option because most likely the variable will be over 100.
    Thank you.

    Have a look at this.
    http://winrichman.blogspot.com/2008/04/long-time-no-see-to-this-blog.html
    http://winrichman.blogspot.com/search/label/Bip%20looping

Maybe you are looking for

  • Primary hard drive upgrade issues

    All this great software has finally taken its toll on the 80Gb of hard drive space that this computer came with (Just for the record, I use the primary drive for the OS and applications only -- I store all of my data on other drives). So, I need to u

  • Error While configuring PeopleSoft Listener Web Service in new OIM setup

    Hello, setup 1: I've an existing OIM 9102 BP15 install with JBOSS server. PeopleSoft Listener Web Service is setup on this environment to read Change-Based Reconciliation. setup 2: I installed a parallel OIM 9102 BP15 with Weblogic server pointing to

  • Sales report with Batch number & expiry dates

    Hello friends, would any one please help me to frame this query to achieve the above .. my query is as bellow, but I want to add the batch number & expiry dates along with the other information..... SELECT T0.[DocNum], T0.[DocDate], T0.[CardCode], T0

  • To not reload from start flash animation on web page

    Hi, I've done a nice flash animation which is in fact an ad banner. This banner should be displayed on my customer website in each pages. However, in order to be sure that customers of my client will see the whole flash animation, i would like to be

  • UPLOAD AUDIT QUESTIONS

    kindly  guide me  how to upload  audit questions  in sap system my query is sap also provide one temple in that templet what is contents to be  filled i cont understood any body work that temple  kindly  guide me in that  templet  we have filed like