ABAP 물타기/ALV
alv column width optimize
물타기
2013. 6. 4. 11:03
1. grid layout 에서 설정
gs_layout-cwidth_opt = 'X'.
2. colum fieldcatalog 에서 설정
해당 컬럼에서 다음 값을 설정한다.
gs_fieldcat-col_opt = 'X'.
3.이벤트설정call method go_grid->set_frontend_layout
exporting is_layout = gs_layout_i.
ls_stable-row = 'X'.
ls_stable-col = 'X'.
thod go_grid->refresh_table_display
exporting is_stable = ls_stable.
ㅇ
gs_layout-cwidth_opt = 'X'.
2. colum fieldcatalog 에서 설정
해당 컬럼에서 다음 값을 설정한다.
gs_fieldcat-col_opt = 'X'.
3.이벤트설정call method go_grid->set_frontend_layout
exporting is_layout = gs_layout_i.
ls_stable-row = 'X'.
ls_stable-col = 'X'.
thod go_grid->refresh_table_display
exporting is_stable = ls_stable.
ㅇ