cancel
Showing results for 
Search instead for 
Did you mean: 

smart forms- how to get the copies of form in other pages as duplicate

Former Member
0 Kudos

hi experts,

i am facing problem in smartforms.

one copy is ready for me.

i have to take that one in 4 pages as 1st page original,

2nd duplicate, 3rd triplicate, 4th quadriplicate.............

how to get them....

all theremaining data is same ....

Message was edited by:

dasr r

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

U can achieve this with the help of NAST table,

in that table field ANZAL is the field for number of copies of the output.

Suppose u have a smartform which will print 3 pages for a Purchase Order,

and u want 4 copies of the same. (totally 3*4 = 12 pages)

U need to handle this in the smart form ifself with the help of ANZAL field, it holds number of copies to be printed on the output device.

if ANZAL = 1

print 'original'.

elseif ANZAL = 2

print 'Duplicate'.

elseif ANZAL = 3

print 'Triplicate'.

elseif ANZAL = 4

print 'Quadriplicate'.

endif.

or else u can handle the same with CASE ... ENDCASE.

I think, it may solve ur problem.

Regards,

Sujatha.

Former Member
0 Kudos

HI SUJATHA I GOT THE SOLUTION FOR IT,

but i did not followed the method suggested by u.

i have soem confusion in using that one......

but any way it is solved..............

thanks alot......

dasrreddy.

Former Member
0 Kudos

Hi das,

could you please tell me the logic you have used. I am also facing the same problem.

Former Member
0 Kudos

Hi das,

This is Anil,i want copies for pages in scripts.example if there are 10 pages,i am getting 1/10,2/10...10/10.suppose i want 3 copies for these pages like 1/3,2/3,3/3 like that.can u provide me the answer plz ASAP.

Former Member
0 Kudos

1.create a window of type Copies.

2.create two text and give the condition as SFSY-COPYCOUNT = 1 then print as original

else SFSY-COPYCOUNT = 2 then print as copy.

Former Member
0 Kudos

Hi shanta,

I have taken anzal from nast table and i have given in a window as 'copy : &nast-anzal&' then i got '/3' in copy.

it means i got the total no of copies,but i am not able to get the current copy in that.can u kindly suggest me,

thank you,

Anil.

Answers (2)

Answers (2)

Former Member
0 Kudos

Hi

could you please tell me the logic you have used. I am also facing the same problem.

Former Member
0 Kudos

Hi Dasr,

Regards,

Sravanthi

Former Member
0 Kudos

can u provide the exact way how to get the current copy for the copies.i got total no of copies '/3' but i count get current copy.