‎2007 Aug 09 10:00 AM
hello,
i hav created report program ....in which i hav printing data in two colums(sections)
of a page....im printing first 'first column'...n then 'second one' ( i.e. im printing left side of page and then right side of page ) n i hav declaired line-count 60 ...while printing on left side if page ends due to line-count is set.....im not able to print on right of that page because page is set to next page( and it start printing from next page on right side as it is changed)...i want know that .... is it posiible to come back to previous page while printing in report program .....(as i hav mentioned problem ).....i want to know the code for that if possible....
hey see this link tht will help u to understand more
Regards,
Gajanan Galande <a href="http://www.hotlinkfiles.com/files/204004_gtvsc/SR%20NO.zip">SR NO.zip]help</a>
‎2007 Aug 09 11:08 AM
Hi,
I have a different approach to this problem. please look into this n let me know
whether u found this useful.
Considering that u have data in two different internal tables. say.itab1 n itab2,
you can use the following logic :
loop at itab1.
READ TABLE itab2 INDEX sy-tabix.
write : /5 itab1-field1, 40 itab2-field1.
endloop.
I hope this solves your problem ..reward if found useful.
Regards,
SJ
‎2007 Aug 09 11:08 AM
Hi,
I have a different approach to this problem. please look into this n let me know
whether u found this useful.
Considering that u have data in two different internal tables. say.itab1 n itab2,
you can use the following logic :
loop at itab1.
READ TABLE itab2 INDEX sy-tabix.
write : /5 itab1-field1, 40 itab2-field1.
endloop.
I hope this solves your problem ..reward if found useful.
Regards,
SJ