How do I print the text "Continuing ..." on all pages except the last page in an XML Publisher report? This is not a general requirement in reports.

How do I print the text "Continuing ..." on all pages except the last page in an XML Publisher report? I wanted to share a solution with screenshots so that in the future this can be translated directly and can be implemented.

+3


source to share


1 answer


We had a requirement in one of the reports to print the text "Continued ..." on all pages except the last page in the XML Publisher report. After putting in the technicians, I was able to achieve it like this:

  • In the Form "init pt" field, we need to add the following text:

    <? init-page-total: pt? >

  • In the "close_pt" field of the form field, add the following text:

    <? End of page summary: PT>

  • In the Move Forward field, we need to add the text below:

<xdofo: inline-total display-condition = "exceptlast" name = "pt"> Continued ... </ Xdofo: inline total>

  1. In the footer section, we'll name the template like this:


<? Call Template: CarryFwd>

This will print the text "Continuing ..." on all pages except the last page.

Form Field placement

Footer section

0


source







All Articles