-
Notifications
You must be signed in to change notification settings - Fork 0
/
normal screen guı status.abap
36 lines (34 loc) · 1.27 KB
/
normal screen guı status.abap
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
32
33
34
35
36
*&---------------------------------------------------------------------*
*& Report ZGK_GUI_STATUS
*&---------------------------------------------------------------------*
*&
*&---------------------------------------------------------------------*
REPORT ZGK_GUI_STATUS.
START-OF-SELECTION.
call SCREEN 0100.
*&---------------------------------------------------------------------*
*& Module STATUS_0100 OUTPUT
*&---------------------------------------------------------------------*
* text
*----------------------------------------------------------------------*
module status_0100 output.
* SET PF-STATUS 'xxxxxxxx'.
* SET TITLEBAR 'xxx'.
endmodule.
*&---------------------------------------------------------------------*
*& Module USER_COMMAND_0100 INPUT
*&---------------------------------------------------------------------*
* text
*----------------------------------------------------------------------*
module user_command_0100 input.
DATA: lv_text type char200.
CONCATENATE sy-ucomm// ikiden fazla string ifadesini tutan yapı.
'butonuna basılmıştır.'
INTO lv_text
SEPARATED BY space.//boşuk olmasını sağlar.
message lv_text type 'I'.
CASE sy-ucomm.
WHEN '&BCK'.
LEAVE TO SCREEN 0.
ENDCASE.
endmodule.