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

Adobe form Print issue

Former Member
0 Likes
789

Dear Experts,

when user execute VL74 transaction spool is generating after execution of transaction and user is taking print from spool. now user is expecting to trigger print automatically after VL74 execution . i have passed all parameters to standard structure OUTPUTPARAMS even though print is not triggering automatically . Could you please help me in this.

Thanks in Advance

Sravan Kumar R

Dear Experts,

when user execute VL74 transaction spool is generating after execution of transaction and user is taking print from spool. now user is expecting to trigger print automatically after VL74 execution . i have passed all parameters to standard structure OUTPUTPARAMS even though print is not triggering automatically . Could you please help me in this.

Thanks in Advance

Sravan Kumar R

1 REPLY 1
Read only

Florian
SAP Champion
SAP Champion
702

You have to set a true to

REQIMM

and of course have a printer prefilled.

So something like that:

ls_outputparams-dest      = 'LP01'.  "Do not expect LOCL to work
ls_outputparams-nodialog  = 'X'. 
ls_outputparams-reqnew    = 'X'. 
ls_outputparams-reqimm    = 'X'.