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

Script: print screen

Former Member
0 Likes
1,001

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
Read only

madan_ullasa
Contributor
0 Likes
959

Hi,

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

Regards,

Madan...

6 REPLIES 6
Read only

madan_ullasa
Contributor
0 Likes
960

Hi,

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

Regards,

Madan...

Read only

0 Likes
959

HI Madan,

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

Regards

Sunita.

Read only

0 Likes
959

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...

Read only

0 Likes
959

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.

Read only

0 Likes
959

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

Rgds,

Madan...

Read only

madan_ullasa
Contributor
0 Likes
959

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..