‎2009 Jun 22 1:52 PM
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
‎2009 Jul 22 10:42 AM
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
‎2009 Jul 22 11:04 AM
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.