cancel
Showing results for 
Search instead for 
Did you mean: 

Printing 2 Copies Per Page

Former Member
0 Kudos

Hi Experts,

I have a requirement to Print 2 Copies Per Page in Smart form.

Can you Please help me on this.

Regards

Manjari

Accepted Solutions (0)

Answers (4)

Answers (4)

Former Member
0 Kudos

Hi Madhukar,

Even if i got the no of Copies my req is to get both the Copies on one Page

1 copy should come in one half and in another half Print another Copy.

Regards

Manjari

Former Member
0 Kudos

Hi,

Ok so u can go with what surya has given or else you can set a counter and give a main window for full page and depending on the counter it will print the data twice on single page.

Regards,

Madhukar Shetty

Former Member
0 Kudos

Hi Surya,

Is there any other options?

Like changing the settings

Former Member
0 Kudos

hi,

Try the OUTPUT_OPTIONS-TDCOPIES paramter pass the no of copies you want .

And use the system field sfsy-copycount or sfsy-copycount0 to get which copy is printing .

Regards ,

Madhukar Shetty

Former Member
0 Kudos

Hi

This is the only option, this how we print LABEL Printing . define similar windows and pass flag .

Former Member
0 Kudos

hi

create similar windows per page, as this cannot be achived by Copes window or others, since u want to print the same stuff twice in the same page . divide the page into 2 windows and pass the a Flag to print the next window and so on and the next page similar to first page which has 2 windows side by side..

surya

Former Member
0 Kudos

Hi Manjari

Use copies window and write below logic in program lines.

if sfsy-copycount = 001.

text = 'customer copy'.

elseif sfsy-copycount = 002.

text = 'company copy'.

endif.

Regards

Murali Papana.