File tree Expand file tree Collapse file tree 3 files changed +10
-10
lines changed Expand file tree Collapse file tree 3 files changed +10
-10
lines changed Original file line number Diff line number Diff line change @@ -143,7 +143,7 @@ CLASS z2ui52409_cl_abap_api_http IMPLEMENTATION.
143
143
144
144
ELSE .
145
145
146
- CALL METHOD mo_request_cloud->('GET_HEADER_FIELD' )
146
+ CALL METHOD mo_request_cloud->('IF_WEB_HTTP_REQUEST~ GET_HEADER_FIELD' )
147
147
EXPORTING
148
148
i_name = lv_val
149
149
RECEIVING
@@ -172,7 +172,7 @@ CLASS z2ui52409_cl_abap_api_http IMPLEMENTATION.
172
172
173
173
ELSE .
174
174
175
- CALL METHOD mo_request_cloud ->('SET_HEADER_FIELD' )
175
+ CALL METHOD mo_response_cloud ->('IF_WEB_HTTP_RESPONSE~ SET_HEADER_FIELD' )
176
176
EXPORTING
177
177
i_name = lv_n
178
178
i_value = lv_v.
@@ -212,7 +212,7 @@ CLASS z2ui52409_cl_abap_api_http IMPLEMENTATION.
212
212
213
213
ELSE .
214
214
215
- CALL METHOD mo_request_cloud->('GET_TEXT' )
215
+ CALL METHOD mo_request_cloud->('IF_WEB_HTTP_REQUEST~ GET_TEXT' )
216
216
RECEIVING
217
217
r_value = result .
218
218
@@ -236,7 +236,7 @@ CLASS z2ui52409_cl_abap_api_http IMPLEMENTATION.
236
236
237
237
ELSE .
238
238
239
- CALL METHOD mo_request_cloud->('GET_METHOD' )
239
+ CALL METHOD mo_request_cloud->('IF_WEB_HTTP_REQUEST~ GET_METHOD' )
240
240
RECEIVING
241
241
r_value = result .
242
242
@@ -260,9 +260,9 @@ CLASS z2ui52409_cl_abap_api_http IMPLEMENTATION.
260
260
261
261
ELSE .
262
262
263
- CALL METHOD mo_request_cloud ->('SET_TEXT' )
263
+ CALL METHOD mo_response_cloud ->('IF_WEB_HTTP_RESPONSE~ SET_TEXT' )
264
264
EXPORTING
265
- r_value = val.
265
+ i_text = val.
266
266
267
267
ENDIF .
268
268
@@ -286,7 +286,7 @@ CLASS z2ui52409_cl_abap_api_http IMPLEMENTATION.
286
286
287
287
ELSE .
288
288
289
- CALL METHOD mo_response_cloud->('SET_STATUS' )
289
+ CALL METHOD mo_response_cloud->('IF_WEB_HTTP_RESPONSE~ SET_STATUS' )
290
290
EXPORTING
291
291
i_code = code
292
292
i_reason = lv_reason.
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ CLASS z2ui52409_cx_abap_api DEFINITION
9
9
DATA :
10
10
BEGIN OF ms_error,
11
11
x_root TYPE REF TO cx_root,
12
- uuid TYPE string ,
12
+ * uuid TYPE string,
13
13
text TYPE string ,
14
14
END OF ms_error .
15
15
@@ -41,7 +41,7 @@ CLASS z2ui52409_cx_abap_api IMPLEMENTATION.
41
41
CATCH cx_root.
42
42
ms_error-text = val.
43
43
ENDTRY .
44
- ms_error-uuid = z2ui52409_cl_util =>uuid_get_c32( ).
44
+ * ms_error-uuid = z2ui5_cl_util =>uuid_get_c32( ).
45
45
46
46
ENDMETHOD .
47
47
Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ CLASS z2ui52409_cl_app_debugtool_js IMPLEMENTATION.
23
23
`` && | \n| &&
24
24
` return Control.extend("z2ui5.cc.DebugTool", {` && | \n| &&
25
25
`` && | \n| &&
26
- ` //printerXML ` && | \n| &&
26
+ ` //printer XML ` && | \n| &&
27
27
` prettifyXml: function (sourceXml) {` && | \n| &&
28
28
` const xmlDoc = new DOMParser().parseFromString(sourceXml, 'application/xml');` && | \n| &&
29
29
` var sParse = ``<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform">` && | \n| &&
You can’t perform that action at this time.
0 commit comments