Application Development and Automation 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: 
Read only

URGENT!!!!! Report Program

Former Member
0 Likes
295

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>

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
278

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

1 REPLY 1
Read only

Former Member
0 Likes
279

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