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: 

Primary Key color in ALV

Former Member
0 Kudos

Dear All,

I want to remove primary key color which comes as blue by default in ALV.

Edited by: AbhaySingh on Aug 28, 2009 8:49 AM

2 REPLIES 2

Former Member
0 Kudos

Hi,

Try with KEY in fieldcatalog :

wa_fcat-key = SPACE. for that field. I am not sure it is working or not.

Former Member
0 Kudos

Hi ,

Define filed catalog as

e.g -

FIELDCATALOG-FIELDNAME = 'ANLN1'.

FIELDCATALOG-SELTEXT_M = 'Asset Number'(017).

FIELDCATALOG-COL_POS = 1.

FIELDCATALOG-KEY = ' '. <----


change 'X' to space as shown

APPEND FIELDCATALOG TO FIELDCATALOG.

CLEAR FIELDCATALOG.