‎2006 Aug 30 11:31 PM
Hi
i am working with customer statement.I am using t.code F.27.In that I am specifying all data for execution.I am executing.I am getting spool numbers.With those I is directly giving to printer to print statement.i dont have printer I want to see print view os script.
How can I see print view of script.
Please guide me.
Thanks
‎2006 Aug 30 11:40 PM
‎2006 Aug 30 11:43 PM
Hi kishore,
Yes I tried with lp01.I am getting same result.
Thanks
‎2006 Aug 30 11:46 PM
or else you also can try this method...
set the ITCPO-TDPREVIEW = X and pass this to your open_form parameters.
example something like this.....>
data printparams type itcpo
printparams-tdpreview = 'X'.
call function 'open_form'
EXPORTING FORM = form-name
LANGUAGE = 'E'
OPTIONS = printparams
DEVICE = XDEVICE
DIALOG = XDIALOG
EXCEPTIONS CANCELED = 01.
IF SY-SUBRC NE 0.
ENDIF.
‎2006 Aug 30 11:51 PM
But I am using stadard print program.How is it possible.
Thanks