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

Former Member
0 Kudos

IS IT POSSIBLE TO HIDE COLUMNS IN ALV LIST

6 REPLIES 6

0 Kudos

Hi.

Add a field catalog for the fields you want to hide and set

NO_OUT = 'X.

Regards,

Sesh

Former Member
0 Kudos

hi,

Enable

NO_OUT = 'X'.

Regards,

Santosh

Former Member
0 Kudos

<b>yes</b> it is possible to hide the fied .

by changing the <b>Change layout icon</b> in the <b>ALV application bar </b> move the fields from <b> Display set to coulmn s</b>et .

reward points if it is usefull ....

Girish

uwe_schieferstein
Active Contributor
0 Kudos

Hello Timothy

If you just do not want to display columns at the first display of the ALV list then set <b>NO_OUT = 'X' </b>in the fieldcatalog for the requested columns. These columns are still visible in the layout and can be added to the ALV list by the user.

If you want to completely "hide" columns, i.e. they are neither visible on the ALV list nor the layout, the set <b>TECH = 'X'.</b>

Regards

Uwe

p244500
Active Contributor
0 Kudos

hai

<b>u can do it like this</b>

FIELDCATALOG-FIELDNAME = 'LTRMI'. " table name

FIELDCATALOG-SELTEXT_M = 'Confirm Date'. " feild name

FIELDCATALOG-COL_POS = 4.

FIELDCATALOG-OUTPUTLEN = 18.

FIELDCATALOG-EDIT = ''.

<b>FIELDCATALOG-NO_OUT = 'X. " for the hide feild</b>

APPEND FIELDCATALOG TO FIELDCATALOG.

CLEAR FIELDCATALOG.

regard

nawa

Former Member
0 Kudos

hi

good

If this field is set, the ALV Grid Control color-codes the column as a key field and fixes this column during horizontal scrolling. The order of the key columns in the ALV Grid Control can be modified interactively. In contrast to the SAP List Viewer, the ALV Grid Control allows you to directly hide key columns with NO_OUT (field KEY_SEL is not used).

go through this link

http://help.sap.com/saphelp_erp2004/helpdata/en/17/102896f24311d2b487006094192fe3/content.htm

thanks

mrutyun^