We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2fb890f commit 6447e9fCopy full SHA for 6447e9f
src/01/z2ui5_cl_launchpad_handler.clas.abap
@@ -18,8 +18,8 @@ CLASS Z2UI5_CL_LAUNCHPAD_HANDLER IMPLEMENTATION.
18
METHOD IF_HTTP_EXTENSION~HANDLE_REQUEST.
19
20
DATA(lv_resp) = SWITCH #( server->request->get_method( )
21
- WHEN 'GET' THEN z2ui5_cl_fw_http_handler=>http_get( )
22
- WHEN 'POST' THEN z2ui5_cl_fw_http_handler=>http_post( server->request->get_cdata( ) ) ).
+ WHEN 'GET' THEN z2ui5_cl_http_handler=>http_get( )
+ WHEN 'POST' THEN z2ui5_cl_http_handler=>http_post( server->request->get_cdata( ) ) ).
23
24
server->response->set_header_field( name = `cache-control` value = `no-cache` ).
25
server->response->set_cdata( lv_resp ).
0 commit comments