cancel
Showing results for 
Search instead for 
Did you mean: 

Smartform Print Options

harri_kishan
Participant
0 Kudos

hi,

I have done a smartform and the requirment is that when i execute the transaction i see the print options

in that i need to check the delete after output means the smartform once printed should be deleted from spool

and the number of copies should be 1 so once i execute the transaction i should get a check in the delete after output and number of copies 1 with all in grey mode so tht no manual editing can be done in order to print multiple pages of they same form or printing the form from the spool. i have passed the options to the driver program however i was not able to grey it out. Is it a possible procedure let me know ?

Thank you

Accepted Solutions (0)

Answers (1)

Answers (1)

naimesh_patel
Active Contributor
0 Kudos

Instead of the greying out, you can suppress the Print Screen after passing the required options.

Like:


* Control Parameter
* to remove the dialog print screen
  E_CONTROL-NO_DIALOG   = 'X'.

* Output parameter
* for one copy
  E_OUTPUT-TDCOPIES  = 1.

* To delete after print
  E_OUTPUT-TDDELETE = 'X'.

Regards,

Naimesh Patel

harri_kishan
Participant
0 Kudos

Thanks