We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8de04f5 commit 3de2610Copy full SHA for 3de2610
src/01/z2ui5_cl_cc_sample_message_m.clas.abap
@@ -6,7 +6,20 @@ CLASS z2ui5_cl_cc_sample_message_m DEFINITION
6
7
INTERFACES z2ui5_if_app .
8
9
- DATA mt_messaging TYPE z2ui5_cl_cc_messaging=>ty_t_items.
+ TYPES:
10
+ BEGIN OF ty_s_item,
11
+ message TYPE string,
12
+ description TYPE string,
13
+ type TYPE string,
14
+ target TYPE string,
15
+ additionaltext TYPE string,
16
+ date TYPE string,
17
+ descriptionurl TYPE string,
18
+ persistent TYPE string,
19
+ END OF ty_s_item .
20
+ TYPES ty_t_items TYPE STANDARD TABLE OF ty_s_item WITH EMPTY KEY ##NEEDED.
21
+
22
+ DATA mt_messaging TYPE ty_t_items.
23
24
"string - constraints
25
DATA: mv_maxlength_string TYPE string,
0 commit comments