Application Development 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: 

Job getting scheduled but printer error

Former Member
0 Kudos

In my code the job is getting scheduled with proper variant but the following error comes when the code is executed. I don't need spool to be printed but only it should be generated.

"Printer not suitable for job step. Automatic printing not possible."

What to do for such error?

2 REPLIES 2

former_member283648
Participant
0 Kudos

Hi,

I am not sure if you are setting up the job for schedule. In any case there is a printer parameter "Do not Print the job Directly". you can try to set this parameter which will ensure the job is directly sent to printer. If you are setting the job from T-Code SM36 it is available as a parameter while u define the job schedule steps. Otherwise if you are using any FM then it will be one of the input parameters. let me know if it works

Former Member
0 Kudos

Hi,

in job_submit FM u hav an parameter PRIPARAMS which controls printing....

data wa_PRIPARAMS type PRI_PARAMS.

wa_PRIPARAMS-primm = ' '.

job_submit

exporting

....

PRIPARAMS = wa_PRIPARAMS

....

Cheers,

Will.