ALV值存放图标

LOOP AT gt_head INTO gw_head.
    CALL FUNCTION 'ICON_CREATE'
      EXPORTING
        name                  'ICON_LIST'
        text                  text-001
        info                  text-001
      IMPORTING
        result                = gw_head-operate
      EXCEPTIONS
        icon_not_found        1
        outputfield_too_short 2
        OTHERS                3.
    MODIFY gt_head FROM gw_head TRANSPORTING operate.
  ENDLOOP.

原文地址:https://www.cnblogs.com/lingxiaoj/p/12035078.html