Application Development 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: 

REUSE_ALV_LIST_DISPLAY

Former Member
0 Kudos

How to compress the size of the output screen displayed by the function module 'REUSE_ALV_LIST_DISPLAY'.? I tried using colwidth_optimize = 'X, it compress the field but I need to compress screen as I have only one field in thse screen.

Thnx

3 REPLIES 3

former_member200338
Active Contributor
0 Kudos

Hi,

while buliding field catlog, use the attribute outputlen.

Example:

wa_fieldcatalog-fieldname = 'NUMBER'.

<b>wa_fieldcatalog-outputlen = '10'.</b>

wa_fieldcatalog-col_pos = '1'.

wa_fieldcatalog-seltext_m = 'NUMBER'.

APPEND wa_fieldcatalog TO it_fieldcatalog.

Regards,

Niyaz

Former Member
0 Kudos

in the Fm u have some screen start coulm and end colum...

just pass this values and i think u work is done

Former Member
0 Kudos

Try to use this field min_linesize max_linesize in layout workarea.

Please reward if useful.