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

ALVs - Block display

Former Member
0 Likes
327

Hi,

Could anyone tell me if it is possible to edit fields in ALV block display?

Thanks in advance

Radhika

Hi,

Could anyone tell me if it is possible to edit fields in ALV block display?

Thanks in advance

Radhika

1 REPLY 1
Read only

Former Member
0 Likes
308

Just check it out in the function pool SLIS the following.

TYPES: BEGIN OF SLIS_FIELDCAT_ALV_SPEC,

KEY_SEL(1) TYPE C, " field not obligatory

NO_SUM(1) TYPE C, " do not sum up

SP_GROUP(4) TYPE C, " group specification

REPREP(1) TYPE C, " selection for rep/rep

*INPUT(1) TYPE C, " input*

EDIT(1) TYPE C, " internal use only

HOTSPOT(1) TYPE C, " hotspot

END OF SLIS_FIELDCAT_ALV_SPEC.

TYPES: BEGIN OF SLIS_FIELDCAT_ALV.

INCLUDE TYPE SLIS_FIELDCAT_MAIN.

INCLUDE TYPE SLIS_FIELDCAT_ALV_SPEC.

TYPES: END OF SLIS_FIELDCAT_ALV.

Regards,

Sankar.