일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
- 동적 쿼리
- 엑소버드
- selection screen
- UTF-8
- Smart Forms
- ABAP
- sapa
- 머니플랜
- fi
- EXIT
- 가계부
- alv 정형화
- KOSA
- gimp
- FI 용어정리
- 오라클 함수
- ole
- Enhancement
- function
- SAP
- List box
- 방화벽
- ALV
- 유닉스
- 이명박
- badi
- EUC-kr
- 스마트폼
- Standard Function
- Java
- Today
- Total
Drunken Lion
Selection Screen 에 Ucomm 추가 본문
Activation of two pushbuttons with icons and quick info in the application toolbar (pushbutton toolbar) of the standard selection screen of an executable program. Selecting one of these buttons preassigns different values to the input fields.
REPORT
demo_sel_screen_function_key.
TYPE-POOLS icon.
TABLES sscrfields.
DATA functxt TYPE smp_dyntxt.
PARAMETERS: p_carrid TYPE s_carr_id,
p_cityfr TYPE s_from_cit.
SELECTION-SCREEN: FUNCTION KEY 1,
FUNCTION KEY 2.
INITIALIZATION.
functxt-icon_id = icon_ws_plane.
functxt-quickinfo = 'Preselected
Carrier'.
functxt-icon_text = 'LH'.
sscrfields-functxt_01 = functxt.
functxt-icon_text = 'UA'.
sscrfields-functxt_02 = functxt.
AT SELECTION-SCREEN.
CASE sscrfields-ucomm.
WHEN 'FC01'.
p_carrid = 'LH'.
p_cityfr = 'Frankfurt'.
WHEN
'FC02'.
p_carrid = 'UA'.
p_cityfr = 'Chicago'.
WHEN
OTHERS.
...
ENDCASE.
'SAP > ABAP' 카테고리의 다른 글
파일 upload - upload 파일 종류 file filter (0) | 2009.09.18 |
---|---|
LSMW Manual (0) | 2009.09.15 |
팝업 디버깅 하기 (0) | 2009.07.17 |
[ABAP] Parameters of the XXL_FULL_API Function Module (0) | 2009.06.19 |
ABAP File Controlling (0) | 2009.06.18 |