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

ALV Grid Display

Former Member
0 Likes
552

Hi All,

I want to remove the vertical lines in the fieldcatalog.How can i remove the lines in the grid display.

Thanks.

Hi All,

I want to remove the vertical lines in the fieldcatalog.How can i remove the lines in the grid display.

Thanks.

4 REPLIES 4
Read only

former_member491305
Active Contributor
0 Likes
535

Hi,

Give Layout-NO_VLINE = 'X' in layout structure of the ALV FM.

Read only

Former Member
0 Likes
535

<b>If the layout structure is X_LAYOUT, then pass

X_LAYOUT-no_VLINE = 'X'.</b>

Read only

Former Member
0 Likes
535

HI,,

DO THE FOLLOWING:

DATA: is_layout TYPE slis_layout_alv.

IS_LAYOUT-no_vline = 'X'.

THEN PASS THIS TO YOUR CALL FUNCTION:

CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'

EXPORTING

it_fieldcat = gt_fieldcat[]

i_callback_program = g_repid

i_save = 'A'

is_layout = is_layout

TABLES

t_outtab = lt_order.

Read only

Former Member
0 Likes
535

Hi Swapna,

use this in the layout structure.

Layout-NO_VLINE = 'X' .

Reward if Useful.

Regards,

Chitra