‎2007 Nov 15 8:24 AM
I have a report using REUSE_ALV_LIST_DISPLAY to display the result.
Then use 'PRINT' button on the standard tool menu. After click the print button , pop up a print parameters dialog box.
How can i surppress this dialog box using my default value ? For example: device type and output format and so on.
In the report , i tried use LINE-SIZE and LINE-COUNT to control the output format, but failed.
If the dialog box can't be suppress, how can i control the output format like 'X_90_120'.
Point will be rewarded if useful. Thanks.
‎2007 Nov 15 8:29 AM
Hi
U can transfer some print parameters by ALV function parameter IS_PRINT
Max
‎2007 Nov 15 8:32 AM
Hi
do this and try
data: w_ctrlop TYPE ssfctrlop.
w_ctrlop-getotf = 'X'.
<b>w_ctrlop-no_dialog = 'X'.</b>
w_compop-tdnoprev = 'X'.
Regards
Anji
‎2007 Nov 15 8:36 AM
Hi Anji
the parameter you provide maybe use in smartform.But i use ALV LIST to display report then print.
Thanks all the same.
‎2007 Nov 15 8:34 AM
thanks for you reply.
But the parameter IS_PRINT don't contain information that i need such as page formate. I am using this parameter to control ALV statistics.
Any one ever encounted this problem?
‎2007 Nov 15 8:49 AM