Type-pools: icon.
data: begin of itab occurs 0,
status(4) type c,
fld1 type c,
fld2 type c,
end of itab.
Now all you need to do is write the icon to the field when filling the internal table.
data: begin of itab occurs 0,
status(4) type c,
fld1 type c,
fld2 type c,
end of itab.
Now all you need to do is write the icon to the field when filling the internal table.
write icon_green_light as icon to itab-status.