Skip to content

Commit 79e4882

Browse files
committed
fixes ddic
1 parent 979707a commit 79e4882

File tree

2 files changed

+6
-5
lines changed

2 files changed

+6
-5
lines changed

src/01/z2ui5_cl_layo_sample_03.clas.abap

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,8 @@ CLASS z2ui5_cl_layo_sample_03 DEFINITION
1010

1111
TYPES:
1212
BEGIN OF ty_s_tab.
13-
INCLUDE TYPE usr01.
13+
* INCLUDE TYPE usr01.
14+
INCLUDE TYPE z2ui5_cl_util=>ty_usr01.
1415
TYPES:
1516
selkz TYPE abap_bool,
1617

src/01/z2ui5_cl_layo_sample_04.clas.abap

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ CLASS z2ui5_cl_layo_sample_04 DEFINITION
55
PUBLIC SECTION.
66
INTERFACES z2ui5_if_app.
77

8-
DATA ms_data type usr01.
8+
DATA ms_data TYPE z2ui5_cl_util=>ty_usr01.
99
DATA mo_layout TYPE REF TO z2ui5_cl_layo_manager.
1010

1111

@@ -64,7 +64,7 @@ CLASS z2ui5_cl_layo_sample_04 IMPLEMENTATION.
6464
* vertical = abap_true ).
6565

6666
z2ui5_cl_layo_xml_builder=>xml_build_simple_form(
67-
i_data = ref #( ms_data )
67+
i_data = REF #( ms_data )
6868
i_xml = page
6969
i_client = client
7070
i_layout = mo_layout
@@ -92,7 +92,7 @@ CLASS z2ui5_cl_layo_sample_04 IMPLEMENTATION.
9292

9393
METHOD get_data.
9494

95-
data(lv_tab) = `USR01`.
95+
DATA(lv_tab) = `USR01`.
9696
SELECT SINGLE * FROM (lv_tab) INTO ms_data.
9797

9898
ENDMETHOD.
@@ -105,7 +105,7 @@ CLASS z2ui5_cl_layo_sample_04 IMPLEMENTATION.
105105

106106
DATA(class) = z2ui5_cl_util=>rtti_get_classname_by_ref( me ).
107107
mo_layout = z2ui5_cl_layo_manager=>factory( control = z2ui5_cl_layo_manager=>ui_simpleform
108-
data = ref #( ms_data )
108+
data = REF #( ms_data )
109109
handle01 = class
110110
handle02 = 'USR01'
111111
handle03 = ''

0 commit comments

Comments
 (0)