Skip to content

Commit 52cd16c

Browse files
committed
Fix final remaining single quotes in ABAP code
- dx.md: Replace CALL FUNCTION, titlebar, text_question, WHEN, TYPE with backticks - messages.md: Replace MESSAGE ID/TYPE/NUMBER and CALL FUNCTION with backticks - Ensures complete consistency with Clean ABAP style guide
1 parent 6ebf4e4 commit 52cd16c

File tree

2 files changed

+9
-9
lines changed

2 files changed

+9
-9
lines changed

docs/development/messages.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ You can directly pass common message structures, objects, and variables to the f
4848
```abap
4949
METHOD z2ui5_if_app~main.
5050
51-
MESSAGE ID 'NET' TYPE 'I' NUMBER '001' into data(lv_dummy).
51+
MESSAGE ID `NET` TYPE `I` NUMBER `001` into data(lv_dummy).
5252
client->message_box_display( sy ).
5353
5454
ENDMETHOD.
@@ -58,7 +58,7 @@ ENDMETHOD.
5858
METHOD z2ui5_if_app~main.
5959
6060
DATA lt_bapiret TYPE STANDARD TABLE OF bapiret2.
61-
CALL FUNCTION 'BAPI_USER_GET_DETAIL'
61+
CALL FUNCTION `BAPI_USER_GET_DETAIL`
6262
EXPORTING
6363
username = sy-uname
6464
TABLES

docs/technical/dx.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -153,18 +153,18 @@ Anyone who has browsed SE37 for POPUP_TO_* knows the charm of classic ABAP popup
153153
REPORT zre_app_alv.
154154
155155
DATA event TYPE string.
156-
CALL FUNCTION 'POPUP_TO_CONFIRM'
156+
CALL FUNCTION `POPUP_TO_CONFIRM`
157157
EXPORTING
158-
titlebar = 'Title'
159-
text_question = 'Do you like dinosaurs?'
158+
titlebar = `Title`
159+
text_question = `Do you like dinosaurs?`
160160
IMPORTING
161161
answer = event.
162162
163163
CASE event.
164-
WHEN '1'.
165-
MESSAGE `the result is YES` TYPE 'I'.
166-
WHEN '2'.
167-
MESSAGE `the result is NO` TYPE 'I'.
164+
WHEN `1`.
165+
MESSAGE `the result is YES` TYPE `I`.
166+
WHEN `2`.
167+
MESSAGE `the result is NO` TYPE `I`.
168168
ENDCASE.
169169
```
170170
Benefits:

0 commit comments

Comments
 (0)