‎2007 Aug 09 12:06 PM
Hi
i m sending my script output through mail. my doubt is that whenever i execute the program ,it is displaying the screen asking for input ( where we select to display print preview). i want to skip this screen and send the mail derectly to the specified mail ID.
could you plz send me the solution..your answers will be more helpful..
thanks & Regards
ravindra
‎2007 Aug 09 12:12 PM
Hi Ravindra,
Pass the parameters to ITCPO of OPEN_FORM or START_FORM function module.
Set ITCPO-TDPREVIEW = ' ' or ITCPO-TDNOPREV = 'X' and this ITCPO to the function module and this prevents the preview.
Thanks,
Vinay
‎2007 Aug 09 12:12 PM
Hi Ravindra,
Pass the parameters to ITCPO of OPEN_FORM or START_FORM function module.
Set ITCPO-TDPREVIEW = ' ' or ITCPO-TDNOPREV = 'X' and this ITCPO to the function module and this prevents the preview.
Thanks,
Vinay
‎2007 Aug 09 12:16 PM
Hi..
To avoid the Display of input Screen.
You have to Pass the Parameter called OPTIONS in the OPEN_FORM FM.
OPTIONS is of Structure ITCPO
Data : WA_OPTIONS type ITCPO.
WA_OPTIONS-TDPREVIEW = ' '.
or
WA_OPTIONS-TDNOPREVIEW = 'X'.
Then pass WA_OPTIONS to the Format parameter OPTIONS.
<b>Reward if Helpful</b>
‎2007 Aug 09 12:20 PM
Hi,
You can set the ITCPO-TDNOPREV= 'X' then this Popup wil suppress
Regards
Sudheer