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

Create multiple spool

Former Member
0 Likes
393

Hi expert,

I would like to send payment advices to vendors via FAX.

I run the payment program, which triggers a background job and produces 1 spool with payment advices for all the selected vendors.

The faxes cannot be sent. They are blocked because there are many different fax numbers in the spool.

How can I create 1 spool per vendor?

Do you have any experience?

Thank you for your feedback.

Kind regards,

Linda

2 REPLIES 2
Read only

Former Member
0 Likes
356

Hi Belinda,

We can control the spool creating parameters programatically .

Looping at the list of vendors and assign the parameters of structure ssfctrlop to control the spool creation.

wa_ctrl_params is of type ssfctrlop

like wa_ctrl_params-no_open = 'X'. and keep open the same spool

One of the way i think.

Regards

Poornima

Read only

Former Member
0 Likes
356

Hi,

You can do it this way.

data: wa_ctrl_params LIKE ssfctrlop.

At end of vendor

populate print paramters , control parameters

wa_ctrl_params-no_close = space.

wa_ctrl_params-no_open = space.

call the smart form.

endat.