ALV 필드 내에 버튼을 생성하여 사용하는 방법에 대해 알아보겠습니다. 1. 테이블내에 STYLE 필드 추가 DATA : BEGIN OF gt_disp OCCURS 0, matnr LIKE mara-matnr, cellstyle TYPE lvc_t_styl, END OF gt_disp. 2. ALV LAYOUT 선언 GS_LAYOUT-STYLEFNAME = 'CELLSTYLE'. *대문자 3. 셀속성 지정(버튼) DATA : ls_cellstyle TYPE lvc_s_styl. *예시: gt_disp-matnr이 ‘TEST’ 일때만 버튼으로 만들기 LOOP AT gt_disp. IF gt_disp-matnr = ‘TEST’. CLEAR: ls_cellstyle. ls_cellstyle-fieldname ..