cancel
Showing results for 
Search instead for 
Did you mean: 

Creating spool requests

Former Member
0 Kudos

Hi Friends,

I have to print like 5000 checks . In my custom program I need to create new spool for every 1000 checks so that I can send them to 5 printers from the Spool .

Please advise What paramenters I need to take care of .

Thanks,

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

You can write simple logic ,just fill the ITCPO Structure in OPEN_FORM FM's

count the records in internal table.

if internal table data reaches 1000 records then use below logic.

if i_data-count = 1000.

itcpo-tddest = p_print.

itcpo-tdnewid = 'X'.

itcpo-tdpreview = 'X'.

itcpo-tdimmed = 'X'.

itcpo-tdcopies = '1'.

endif.

call function 'OPEN_FORM'

exporting

device = 'PRINTER'

dialog = ' '

form = 'ZAUTO_REPLPRINT'

language = sy-langu

options = itcpo.

Thanks

Seshu

Answers (0)