‎2008 Feb 27 5:59 AM
In my script in window i need that only 15 line items should print.
If line items are greater than 15 they should move to nxt page.
How to do so. plz guide
i hav done this
form blank_lines.
vb1 = 15 - vb .
do vb1 times.
call function 'WRITE_FORM'
exporting
element = 'BLANK_LINE'
WINDOW = 'MAIN'
exceptions others = 1.
enddo.
vb = 0.
vb1 = 0.
endform. " BLANK_LINES
‎2008 Feb 27 9:35 AM
Hi Abhut,
Adjust your window size to accommodate 15 lines only, so the remaining lines( from the 16th line) will carried out to the next page automatically.
Regards,
Sunil.
‎2008 Feb 27 9:35 AM
Hi Abhut,
Adjust your window size to accommodate 15 lines only, so the remaining lines( from the 16th line) will carried out to the next page automatically.
Regards,
Sunil.
‎2008 Mar 03 6:46 AM