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: 

To convert report output from A4 page to A3 page

Former Member
0 Kudos

Hi to all

I am modifying the comparative statement report (For different vendors and items) which is in A4 page.

now i want to convert it in A3 page size.

Plz tell me what's the line-size, line count and different changes i have to do .

Thanks & Regards

Anubhav

4 REPLIES 4

Former Member
0 Kudos

Hi ,

You can set a element variable . While using ' write ' , you can multiply it after 'at' . For Example :

******************************************************

data : i type i ,

page(2) .

*...

if page = 'A3'

i = 10 .

else .

i = 15 .

endif .

perform mywrite using 10 'abc' .

form mywrite using i_pos s_value .

data j type i .

j = i * i_pos .

write : at j s_value .

endform.

0 Kudos

Plz tell me what is the length and width of A3 page.

0 Kudos

Hi,

A3 00297 MM width 00420 MM height

0 Kudos

Plz tell me in no of characters.

How many rows and columns.

Thanks