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: 

ALV - How to hide yellow color in first cell

Former Member
0 Kudos

Hello ALV experts!

I am using 7 ALV layouts in one screen with one main screen and 6 small layouts with nine cells each. My objective is to enter data data in main ALV which updates the cells in the remaining ALV layouts.

In all the six ALV alyouts, I am getting the first cell with yellow color (highlighted) which makes screen look awkward. Do you have any idea how to hide that color. ALso I would apprecaite if any of you know how to make the column fixed (when you pull the vertcal line between columns, it should not move).

I am using OOPS ALV grid control.

thanks!

Senthil

1 REPLY 1

Former Member
0 Kudos

Hi,

TO fix a column, in the filedcatalogfor the particular column which u want to fix give as

DATA: fcat LIKE LVC_S_FCAT.

fcat-fieldname  = 'MATNR'.
fcat-<b>FIX_COLUMN = 'X'.</b>

Hope this helps.