ALV Grid 셀변경시 자동반영 되도록ALV Grid 셀변경시 자동반영 되도록
Posted at 2008/06/20 21:51 | Posted in Job/ABAP
ALV 샘플 : BCALV_EDIT_04
그 예제의 문제점이
*§3.Optionally register ENTER to raise event DATA_CHANGED.
* (Per default the user may check data by using the check icon).
call method g_grid->register_edit_event
exporting
i_event_id = cl_gui_alv_grid=>mc_evt_enter.
bcalv_edit_03 에 보면 저부분이 잇거든 만약 위처럼
i_event_id = cl_gui_alv_grid=>mc_evt_enter.
해주면... 머가 변화를 주고 엔터를 쳐야만...
변경 메소드를 타고 만약... 엔터안쳐도 ..변화만 생기면...알아서 타게 하려면
i_event_id = cl_gui_alv_grid=>mc_evt_modified
이걸 대신 넣어주면 된다.
그 예제의 문제점이
*§3.Optionally register ENTER to raise event DATA_CHANGED.
* (Per default the user may check data by using the check icon).
call method g_grid->register_edit_event
exporting
i_event_id = cl_gui_alv_grid=>mc_evt_enter.
bcalv_edit_03 에 보면 저부분이 잇거든 만약 위처럼
i_event_id = cl_gui_alv_grid=>mc_evt_enter.
해주면... 머가 변화를 주고 엔터를 쳐야만...
변경 메소드를 타고 만약... 엔터안쳐도 ..변화만 생기면...알아서 타게 하려면
i_event_id = cl_gui_alv_grid=>mc_evt_modified
이걸 대신 넣어주면 된다.
'Job > ABAP' 카테고리의 다른 글
| SAP 웹저장소(SMW0)를 이용한 문서연결 (4) | 2009/03/16 |
|---|---|
| BDC Coding Block (5) | 2008/06/20 |
| ALV Grid 셀변경시 자동반영 되도록 (0) | 2008/06/20 |
| 수작업 실행시 이상무, Batch Job실행시 문제가 있을때 (0) | 2008/06/20 |
| Smartform 출력옵션 (0) | 2008/06/20 |
| Screen Painter가 안뜰때.. (0) | 2008/06/20 |

