Application Development Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 

LIMIT THE NUMBER OF LINES IN OUTPUT

Former Member
0 Kudos

HI ALL,

I NEED THE LOGIC TO LIMIT THE NUMBER OF LINES PER PAGE.

my requirement is i was jenarated a report and its got nearly 100 lines output

but i client want to see it only 10 lines per page.

thx in advance.

Sunil

1 ACCEPTED SOLUTION

Former Member
0 Kudos

REPORT ZTEST <b>LINE-SIZE 10</b>.

2 REPLIES 2

Former Member
0 Kudos

Hello Sunil,

You could do it using the LINE-COUNT 10 in the report statement.

REPORT ZXXX LINE-COUNT 10.

This will write only 10 lines per page.

Vasanth

Former Member
0 Kudos

REPORT ZTEST <b>LINE-SIZE 10</b>.