Output frequency in Design Studio is setup by changing the settings of either the format or the channel (e.g. a printer). When you change the Output frequency of the channel it will influence the amount of Queues send to the printer. When you make this the same as the Break field, this will create a queue for every document. If you leave it to the default it will process the whole input file before it prints every document as one queue.

Other ways to change the output frequency, are available in the options of the channel, but you can also create a special version of your own. This code will count the outgoing pages and then will close the queue after about 200 pages.

Put this code in the Code After of the format.

Please note that i did not test this code yet. I have created an implementation somewhere, and it works like this. If you have tried this code please Click Edit in the top right on this page to remove this line


LET globals::OutPageCounter = globals::OutPageCounter + 1
IF @@Page = @@TotalPages THEN
  IF globals::OutPageCounter > 200 THEN
    LET globals::OutPageCounter = 0
    CLOSE OUTPUT
  END IF
END IF



Gesponsorde koppelingen