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

Help on ALV LIST(Basic list) print

Former Member
0 Likes
631

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.

5 REPLIES 5
Read only

Former Member
0 Likes
578

Hi

U can transfer some print parameters by ALV function parameter IS_PRINT

Max

Read only

Former Member
0 Likes
578

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

Read only

0 Likes
578

Hi Anji

the parameter you provide maybe use in smartform.But i use ALV LIST to display report then print.

Thanks all the same.

Read only

Former Member
0 Likes
578

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?

Read only

Former Member
0 Likes
578

Can anyone provide me a solution? Thanks first.