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: 

Script: print screen

Former Member
0 Kudos

HI Experts,

my requirement is that in my script i want to skip the print screen option .when i run my driver program its a custom developed driver program so i want to keep these print screen option in background.

correct answers will be appreciated.

Regards,

Sunita.

1 ACCEPTED SOLUTION

madan_ullasa
Contributor
0 Kudos

Hi,

Use 'OPTIONS' parameter of OPEN_FORM to control the print screen options..

Regards,

Madan...

6 REPLIES 6

madan_ullasa
Contributor
0 Kudos

Hi,

Use 'OPTIONS' parameter of OPEN_FORM to control the print screen options..

Regards,

Madan...

0 Kudos

HI Madan,

Can you please tell me more clearly.what exactly i need to do.

Regards

Sunita.

0 Kudos

data : t_ITCPo like itcpo occurs 0 with header line.

t_itcpo-TDdest = 'LOC1'.

t_itcpo-TDPRINTER = 'SAPWIN'.

t_itcpo-TDPREVIEW = 'X'.

t_itcpo-TDNOPRINT = 'X'.

t_itcpo-TDIMMED = 'X'.

t_itcpo-TDDELETE = 'X'.

t_itcpo-TDNEWID = 'X'.

append t_itcpo.

You can pass these values to the structure you have defined in your program.... The above field i have used is just for your example.....

Check the structure itcpo for more details...

Regards,

Madan...

0 Kudos

Hi Madan,

thnx for the early reply . can u plz tell me which one is the correct answer as u hav given me 2 amswers.

Thanks.

Regards,

Sunita.

0 Kudos

All are the correct answer... its just an extension of the first....check out all my replies...

Rgds,

Madan...

madan_ullasa
Contributor
0 Kudos

Hi,

And use 'DIALOG' = ' '.

Dont pass a value to this... this will suppress the print screen options....

The values to the print screen options can be passed in 'OPTIONS' parameter as i have mentioned in my earlier reply...

This should your issue....

Regards,

Madan..