Skip to content

Commit 8fa0903

Browse files
committed
Fix final remaining single quotes in ABAP code snippets
- xlsx.md: Replace set_title parameter 'Internal table' - events.md: Replace example code snippet in prose - authorization.md: Replace get_header_field, IF comparison, AUTHORITY-CHECK parameters
1 parent 8b20f4c commit 8fa0903

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

docs/configuration/authorization.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -27,10 +27,10 @@ CLASS z2ui5_cl_launchpad_handler IMPLEMENTATION.
2727
2828
METHOD if_http_extension~handle_request.
2929
" Read the app name from the request
30-
DATA(lv_app) = server->request->get_header_field( 'APP_START' ).
31-
30+
DATA(lv_app) = server->request->get_header_field( `APP_START` ).
31+
3232
" Restrict access to a specific app
33-
IF lv_app <> 'MY_APP'.
33+
IF lv_app <> `MY_APP`.
3434
RETURN.
3535
ENDIF.
3636
@@ -54,11 +54,11 @@ CLASS z2ui5_cl_launchpad_handler IMPLEMENTATION.
5454
5555
METHOD if_http_extension~handle_request.
5656
" Read the app name from the request
57-
DATA(lv_app) = server->request->get_header_field( 'APP_START' ).
58-
57+
DATA(lv_app) = server->request->get_header_field( `APP_START` ).
58+
5959
" Perform an authorization check
60-
AUTHORITY-CHECK OBJECT 'Z_APP_AUTH'
61-
ID 'APP' FIELD lv_app.
60+
AUTHORITY-CHECK OBJECT `Z_APP_AUTH`
61+
ID `APP` FIELD lv_app.
6262
6363
IF sy-subrc <> 0.
6464
" Authorization failed, deny access

docs/development/events.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ UI5 Control properties can be used not only to display data but also to trigger
99
You can trigger backend processing when an event occurs using the `client->_event` method.
1010

1111
#### Basic
12-
As an example, we will use the `press` property of a button. To trigger events in the backend, assign the result of `client->_event('MY_EVENT_NAME')` to the relevant UI5 control property. Once triggered, the backend can retrieve the event details with `client->get( )-event`.
12+
As an example, we will use the `press` property of a button. To trigger events in the backend, assign the result of `client->_event(`MY_EVENT_NAME`)` to the relevant UI5 control property. Once triggered, the backend can retrieve the event details with `client->get( )-event`.
1313

1414
```abap
1515
METHOD z2ui5_if_app~main.

docs/development/specific/xlsx.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -244,7 +244,7 @@ CLASS lcl_help IMPLEMENTATION.
244244
245245
" Get active sheet
246246
lo_worksheet = lo_excel->get_active_worksheet( ).
247-
lo_worksheet->set_title( 'Internal table' ).
247+
lo_worksheet->set_title( `Internal table` ).
248248
249249
lt_field_catalog = zcl_excel_common=>get_fieldcatalog( ip_table = val ).
250250
ls_table_settings-table_style = zcl_excel_table=>builtinstyle_medium5.

0 commit comments

Comments
 (0)