Process to restrict number of rows per page in xml reports by using following command
Let us take example if you want show 5 records per page you can use follow tag and place this tag before ending loop shown image
<?if:position() mod 5 =0?> <xsl:attribute name=”break-before”>page</xsl:attribute> <?end if?>
Here position key word is used to find the logical position of particular records
Report Output:
Thank You.
Recent Posts