Application Development and Automation 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: 
Read only

Spool Requests

Former Member
0 Likes
529

Hello,

I run tx-VF31 (u201CPrint immediatelyu201D option of printer settings is unchecked). As a result, only one Spool Request is created and all the messages (outputs) are filled in this unique Spool Request. Is it possible to create one Spool Request for each message? I am using Smartforms and I have modified the parameters of its interface without success. The following parameters have been modified to u2018Xu2019:

OUTPUT_OPTIONS- TDNEWID

OUTPUT_OPTIONS- TDFINAL

Thanks in advance,

Ricard.

Edited by: Oscar Barrabes on Feb 23, 2009 9:22 AM

3 REPLIES 3
Read only

Former Member
0 Likes
489

Hi,

i have done the same thing for my requirement:

please check the below code:

NEW-PAGE NO-TITLE

PRINT ON LINE-COUNT '65'

NO DIALOG

LINE-SIZE '80'

DESTINATION 'XEROX1'

IMMEDIATELY ' '

KEEP IN SPOOL 'X'

LAYOUT 'X_65_80'.

SET BLANK LINES ON.

WRITE: / 'Date: ',06 sy-datum,

20 'Time: ',26 sy-uzeit,

40 'Page No: ',49 sy-pagno.

ULINE.

LOOP AT it_errmsg INTO lv_msg.

WRITE: / lv_msg.

ENDLOOP.

SET BLANK LINES OFF.

NEW-PAGE PRINT OFF.

By looping the messages what u r getting individually.....u will get all those messages in one spool request.

Regards,

Dara.

Read only

kamesh_g
Contributor
0 Likes
489

Hi

Have you checked in NACE about configuration . can you explain clearly what your problem is exactly .

and assure that your message type is assigned to print output in NACE or not .

Read only

Former Member
0 Likes
489

Hello Kamesh,

I want to create one Spool Request for each message because I need to sort them by pages occupied. Every spool request contains the total pages occupied. When the user selects several Spool Requests, these ones have to be sorted by its total pages. The problem is that VF31 only creates one Spool Request (and I need one Spool Request for each message) for all the messages.

Thanks in advances,

Ricard.