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 Block

Former Member
0 Likes
438

Hi experts,

I need to hide a key field (ERDAT) in the output of a Block ALV ; how could I do this ?

I can't refer this field to another table in which is not key field and I've already used 'NO_OUT = 'X' but nothing...I need something else I suppose...

Thanx in advance !

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
415

Key_sel (hide-able key column): This parameter is only relevant for the fields which are made key fields using FIELDCAT-KEY = 'X'. Using this parameter the Key field can be hidden interactively.

The key column sequence cannot be changed interactively by the user. The output is controlled by the FIELDCAT-NO_OUT parameter analogously to non-key fields.

Value set: SPACE, 'X'.

No_out (field in field list): This parameter is used to remove certain fields from the output during initial display. The user can however interactively choose the field for output from the field list in the display variant. 'X' = field is not displayed in the current list.

Value set: SPACE, 'X'.

2 REPLIES 2
Read only

Former Member
0 Likes
415

Hi Marco,

I think in field-catalog for this particular field if you give NO_OUT = 'X', it should work. There is nothing else that you need to do.

Check that part of code again. May be you can debug and before calling this ALV function module, check this particular field in field catalog table. There might be some minor part that you might have over-looked

Best Regards,

Ram.

Read only

Former Member
0 Likes
416

Key_sel (hide-able key column): This parameter is only relevant for the fields which are made key fields using FIELDCAT-KEY = 'X'. Using this parameter the Key field can be hidden interactively.

The key column sequence cannot be changed interactively by the user. The output is controlled by the FIELDCAT-NO_OUT parameter analogously to non-key fields.

Value set: SPACE, 'X'.

No_out (field in field list): This parameter is used to remove certain fields from the output during initial display. The user can however interactively choose the field for output from the field list in the display variant. 'X' = field is not displayed in the current list.

Value set: SPACE, 'X'.