Oracle BI Publisher 報表分頁方法
一般報表如果想要進行分頁可以使用Word的分頁符號(CTRL+ENTER)
但這樣子最後面會出現空白頁
這時候可以使用下列方式
先在群組分頁中加上 @section
如<?for-each@section:G_PO_HEADER?>
在 <?end for-each?>前面加上<?split-by-page-break:?>
<xsl:iftest="position()<last()">
< xsl:attribute name="break-before">page</xsl:attribute>
< /xsl:if>
<?end for-each?>的前面加上<xsl:attributename="break-after">page</xsl:attribute> 此方法於RTF檔中最後面無空白頁,但PDF會有空白頁
<?end for-each?>的前面加上<xsl:attributename="break-before">page</xsl:attribute>此方法於RTF檔和PDF最後面都會有空白頁
但這樣子最後面會出現空白頁
這時候可以使用下列方式
先在群組分頁中加上 @section
如<?for-each@section:G_PO_HEADER?>
在 <?end for-each?>前面加上<?split-by-page-break:?>
<xsl:iftest="position()<last()">
< xsl:attribute name="break-before">page</xsl:attribute>
< /xsl:if>
<?end for-each?>的前面加上<xsl:attributename="break-after">page</xsl:attribute> 此方法於RTF檔中最後面無空白頁,但PDF會有空白頁
<?end for-each?>的前面加上<xsl:attributename="break-before">page</xsl:attribute>此方法於RTF檔和PDF最後面都會有空白頁
留言
張貼留言