Skip to content

Commit 1e81692

Browse files
Update deprecated-key-word.md
1 parent d5011ac commit 1e81692

File tree

1 file changed

+11
-1
lines changed

1 file changed

+11
-1
lines changed

docs/checks/deprecated-key-word.md

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,17 @@ This check points out old syntax which should be replaced with newer notations i
88

99
### How does the check work?
1010

11-
This check searches for deprecated key words like: `MOVE` and `TRANSLATE` and suggests its replacement.
11+
This check searches for deprecated key words like: `MOVE` and `TRANSLATE` and suggests its replacement to news notations/functions.
12+
13+
```ABAP
14+
" MOVE 'A' TO variable.
15+
DATA(variable) = 'A'.
16+
17+
" TRANSLATE lowercase TO UPPER CASE.
18+
DATA(uppercase) = to_upper( lowercase ).
19+
20+
```
21+
1222
REMARK: The check will be continuously enhanced with other deprecated ABAP Keywords.
1323

1424
### How to solve the issue?

0 commit comments

Comments
 (0)