‎2009 Mar 06 1:36 PM
hi there,
i have an internal table:
DATA: BEGIN OF gt_alv_out OCCURS 100.
INCLUDE STRUCTURE zzfl_fehler_prot.
* chk(1) type c.
DATA: END OF gt_alv_out.well, i want to add the field chk to the internal table. but this is not working.
i can NOT add the field to the structure zzfl_fehler_prot.
how to handle this ?
reg, Martin
‎2009 Mar 06 1:37 PM
Give Data Declaration again.
DATA: BEGIN OF gt_alv_out OCCURS 100.
INCLUDE STRUCTURE zzfl_fehler_prot.
Data chk(1) type c.
DATA: END OF gt_alv_out.
‎2009 Mar 06 1:37 PM
Give Data Declaration again.
DATA: BEGIN OF gt_alv_out OCCURS 100.
INCLUDE STRUCTURE zzfl_fehler_prot.
Data chk(1) type c.
DATA: END OF gt_alv_out.
‎2009 Mar 06 1:44 PM
hi looks like you wanted a checkbox in ur alv output...
in the layout use the field name like this... and pass Layout to Reuse* FM
layout-box_fieldname = 'CHK'.