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

Stop Print while converting PDF

Former Member
0 Likes
445

Hi All,

As per following link instructions I'm converting SAP script to PDF... it's working fine... But there is small problem... before getting 'Save to local Directory' pop up..

I'm getting 'Print' pop up as well....I don't want to this print popup...

is there anyway we can restrict this by passing any extra parameter to

OPEN_FORM function module...

https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/49e15474-0e01-0010-9cba-e62df824...

Thanks in advance...

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
423

Hi ,

try like this,,


call function 'OPEN_FORM'
 exporting
   dialog                            = space  "Add this line
   form                              = 'ZFORM'

2 REPLIES 2
Read only

Former Member
0 Likes
424

Hi ,

try like this,,


call function 'OPEN_FORM'
 exporting
   dialog                            = space  "Add this line
   form                              = 'ZFORM'

Read only

Former Member
0 Likes
423

Hi Sapsudha rao,

U need to pass the following fields in the importing parameter <b>OPTIONS</b>:

TDDEST " Output device = LOCL

TDPRINTER " Printer name

TDIMMED " =X

And in the importing parameter DIALOG : MAke it X.

Thank you.

Reward points if found useful.