-
Notifications
You must be signed in to change notification settings - Fork 50
/
Copy pathzcx_bc_user_input.abap
325 lines (314 loc) · 10.9 KB
/
zcx_bc_user_input.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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
class ZCX_BC_USER_INPUT definition
public
inheriting from CX_STATIC_CHECK
final
create public .
public section.
interfaces IF_T100_MESSAGE .
constants:
BEGIN OF user_cancelled,
msgid TYPE symsgid VALUE 'ZBC',
msgno TYPE symsgno VALUE '120',
attr1 TYPE scx_attrname VALUE '',
attr2 TYPE scx_attrname VALUE '',
attr3 TYPE scx_attrname VALUE '',
attr4 TYPE scx_attrname VALUE '',
END OF user_cancelled .
constants:
BEGIN OF no_item_selected,
msgid TYPE symsgid VALUE 'ZBC',
msgno TYPE symsgno VALUE '163',
attr1 TYPE scx_attrname VALUE '',
attr2 TYPE scx_attrname VALUE '',
attr3 TYPE scx_attrname VALUE '',
attr4 TYPE scx_attrname VALUE '',
END OF no_item_selected .
constants:
BEGIN OF not_saved_yet,
msgid TYPE symsgid VALUE 'ZBC',
msgno TYPE symsgno VALUE '203',
attr1 TYPE scx_attrname VALUE '',
attr2 TYPE scx_attrname VALUE '',
attr3 TYPE scx_attrname VALUE '',
attr4 TYPE scx_attrname VALUE '',
END OF not_saved_yet .
constants:
BEGIN OF not_saved_and_selected,
msgid TYPE symsgid VALUE 'ZBC',
msgno TYPE symsgno VALUE '207',
attr1 TYPE scx_attrname VALUE '',
attr2 TYPE scx_attrname VALUE '',
attr3 TYPE scx_attrname VALUE '',
attr4 TYPE scx_attrname VALUE '',
END OF not_saved_and_selected .
constants:
BEGIN OF invalid_input,
msgid TYPE symsgid VALUE 'ZBC',
msgno TYPE symsgno VALUE '244',
attr1 TYPE scx_attrname VALUE '',
attr2 TYPE scx_attrname VALUE '',
attr3 TYPE scx_attrname VALUE '',
attr4 TYPE scx_attrname VALUE '',
END OF invalid_input .
constants:
BEGIN OF duplicate_values,
msgid TYPE symsgid VALUE 'ZBC',
msgno TYPE symsgno VALUE '433',
attr1 TYPE scx_attrname VALUE '',
attr2 TYPE scx_attrname VALUE '',
attr3 TYPE scx_attrname VALUE '',
attr4 TYPE scx_attrname VALUE '',
END OF duplicate_values .
constants:
BEGIN OF duplicate_key,
msgid TYPE symsgid VALUE 'ZBC',
msgno TYPE symsgno VALUE '487',
attr1 TYPE scx_attrname VALUE 'OBJID',
attr2 TYPE scx_attrname VALUE '',
attr3 TYPE scx_attrname VALUE '',
attr4 TYPE scx_attrname VALUE '',
END OF duplicate_key .
constants:
BEGIN OF no_value_copied,
msgid TYPE symsgid VALUE 'ZBC',
msgno TYPE symsgno VALUE '505',
attr1 TYPE scx_attrname VALUE '',
attr2 TYPE scx_attrname VALUE '',
attr3 TYPE scx_attrname VALUE '',
attr4 TYPE scx_attrname VALUE '',
END OF no_value_copied .
constants:
BEGIN OF value_cant_be_less,
msgid TYPE symsgid VALUE 'ZBC',
msgno TYPE symsgno VALUE '506',
attr1 TYPE scx_attrname VALUE 'OBJID',
attr2 TYPE scx_attrname VALUE 'OBJID2',
attr3 TYPE scx_attrname VALUE '',
attr4 TYPE scx_attrname VALUE '',
END OF value_cant_be_less .
constants:
BEGIN OF invalid_upload_data,
msgid TYPE symsgid VALUE 'ZBC',
msgno TYPE symsgno VALUE '512',
attr1 TYPE scx_attrname VALUE '',
attr2 TYPE scx_attrname VALUE '',
attr3 TYPE scx_attrname VALUE '',
attr4 TYPE scx_attrname VALUE '',
END OF invalid_upload_data .
constants:
BEGIN OF duplicate_field_values,
msgid TYPE symsgid VALUE 'ZBC',
msgno TYPE symsgno VALUE '513',
attr1 TYPE scx_attrname VALUE 'FIELDNAME',
attr2 TYPE scx_attrname VALUE '',
attr3 TYPE scx_attrname VALUE '',
attr4 TYPE scx_attrname VALUE '',
END OF duplicate_field_values .
constants:
BEGIN OF initial_field_values,
msgid TYPE symsgid VALUE 'ZBC',
msgno TYPE symsgno VALUE '514',
attr1 TYPE scx_attrname VALUE 'FIELDNAME',
attr2 TYPE scx_attrname VALUE '',
attr3 TYPE scx_attrname VALUE '',
attr4 TYPE scx_attrname VALUE '',
END OF initial_field_values .
constants:
BEGIN OF multiple_initial_field_values,
msgid TYPE symsgid VALUE 'ZBC',
msgno TYPE symsgno VALUE '515',
attr1 TYPE scx_attrname VALUE 'FIELDNAME',
attr2 TYPE scx_attrname VALUE '',
attr3 TYPE scx_attrname VALUE '',
attr4 TYPE scx_attrname VALUE '',
END OF multiple_initial_field_values .
constants:
BEGIN OF no_initial_field_value,
msgid TYPE symsgid VALUE 'ZBC',
msgno TYPE symsgno VALUE '516',
attr1 TYPE scx_attrname VALUE 'FIELDNAME',
attr2 TYPE scx_attrname VALUE '',
attr3 TYPE scx_attrname VALUE '',
attr4 TYPE scx_attrname VALUE '',
END OF no_initial_field_value .
constants:
BEGIN OF key_entry_not_found,
msgid TYPE symsgid VALUE 'ZBC',
msgno TYPE symsgno VALUE '517',
attr1 TYPE scx_attrname VALUE 'OBJID',
attr2 TYPE scx_attrname VALUE '',
attr3 TYPE scx_attrname VALUE '',
attr4 TYPE scx_attrname VALUE '',
END OF key_entry_not_found .
constants:
BEGIN OF field_is_initial,
msgid TYPE symsgid VALUE 'ZBC',
msgno TYPE symsgno VALUE '519',
attr1 TYPE scx_attrname VALUE 'FIELDNAME',
attr2 TYPE scx_attrname VALUE '',
attr3 TYPE scx_attrname VALUE '',
attr4 TYPE scx_attrname VALUE '',
END OF field_is_initial .
constants:
BEGIN OF field_group_is_initial,
msgid TYPE symsgid VALUE 'ZBC',
msgno TYPE symsgno VALUE '520',
attr1 TYPE scx_attrname VALUE 'OBJID',
attr2 TYPE scx_attrname VALUE '',
attr3 TYPE scx_attrname VALUE '',
attr4 TYPE scx_attrname VALUE '',
END OF field_group_is_initial .
constants:
BEGIN OF field_must_be_less_than,
msgid TYPE symsgid VALUE 'ZBC',
msgno TYPE symsgno VALUE '521',
attr1 TYPE scx_attrname VALUE 'FIELDNAME',
attr2 TYPE scx_attrname VALUE 'FIELDNAME2',
attr3 TYPE scx_attrname VALUE '',
attr4 TYPE scx_attrname VALUE '',
END OF field_must_be_less_than .
constants:
BEGIN OF field_value_invalid,
msgid TYPE symsgid VALUE 'ZBC',
msgno TYPE symsgno VALUE '522',
attr1 TYPE scx_attrname VALUE 'FIELDNAME',
attr2 TYPE scx_attrname VALUE '',
attr3 TYPE scx_attrname VALUE '',
attr4 TYPE scx_attrname VALUE '',
END OF field_value_invalid .
constants:
BEGIN OF both_fields_empty,
msgid TYPE symsgid VALUE 'ZBC',
msgno TYPE symsgno VALUE '523',
attr1 TYPE scx_attrname VALUE 'OBJID',
attr2 TYPE scx_attrname VALUE 'FIELDNAME',
attr3 TYPE scx_attrname VALUE 'FIELDNAME2',
attr4 TYPE scx_attrname VALUE '',
END OF both_fields_empty .
constants:
BEGIN OF entry_fields_initial,
msgid TYPE symsgid VALUE 'ZBC',
msgno TYPE symsgno VALUE '524',
attr1 TYPE scx_attrname VALUE 'OBJID',
attr2 TYPE scx_attrname VALUE 'OBJID2',
attr3 TYPE scx_attrname VALUE '',
attr4 TYPE scx_attrname VALUE '',
END OF entry_fields_initial .
constants:
BEGIN OF canned_data_in_bg,
msgid TYPE symsgid VALUE 'ZMM',
msgno TYPE symsgno VALUE '410',
attr1 TYPE scx_attrname VALUE '',
attr2 TYPE scx_attrname VALUE '',
attr3 TYPE scx_attrname VALUE '',
attr4 TYPE scx_attrname VALUE '',
END OF canned_data_in_bg .
constants:
BEGIN OF invalid_selection_screen,
msgid TYPE symsgid VALUE 'ZBC',
msgno TYPE symsgno VALUE '543',
attr1 TYPE scx_attrname VALUE '',
attr2 TYPE scx_attrname VALUE '',
attr3 TYPE scx_attrname VALUE '',
attr4 TYPE scx_attrname VALUE '',
END OF invalid_selection_screen .
constants:
BEGIN OF selection_screen_error,
msgid TYPE symsgid VALUE 'ZBC',
msgno TYPE symsgno VALUE '544',
attr1 TYPE scx_attrname VALUE 'ERROR_DESCRIPTION',
attr2 TYPE scx_attrname VALUE '',
attr3 TYPE scx_attrname VALUE '',
attr4 TYPE scx_attrname VALUE '',
END OF selection_screen_error .
constants:
BEGIN OF field_cant_be_greater_than,
msgid TYPE symsgid VALUE 'ZBC',
msgno TYPE symsgno VALUE '583',
attr1 TYPE scx_attrname VALUE 'FIELDNAME',
attr2 TYPE scx_attrname VALUE 'OBJID',
attr3 TYPE scx_attrname VALUE '',
attr4 TYPE scx_attrname VALUE '',
END OF field_cant_be_greater_than .
constants:
begin of NO_VALUE_CHANGED,
msgid type symsgid value 'ZBC',
msgno type symsgno value '633',
attr1 type scx_attrname value '',
attr2 type scx_attrname value '',
attr3 type scx_attrname value '',
attr4 type scx_attrname value '',
end of NO_VALUE_CHANGED .
constants:
begin of MUST_RUN_IN_BG,
msgid type symsgid value 'ZBC',
msgno type symsgno value '640',
attr1 type scx_attrname value '',
attr2 type scx_attrname value '',
attr3 type scx_attrname value '',
attr4 type scx_attrname value '',
end of MUST_RUN_IN_BG .
constants:
begin of CHAR_OBLIGATORY,
msgid type symsgid value 'ZBC',
msgno type symsgno value '642',
attr1 type scx_attrname value 'FIELDNAME',
attr2 type scx_attrname value '',
attr3 type scx_attrname value '',
attr4 type scx_attrname value '',
end of CHAR_OBLIGATORY .
constants:
begin of UPLOAD_EMPTY,
msgid type symsgid value 'ZBC',
msgno type symsgno value '659',
attr1 type scx_attrname value '',
attr2 type scx_attrname value '',
attr3 type scx_attrname value '',
attr4 type scx_attrname value '',
end of UPLOAD_EMPTY .
data OBJID type STRING .
data OBJID2 type STRING .
data FIELDNAME type FIELDNAME .
data FIELDNAME2 type FIELDNAME .
data ERROR_DESCRIPTION type STRING .
class-methods RAISE_FROM_ADDICT
importing
!ERROR type ref to YCX_ADDICT_USER_INPUT
raising
ZCX_BC_USER_INPUT .
methods CONSTRUCTOR
importing
!TEXTID like IF_T100_MESSAGE=>T100KEY optional
!PREVIOUS like PREVIOUS optional
!OBJID type STRING optional
!OBJID2 type STRING optional
!FIELDNAME type FIELDNAME optional
!FIELDNAME2 type FIELDNAME optional
!ERROR_DESCRIPTION type STRING optional .
PROTECTED SECTION.
PRIVATE SECTION.
ENDCLASS.
CLASS ZCX_BC_USER_INPUT IMPLEMENTATION.
METHOD constructor ##ADT_SUPPRESS_GENERATION.
CALL METHOD super->constructor
EXPORTING
previous = previous.
me->objid = objid .
me->objid2 = objid2 .
me->fieldname = fieldname .
me->fieldname2 = fieldname2 .
me->error_description = error_description .
CLEAR me->textid.
IF textid IS INITIAL.
if_t100_message~t100key = if_t100_message=>default_textid.
ELSE.
if_t100_message~t100key = textid.
ENDIF.
ENDMETHOD.
METHOD raise_from_addict.
RAISE EXCEPTION TYPE zcx_bc_user_input
EXPORTING
textid = error->if_t100_message~t100key
previous = error.
ENDMETHOD.
ENDCLASS.